mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-03 20:46:01 +01:00
084a45296e
GamesList menu was in a bad state after a game closed because hadn't been rebuilt. It's simplest to invalidate it surgically, when the BoardDelegate notifies that the board's closed, though doing in in onWindowFocusChanged() might catch more edge cases. We'll see. I want a low-risk impact right now.
67 lines
2.2 KiB
HTML
67 lines
2.2 KiB
HTML
<html>
|
|
<head>
|
|
<script>
|
|
showSurvey = function() {
|
|
var div = document.getElementById('survey');
|
|
div.style.display = 'inline';
|
|
};
|
|
</script>
|
|
<style type="text/css">
|
|
body {font-size: smaller;}
|
|
#survey { display: none; }
|
|
h2,h3 { text-align: center; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>Crosswords 4.4.115 release</h2>
|
|
|
|
<p>This release uses the new permissions process introduced with
|
|
Android "Marshmallow": Crosswords only asks for permissions at
|
|
the moment they're required.</p>
|
|
|
|
<div id="survey">
|
|
<p>Please <a href="https://www.surveymonkey.com/s/GX3XLHR">take
|
|
this survey</a> to help determine what gets done next in
|
|
Crosswords.</p>
|
|
</div>
|
|
|
|
<h3>New with this release</h3>
|
|
<ul>
|
|
<li>Request permissions when they're needed, e.g. ask to send
|
|
SMS messages when a game is being configured to communicate
|
|
using SMS</li>
|
|
<li>Change order of games to put oldest in which it's your turn
|
|
at the top</li>
|
|
<li>New two-color icon for notifications (required by the newer
|
|
Android that supports just-in-time permissions)</li>
|
|
<li>Use less battery by being smarter about how often to check
|
|
the relay for moves (This will mostly impact those
|
|
installing from F-Droid.)</li>
|
|
<li>Stop mis-identifying tablets as data-SMS-capable (only GSM
|
|
phones are)</li>
|
|
<li>Shorten default rematch game name</li>
|
|
<li>Allow board "squares" to be wider than tall if it
|
|
fills the screen better</li>
|
|
<li>Improvements in localization for French, Catalan, Dutch,
|
|
Czech and Japanese (via Weblate)</li>
|
|
</ul>
|
|
|
|
<p>(The full changelog
|
|
is <a href="http://xwords.sf.net/and_changes.php">here</a>.)</p>
|
|
|
|
<h3>Next up</h3>
|
|
<ul>
|
|
<li>Continue work to support WiFi Direct (currently working
|
|
sporadically)</li>
|
|
</ul>
|
|
|
|
<p>Please let me know
|
|
(email <a href="mailto:xwords@eehouse.org">xwords@eehouse.org</a>)
|
|
what's broken and what features you'd most like to
|
|
see. And if you do get a crash, please let your device report it
|
|
to Google so I can see it!</p>
|
|
|
|
<p>Thanks!<br>--Eric</p>
|
|
|
|
</body>
|
|
</html>
|