mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
Merge branch 'from_android_beta_106' into android_branch
This commit is contained in:
commit
608533d189
4 changed files with 18 additions and 9 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="100"
|
||||
android:versionCode="101"
|
||||
android:versionName="@string/app_version"
|
||||
>
|
||||
|
||||
|
|
|
@ -115,6 +115,18 @@ android {
|
|||
}
|
||||
}
|
||||
|
||||
// Prevent release builds. They haven't been tested, and now that
|
||||
// f-droid has been releasing them they're KNOWN not to work.
|
||||
android.applicationVariants.all { variant ->
|
||||
if ( variant.name.endsWith("Release") ) {
|
||||
String NAME = "check" + variant.name.capitalize() + "Manifest"
|
||||
task "$NAME"(overwrite: true) << {
|
||||
throw new RuntimeException('<<<<< Release builds should not be built '
|
||||
+ 'using gradle! Please use ant for now. >>>>>');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
}
|
||||
|
|
|
@ -13,9 +13,10 @@
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Crosswords 4.4.106 release</h2>
|
||||
<h2>Crosswords 4.4.107 release</h2>
|
||||
|
||||
<p>This version improves chat display and battery life</p>
|
||||
<p>This version, for F-droid release only, fixes build problems that
|
||||
caused a number of crashes and other issues.</p>
|
||||
|
||||
<div id="survey">
|
||||
<p>Please <a href="https://www.surveymonkey.com/s/GX3XLHR">take
|
||||
|
@ -25,11 +26,7 @@
|
|||
|
||||
<h3>New with this release</h3>
|
||||
<ul>
|
||||
<li>Reduce power usage by combining all green-to-red turn-length
|
||||
timers into one</li>
|
||||
<li>Include player names in chat display</li>
|
||||
<li>Revert recent change preventing multiple checks in SMS and
|
||||
Bluetooth invitation dialogs</li>
|
||||
<li>Force release builds to be done with ant rather than gradle</li>
|
||||
</ul>
|
||||
|
||||
<p>(The full changelog
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<resources>
|
||||
<string name="app_version">4.4.106</string>
|
||||
<string name="app_version">4.4.107</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue