Skip to content

Commit 55a1f50

Browse files
committed
Updated version string for v1.6.1 release
Added some date/time checks to transaction tests Development build output name now includes git revision, beta builds include only build number Updated CHANGELOG
1 parent 01a2301 commit 55a1f50

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Change 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+
314
Version 1.6.0 *(2015-06-20)*
415
----------------------------
516
* Feature: Scheduled backups (QIF, OFX and XML)

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apply plugin: 'crashlytics'
55

66
def versionMajor = 1
77
def versionMinor = 6
8-
def versionPatch = 0
9-
def versionBuild = 7
8+
def versionPatch = 1
9+
def versionBuild = 0
1010

1111
def 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
}

app/src/androidTest/java/org/gnucash/android/test/ui/TransactionsActivityTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)