File tree Expand file tree Collapse file tree 7 files changed +10
-6
lines changed
src/org/gnucash/android/db Expand file tree Collapse file tree 7 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 11Change Log
22===============================================================================
3+ Version 1.4.2 * (2014-08-30)*
4+ ----------------------------
5+ * Fixed: Newly added transactions cannot be exported
6+
37Version 1.4.1 * (2014-08-25)*
48----------------------------
59* Fixed: Transaction edits not saved
Original file line number Diff line number Diff line change 1717
1818<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
1919 package =" org.gnucash.android"
20- android : versionCode =" 37 "
20+ android : versionCode =" 39 "
2121 android : versionName =" @string/app_version_name" >
2222
2323 <uses-sdk android : minSdkVersion =" 8" android : targetSdkVersion =" 16" />
Original file line number Diff line number Diff line change 2222 <description >Gnucash Android companion application</description >
2323
2424 <parent >
25- <version >1.4.1 -SNAPSHOT</version >
25+ <version >1.4.2 -SNAPSHOT</version >
2626 <groupId >org.gnucash.android</groupId >
2727 <artifactId >gnucash-android-parent</artifactId >
2828 </parent >
Original file line number Diff line number Diff line change 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.4.1 </string >
20+ <string name =" app_version_name" >1.4.2 </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 >
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public long addSplit(Split split){
7777
7878 //when a split is updated, we want mark the transaction as not exported
7979 updateRecord (TransactionEntry .TABLE_NAME , getTransactionID (split .getTransactionUID ()),
80- TransactionEntry .COLUMN_EXPORTED , String .valueOf (rowId > 0 ? 1 : 0 ));
80+ TransactionEntry .COLUMN_EXPORTED , String .valueOf (rowId > 0 ? 0 : 1 ));
8181 return rowId ;
8282 }
8383
Original file line number Diff line number Diff line change 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.4.1 -SNAPSHOT</version >
20+ <version >1.4.2 -SNAPSHOT</version >
2121 <groupId >org.gnucash.android</groupId >
2222 <artifactId >gnucash-android-parent</artifactId >
2323 </parent >
Original file line number Diff line number Diff line change 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.4.1 -SNAPSHOT</version >
20+ <version >1.4.2 -SNAPSHOT</version >
2121 <groupId >org.gnucash.android</groupId >
2222 <artifactId >gnucash-android-parent</artifactId >
2323 <name >GnuCash Android parent</name >
You can’t perform that action at this time.
0 commit comments