remove mistaken toast, and up version strings for release

This commit is contained in:
Eric House 2016-01-03 22:01:12 -08:00
parent a51b01491d
commit e676446395
4 changed files with 6 additions and 4 deletions

View file

@ -22,7 +22,7 @@
to come from a domain that you own or have control over. --> to come from a domain that you own or have control over. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.eehouse.android.xw4" package="org.eehouse.android.xw4"
android:versionCode="94" android:versionCode="95"
android:versionName="@string/app_version" android:versionName="@string/app_version"
> >

View file

@ -13,7 +13,7 @@
</style> </style>
</head> </head>
<body> <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 <p>This is the first of two releases that together fix stalling
issues in network games.</p> issues in network games.</p>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="app_version">4.4 beta 100</string> <string name="app_version">4.4 beta 101</string>
</resources> </resources>

View file

@ -76,7 +76,9 @@ public class NetStateCache {
if ( netAvail ) { if ( netAvail ) {
String msg = "netAvail(): second-guessing successful!!!"; String msg = "netAvail(): second-guessing successful!!!";
DbgUtils.logf( msg ); DbgUtils.logf( msg );
if ( BuildConfig.DEBUG ) {
Utils.showToast( context, msg ); Utils.showToast( context, msg );
}
s_netAvail = true; s_netAvail = true;
if ( null != s_receiver ) { if ( null != s_receiver ) {
s_receiver.notifyStateChanged( context ); s_receiver.notifyStateChanged( context );