mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
remove mistaken toast, and up version strings for release
This commit is contained in:
parent
a51b01491d
commit
e676446395
4 changed files with 6 additions and 4 deletions
|
@ -22,7 +22,7 @@
|
|||
to come from a domain that you own or have control over. -->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.eehouse.android.xw4"
|
||||
android:versionCode="94"
|
||||
android:versionCode="95"
|
||||
android:versionName="@string/app_version"
|
||||
>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Crosswords 4.4 beta 100 release</h2>
|
||||
<h2>Crosswords 4.4 beta 101 release</h2>
|
||||
|
||||
<p>This is the first of two releases that together fix stalling
|
||||
issues in network games.</p>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<resources>
|
||||
<string name="app_version">4.4 beta 100</string>
|
||||
<string name="app_version">4.4 beta 101</string>
|
||||
</resources>
|
||||
|
|
|
@ -76,7 +76,9 @@ public class NetStateCache {
|
|||
if ( netAvail ) {
|
||||
String msg = "netAvail(): second-guessing successful!!!";
|
||||
DbgUtils.logf( msg );
|
||||
if ( BuildConfig.DEBUG ) {
|
||||
Utils.showToast( context, msg );
|
||||
}
|
||||
s_netAvail = true;
|
||||
if ( null != s_receiver ) {
|
||||
s_receiver.notifyStateChanged( context );
|
||||
|
|
Loading…
Reference in a new issue