From 78e9ff4693283b705f9062b0e7984c8712c951a9 Mon Sep 17 00:00:00 2001 From: Inigo Lopez de Heredia Date: Tue, 26 Aug 2014 16:18:01 +0100 Subject: [PATCH 1/3] [#149] Disable 'save' property in CheckBox views * The system will not attempt to restore their state, which essentially relies on the DB to be opened. --- app/src/main/res/layout/preferences.xml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/app/src/main/res/layout/preferences.xml b/app/src/main/res/layout/preferences.xml index cf3348ab2..211372356 100644 --- a/app/src/main/res/layout/preferences.xml +++ b/app/src/main/res/layout/preferences.xml @@ -21,7 +21,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" - android:layout_alignParentRight="true" /> + android:layout_alignParentRight="true" + android:saveEnabled="false"/> + android:layout_alignParentRight="true" + android:saveEnabled="false"/> + android:layout_alignParentRight="true" + android:saveEnabled="false"/> + + android:layout_alignParentRight="true" + android:saveEnabled="false"/> Date: Wed, 27 Aug 2014 11:29:28 +0100 Subject: [PATCH 2/3] [#151] Manually handle locale and layoutDirection changes * Prevent automatic management of these properties, preventing the device from restarting the Activity. * Bump version number --- app/src/main/AndroidManifest.xml | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index abf6f7c1e..47b3c5f80 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,7 +2,7 @@ + android:versionName="2.0.2" > - + @@ -37,6 +39,7 @@ @@ -46,25 +49,34 @@ android:name="android.app.searchable" android:resource="@xml/searchable" /> - + - + - - - + + + + android:theme="@style/Flow.Dialog" + android:configChanges="locale|layoutDirection" > From 00b635b0e7a269b6d751a86ddb91130123375df2 Mon Sep 17 00:00:00 2001 From: Inigo Lopez de Heredia Date: Wed, 27 Aug 2014 14:46:57 +0100 Subject: [PATCH 3/3] [#151] Use hotfix version naming convention * Bump 4th digit of the version (hotfix) --- app/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 47b3c5f80..ffeb86b0f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,7 +2,7 @@ + android:versionName="2.0.1.1" >