Skip to content

Commit 0a134d1

Browse files
committed
Updated strings for v1.5.4 release
Fixed: crash when creating transactions
1 parent 8fd7813 commit 0a134d1

File tree

11 files changed

+25
-12
lines changed

11 files changed

+25
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
Change Log
22
===============================================================================
3+
Version 1.5.4 *(2015-02-16)*
4+
----------------------------
5+
* Fixed: Crash when creating TRADING accounts
6+
* Fixed: Crash when deleting scheduled transactions
7+
* Fixed: Account parent can be set to self, creating a cyclic hierarchy
8+
* Fixed: Transactions not saved when double-entry is enabled but no transfer account is specified
9+
* Improved: Auto-select the device locale currency in the account-creation dialog
10+
* Improved: Upgraded structure of repository to match latest Android conventions
11+
* Improved: Updated instrumentation tests and enabled better test reporting with Spoon
12+
313
Version 1.5.3 *(2015-02-02)*
414
----------------------------
515
* Fixed: Unable to edit double-entry transactions

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ Lei Xiao Bao <[email protected]>
2121
Yongxin Wang <[email protected]>
2222
Matthew Hague <[email protected]>
2323
Spanti Nicola <[email protected]>
24-
Jesse Shieh <[email protected]>
24+
Jesse Shieh <[email protected]>
25+
Àlex Magaz Graça <[email protected]>

app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<description>Gnucash Android companion application</description>
2323

2424
<parent>
25-
<version>1.5.3-SNAPSHOT</version>
25+
<version>1.5.4-SNAPSHOT</version>
2626
<groupId>org.gnucash.android</groupId>
2727
<artifactId>gnucash-android-parent</artifactId>
2828
</parent>

app/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
1212

1313
# Project target.
14-
target=android-16
14+
target=android-18
1515
android.library.reference.1=gen-external-apklibs/com.actionbarsherlock_actionbarsherlock_4.4.0
1616
android.library.reference.2=gen-external-apklibs/com.viewpagerindicator_library_2.4.1
1717

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="org.gnucash.android"
20-
android:versionCode="46"
20+
android:versionCode="47"
2121
android:versionName="@string/app_version_name" >
2222

23-
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
23+
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18"/>
2424

2525
<permission-group
2626
android:name="org.gnucash.android.permission.group.GNUCASH"

app/src/main/java/org/gnucash/android/ui/account/AccountFormFragment.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,9 @@ private void loadParentAccountList(AccountType accountType){
559559

560560
if (mAccount != null){ //if editing an account
561561
mDescendantAccountUIDs = mAccountsDbAdapter.getDescendantAccountUIDs(mAccount.getUID(), null, null);
562-
mDescendantAccountUIDs.add(mAccountsDbAdapter.getGnuCashRootAccountUID());
562+
String rootAccountUID = mAccountsDbAdapter.getGnuCashRootAccountUID();
563+
if (rootAccountUID != null)
564+
mDescendantAccountUIDs.add(rootAccountUID);
563565
// limit cyclic account hierarchies.
564566
condition += " AND (" + DatabaseSchema.AccountEntry.COLUMN_UID + " NOT IN ( '"
565567
+ TextUtils.join("','", mDescendantAccountUIDs) + "','" + mAccountUID + "' ) )";

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
1919
<string name="app_name">GnuCash</string>
20-
<string name="app_version_name">1.5.3</string>
20+
<string name="app_version_name">1.5.4</string>
2121
<string name="title_add_account">Create Account</string>
2222
<string name="title_edit_account">Edit Account</string>
2323
<string name="info_details">Info</string>

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1818
<modelVersion>4.0.0</modelVersion>
1919
<parent>
20-
<version>1.5.3-SNAPSHOT</version>
20+
<version>1.5.4-SNAPSHOT</version>
2121
<groupId>org.gnucash.android</groupId>
2222
<artifactId>gnucash-android-parent</artifactId>
2323
</parent>

integration-tests/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
1212

1313
# Project target.
14-
target=android-16
14+
target=android-18

integration-tests/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
android:versionCode="3"
55
android:versionName="1.2.4" >
66

7-
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16" />
7+
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18" />
88

99
<uses-permission android:name="org.gnucash.android.permission.RECORD_TRANSACTION" />
1010
<uses-permission android:name="org.gnucash.android.permission.CREATE_ACCOUNT" />

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1919
<modelVersion>4.0.0</modelVersion>
20-
<version>1.5.3-SNAPSHOT</version>
20+
<version>1.5.4-SNAPSHOT</version>
2121
<groupId>org.gnucash.android</groupId>
2222
<artifactId>gnucash-android-parent</artifactId>
2323
<name>GnuCash Android parent</name>
@@ -46,7 +46,7 @@
4646
<configuration>
4747
<sdk>
4848
<path>${env.ANDROID_HOME}</path>
49-
<platform>16</platform>
49+
<platform>19</platform>
5050
</sdk>
5151
<undeployBeforeDeploy>true</undeployBeforeDeploy>
5252
</configuration>

0 commit comments

Comments
 (0)