mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-22 07:28:16 +01:00
final change list change?
This commit is contained in:
parent
5eef348a6c
commit
2d6aa1d019
2 changed files with 2 additions and 2 deletions
|
@ -27,9 +27,11 @@
|
||||||
<h3>New with this release</h3>
|
<h3>New with this release</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fix timing problems when the "Phonies" setting is DISALLOW</li>
|
<li>Fix timing problems when the "Phonies" setting is DISALLOW</li>
|
||||||
|
<li>Speed up board drawing</li>
|
||||||
<li>Clean up "Edit player" dialog</li>
|
<li>Clean up "Edit player" dialog</li>
|
||||||
<li>Add support for Hungarian wordlists</li>
|
<li>Add support for Hungarian wordlists</li>
|
||||||
<li>Fix a rare crash closing wordlists</li>
|
<li>Fix a rare crash closing wordlists</li>
|
||||||
|
<li>Fix crashes reported through the Play Store (thanks!)</li>
|
||||||
<li>Include new Turkish translation (via Weblate)</li>
|
<li>Include new Turkish translation (via Weblate)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -2397,7 +2397,6 @@ Java_org_eehouse_android_xw4_jni_XwJNI_board_1sendChat
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
typedef struct _DictIterData {
|
typedef struct _DictIterData {
|
||||||
JNIEnv* env;
|
|
||||||
JNIGlobalState* globalState;
|
JNIGlobalState* globalState;
|
||||||
JNIUtilCtxt* jniutil;
|
JNIUtilCtxt* jniutil;
|
||||||
VTableMgr* vtMgr;
|
VTableMgr* vtMgr;
|
||||||
|
@ -2428,7 +2427,6 @@ Java_org_eehouse_android_xw4_jni_XwJNI_dict_1iter_1init
|
||||||
jname, jDictBytes, jpath, NULL, false );
|
jname, jDictBytes, jpath, NULL, false );
|
||||||
if ( !!dict ) {
|
if ( !!dict ) {
|
||||||
DictIterData* data = XP_CALLOC( globalState->mpool, sizeof(*data) );
|
DictIterData* data = XP_CALLOC( globalState->mpool, sizeof(*data) );
|
||||||
data->env = env;
|
|
||||||
data->globalState = globalState;
|
data->globalState = globalState;
|
||||||
data->vtMgr = make_vtablemgr( MPPARM_NOCOMMA(globalState->mpool) );
|
data->vtMgr = make_vtablemgr( MPPARM_NOCOMMA(globalState->mpool) );
|
||||||
data->jniutil = globalState->jniutil;
|
data->jniutil = globalState->jniutil;
|
||||||
|
|
Loading…
Reference in a new issue