From 31cfbaab1aea2eae86a8791129e38faa2730c310 Mon Sep 17 00:00:00 2001 From: Eric House Date: Mon, 25 Jan 2021 20:37:42 -0800 Subject: [PATCH] up changelog for new release --- xwords4/android/app/build.gradle | 4 ++-- .../android/app/src/main/assets/changes.html | 19 ++++++++++++------- .../android/xw4/KnownPlayersDelegate.java | 3 ++- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/xwords4/android/app/build.gradle b/xwords4/android/app/build.gradle index 5c79a1d8c..d4db90809 100644 --- a/xwords4/android/app/build.gradle +++ b/xwords4/android/app/build.gradle @@ -19,8 +19,8 @@ */ def INITIAL_CLIENT_VERS = 10 -def VERSION_CODE_BASE = 168 -def VERSION_NAME = '4.4.172' +def VERSION_CODE_BASE = 169 +def VERSION_NAME = '4.4.173' def BUILD_INFO_NAME = "build-info.txt" // Not all variants use the same BT_UUID. Those with the same talk to diff --git a/xwords4/android/app/src/main/assets/changes.html b/xwords4/android/app/src/main/assets/changes.html index f73c9d2f8..73cc5b307 100644 --- a/xwords4/android/app/src/main/assets/changes.html +++ b/xwords4/android/app/src/main/assets/changes.html @@ -13,9 +13,10 @@ -

CrossWords 4.4.172 release

+

CrossWords 4.4.173 release

-

This release fixes a problem upgrading non-English wordlists

+

This release is completely translated into Italian and Brazilian + Portuguese

Please take @@ -25,11 +26,15 @@

New with this release

    -
  • Send language code rather than name when checking for - wordlist upgrades
  • -
  • Improve play over Bluetooth (slightly)
  • -
  • Include translations in Brazillian Portuguese, Italian, - Spanish and Turkish (via Weblate)
  • +
  • Tweaks the UI for starting new games to better remember + previous choices
  • +
  • Tweak preferences color editor
  • +
  • Don't ever give a first tray where there's no possible + move
  • +
  • Remove passwords -- nobody uses them
  • +
  • Fix occasional freeze in in-game Chat view
  • +
  • Includes new translations in Brazilian Portuguese, Italian + and Norwegian (via Weblate -- thanks!)

(The full changelog diff --git a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/KnownPlayersDelegate.java b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/KnownPlayersDelegate.java index be4c90ecb..22f237925 100644 --- a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/KnownPlayersDelegate.java +++ b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/KnownPlayersDelegate.java @@ -185,7 +185,8 @@ public class KnownPlayersDelegate extends DelegateBase { CommsAddrRec addr = XwJNI.kplr_getAddr( player, lastMod ); if ( null != addr ) { - final ViewGroup item = (ViewGroup)LocUtils.inflate( mActivity, R.layout.knownplayrs_item ); + final ViewGroup item = (ViewGroup)LocUtils + .inflate( mActivity, R.layout.knownplayrs_item ); setName( item, player ); view = item;