mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
Merge branch 'android_branch' of ssh://xwords.git.sourceforge.net/gitroot/xwords/xwords into android_branch
This commit is contained in:
commit
2fc05055d0
4 changed files with 9 additions and 12 deletions
|
@ -21,8 +21,8 @@
|
|||
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="7"
|
||||
android:versionName="4.4 beta 14"
|
||||
android:versionCode="8"
|
||||
android:versionName="4.4 beta 15"
|
||||
>
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
|
|
@ -6,19 +6,16 @@
|
|||
</head>
|
||||
<body>
|
||||
|
||||
<b>Crosswords 4.4 beta 14 release</b>
|
||||
<b>Crosswords 4.4 beta 15 release</b>
|
||||
|
||||
<ul>New features:
|
||||
<li>This spiffy per-release dialog</li>
|
||||
</ul>
|
||||
<p>This is a quick bug-fix release while I continue work on the new relay connection code.</p>
|
||||
|
||||
<ul>Bugs fixed:
|
||||
<li>Crash exiting board view</li>
|
||||
<li>Hang searching for robot move</li>
|
||||
<li>Crash putting up progress dialog after board hidden</li>
|
||||
<li>Robot wouldn't give up turn when unable to find a move. (Thanks S.A.)</li>
|
||||
<li>"Crosshairs" was drawn only three columns wide when started on top row</li>
|
||||
</ul>
|
||||
|
||||
<ul>Coming soon:
|
||||
<ul>(Still) coming soon
|
||||
<li>builtin hints and help</li>
|
||||
<li>rewrite of gameplay via relay to make connecting easier and allow closed game to receive moves.</li>
|
||||
</ul>
|
||||
|
|
|
@ -23,5 +23,5 @@ package org.eehouse.android.xw4;
|
|||
public interface XWConstants {
|
||||
public static final String GAME_EXTN = ".xwg";
|
||||
public static final String DICT_EXTN = ".xwd";
|
||||
public static final String VERSION_STR = "4.4 beta 14";
|
||||
public static final String VERSION_STR = "4.4 beta 15";
|
||||
}
|
||||
|
|
|
@ -677,7 +677,7 @@ static void
|
|||
crosshairs_init( BoardCtxt* board )
|
||||
{
|
||||
DragState* ds = &board->dragState;
|
||||
ds->crosshairs.col = ds->crosshairs.col = -1;
|
||||
ds->crosshairs.col = ds->crosshairs.row = -1;
|
||||
}
|
||||
|
||||
static XP_Bool
|
||||
|
|
Loading…
Reference in a new issue