mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
ready for interim release
up version strings and make a toast DEBUG-only
This commit is contained in:
parent
d7acdc4a93
commit
cd0de1daa7
4 changed files with 9 additions and 6 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="104"
|
||||
android:versionCode="105"
|
||||
android:versionName="@string/app_version"
|
||||
>
|
||||
|
||||
|
|
|
@ -13,10 +13,11 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Crosswords 4.4.109 release</h2>
|
||||
<h2>Crosswords 4.4.110 release</h2>
|
||||
|
||||
<p>This release adds experimental support for side-by-side views on
|
||||
tablets.</p>
|
||||
<p>This release fixes a couple of rare crashes added by the last
|
||||
release. That release's experimental support for side-by-side
|
||||
views on tablets remains the focus.</p>
|
||||
|
||||
<div id="survey">
|
||||
<p>Please <a href="https://www.surveymonkey.com/s/GX3XLHR">take
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<resources>
|
||||
<string name="app_version">4.4.109</string>
|
||||
<string name="app_version">4.4.110</string>
|
||||
</resources>
|
||||
|
|
|
@ -445,7 +445,9 @@ public class MainActivity extends XWActivity
|
|||
safeAddFragment( fragment, parentName );
|
||||
}
|
||||
};
|
||||
DbgUtils.showf( this, "Putting off fragment construction" );
|
||||
if ( BuildConfig.DEBUG ) {
|
||||
DbgUtils.showf( this, "Putting off fragment construction" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue