Merge branch 'from_android_beta_69' into android_branch

This commit is contained in:
Eric House 2013-10-17 06:31:17 -07:00
commit 9fe34e4183
7 changed files with 13 additions and 13 deletions

View file

@ -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="61"
android:versionCode="62"
android:versionName="@string/app_version"
>

View file

@ -23,8 +23,7 @@
<item android:id="@+id/board_menu_tray"
/>
<item android:id="@+id/board_submenu_game"
android:title="@string/board_submenu_game">
<item android:title="@string/board_submenu_game">
<menu>
<item android:id="@+id/board_menu_game_counts"
android:title="@string/board_menu_game_counts" />

View file

@ -5,21 +5,19 @@
</style>
</head>
<body>
<b>Crosswords 4.4 beta 69 release</b>
<b>Crosswords 4.4 beta 70 release</b>
<p>This release features a major upgrade to how the app communicates
<p>Recent releases feature a major upgrade to how the app communicates
with the relay, in essence switching from each game communicating
individually (and only when open) to the app communicating on behalf
of all games. You should notice only that moves are transmitted
more reliably. But this being new code you may also notice bugs.
If you don't <a href="mailto:xwords@eehouse.org">tell me about
them</a> they will not get fixed.
</p>
them</a> they will not get fixed. </p>
<h3>New with this release</h3>
<ul>
<li>Fix relay registration problem (Thanks DS!)</li>
<li>Show Turn done/Pass in actionbar where possible</li>
<li>Work around bug in 2.3.x Android (Thanks O!)</li>
</ul>
<h3>Next up</h3>

View file

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

View file

@ -652,7 +652,7 @@
<string name="board_menu_undo_last">Undo last</string>
<!-- Title of submenu -->
<string name="board_submenu_game">Game</string>
<string name="board_submenu_game">Game -></string>
<!-- menu on Game submenu: brings up dialog listing all tiles in
the language of the game along with how many of each there

View file

@ -740,7 +740,6 @@ public class BoardActivity extends XWActivity
Utils.setItemVisible( menu, R.id.board_menu_undo_last, !inTrade );
Utils.setItemVisible( menu, R.id.board_menu_tray, !inTrade );
Utils.setItemVisible( menu, R.id.board_submenu_game, !inTrade );
if ( !inTrade ) {
boolean enabled = null == m_gsi || m_gsi.curTurnSelected;

View file

@ -24,7 +24,9 @@ import android.content.Context;
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.graphics.Paint;
import android.os.Build;
import android.preference.PreferenceManager;
import junit.framework.Assert;
import org.eehouse.android.xw4.XWPrefs;
@ -239,7 +241,9 @@ public class CommonPrefs extends XWPrefs {
public static boolean getHideTitleBar( Context context )
{
return getPrefsBoolean( context, R.string.key_hide_title, false );
boolean hideByDefault = 11 > Integer.valueOf( Build.VERSION.SDK );
return getPrefsBoolean( context, R.string.key_hide_title,
hideByDefault );
}
public static boolean getSoundNotify( Context context )