Skip to content

Commit 8e7b974

Browse files
committed
Fixed: transaction is inverted when open for editing
Fixed: Home button in recurring transactions view does not work Fixed: Settings menu now visible in recurring transactions view Fixed: crash when opening Settings on Android versions < HONEYCOMB Updated copyright notices Prepare strings for v1.3.0.beta2 release
1 parent 5d17c1c commit 8e7b974

27 files changed

Lines changed: 120 additions & 54 deletions

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Change Log
22
===============================================================================
3-
Version 1.3.0 *(2014-02-07)*
3+
Version 1.3.0 *(2014-02-10)*
44
----------------------------
55
* Fixed: Some file managers do not display all files available for import
66
* Fixed: Crash when deleting account from accounts list

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Nicolas Barranger <wicowyn@gmail.com>
1616
Sigurd Gartmann <sigurdga-github@sigurdga.no>
1717
Pedro Abel <pedroabel@gmail.com>
1818
windwarrior <lennartbuit@gmail.com>
19-
lxbzmy <lxbzmy@gmail.com>
19+
Lei Xiao Bao <lxbzmy@gmail.com>

app/AndroidManifest.xml

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

1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="org.gnucash.android"
20-
android:versionCode="23"
21-
android:versionName="1.3.0.beta1" >
20+
android:versionCode="24"
21+
android:versionName="1.3.0.beta2" >
2222

2323
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15"/>
2424

app/res/values-de/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
Copyright (c) 2012 - 2014 Ngewi Fet <ngewif@gmail.com>
4-
Copyright (c) 2012 - 2014 Christian Stimming <christian@stimming.de>
4+
Copyright (c) 2012 - 2013 Christian Stimming <christian@stimming.de>
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

app/res/values-zh/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
22
<!--
33
Copyright (c) 2012 - 2014 Ngewi Fet <ngewif@gmail.com>
4+
Copyright (c) 2013 - 2014 Lei Xiao Bao <lxbzmy@gmail.com>
45
56
Licensed under the Apache License, Version 2.0 (the "License");
67
you may not use this file except in compliance with the License.

app/src/org/gnucash/android/app/GnuCashApplication.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright (c) 2013 - 2014 Ngewi Fet <ngewif@gmail.com>
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package org.gnucash.android.app;
217

318
import android.app.Application;

app/src/org/gnucash/android/data/Money.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012 Ngewi Fet <ngewif@gmail.com>
2+
* Copyright (c) 2012 - 2014 Ngewi Fet <ngewif@gmail.com>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/org/gnucash/android/data/Transaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012 Ngewi Fet <ngewif@gmail.com>
2+
* Copyright (c) 2012 - 2014 Ngewi Fet <ngewif@gmail.com>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/org/gnucash/android/db/AccountsDbAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012 Ngewi Fet <ngewif@gmail.com>
2+
* Copyright (c) 2012 - 2014 Ngewi Fet <ngewif@gmail.com>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/org/gnucash/android/db/DatabaseAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012 Ngewi Fet <ngewif@gmail.com>
2+
* Copyright (c) 2012 - 2014 Ngewi Fet <ngewif@gmail.com>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)