File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed
src/androidTest/java/org/gnucash/android/test/ui Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 11Change Log
22===============================================================================
3+ Version 1.6.1 * (2015-07-08)*
4+ ----------------------------
5+ * Fixed: Crash when importing some scheduled transations with custom period strings
6+ * Fixed: Crash when closing export progress dialog if an export error occurred
7+ * Fixed: Crash when creating a sub-account and changing the account type
8+ * Fixed: Crash when loading backup files with no timestamp in their name
9+ * Fixed: Crash when app is run on devices with locale es_LG
10+ * Improved: Updated betterpickers library
11+ * Improved: New dialogs for time and date when creating transactions
12+ * Improved: Added translation to Ukrainian
13+
314Version 1.6.0 * (2015-06-20)*
415----------------------------
516* Feature: Scheduled backups (QIF, OFX and XML)
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ apply plugin: 'crashlytics'
55
66def versionMajor = 1
77def versionMinor = 6
8- def versionPatch = 0
9- def versionBuild = 7
8+ def versionPatch = 1
9+ def versionBuild = 0
1010
1111def buildTime () {
1212 def df = new SimpleDateFormat (" yyyyMMdd" )
@@ -100,13 +100,13 @@ android {
100100 applicationId ' org.gnucash.android.devel'
101101 testApplicationId ' org.gnucash.android.devel.test'
102102 resValue " string" , " app_name" , " GnuCash-devel"
103- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} -dev${ versionBuild} _ ${ buildTime ()} "
103+ versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} -dev${ versionBuild} _r ${ gitSha ()} "
104104 resValue " string" , " app_version_name" , " ${ versionName} "
105105 }
106106
107107 beta {
108108 resValue " string" , " app_name" , " GnuCash - beta"
109- versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} -beta${ versionBuild} _r ${ gitSha() } "
109+ versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} -beta${ versionBuild} "
110110 resValue " string" , " app_version_name" , " ${ versionName} "
111111 buildConfigField " boolean" , " USE_CRASHLYTICS" , " true"
112112 }
Original file line number Diff line number Diff line change @@ -222,7 +222,8 @@ private void validateEditTransactionFields(Transaction transaction){
222222 formatter .setMinimumFractionDigits (2 );
223223 formatter .setMaximumFractionDigits (2 );
224224 onView (withId (R .id .input_transaction_amount )).check (matches (withText (formatter .format (balance .asDouble ()))));
225-
225+ onView (withId (R .id .input_date )).check (matches (withText (TransactionFormFragment .DATE_FORMATTER .format (transaction .getTimeMillis ()))));
226+ onView (withId (R .id .input_time )).check (matches (withText (TransactionFormFragment .TIME_FORMATTER .format (transaction .getTimeMillis ()))));
226227 onView (withId (R .id .input_description )).check (matches (withText (transaction .getNote ())));
227228
228229 validateTimeInput (transaction .getTimeMillis ());
You can’t perform that action at this time.
0 commit comments