Skip to content

Commit 98e2674

Browse files
committed
Merge pull request #2 from codinguser/develop
update develop branch
2 parents ac8fdbc + 0d712cb commit 98e2674

120 files changed

Lines changed: 22705 additions & 1945 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
Change Log
22
===============================================================================
3+
Version 1.3.0 *(2014-02-10)*
4+
----------------------------
5+
* Fixed: Some file managers do not display all files available for import
6+
* Fixed: Crash when deleting account from accounts list
7+
* Fixed: CASH accounts should have normal DEBIT balance
8+
* Fixed: Crash when quickly opening and navigating from transactions list
9+
* Feature: Mark favorite accounts and quickly access them
10+
* Feature: Display different tabs for recent, favorite and all accounts
11+
* Feature: Add, view and delete recurring transactions (daily, weekly, monthly)
12+
* Feature: Mark accounts as placeholder accounts (cannot contain transactions)
13+
* Feature: Set a default transfer account for each account
14+
* Feature: Color code accounts & themed account views
15+
* Feature: Create default GnuCash account structure from within app
16+
* Improved: Enabled one-button click for rating app and sending feedback
17+
* Improved: Clicking on version information now shows changelog
18+
* Improved: Delete account and all its sub-accounts
19+
* Improved: Sub-accounts default to same account type as parent account
20+
* Improved: Use tab views for sub-accounts and transactions inside accounts
21+
22+
Version 1.2.7 *(2013-12-18)*
23+
----------------------------
24+
* Fixed: Export format always defaults to QIF, ignoring user preference
25+
* Improved: Better responsiveness of add transaction and add account buttons
26+
* Improved: Russian translation
27+
28+
Version 1.2.6 *(2013-12-06)*
29+
----------------------------
30+
* Feature: Support for QIF export format
31+
* Improved: CREDIT/DEBIT meaning now matches GnuCash desktop. Effect on account balance depends on type of account
32+
33+
Version 1.2.5 *(2013-09-17)*
34+
----------------------------
35+
* Feature: Search accounts by name
36+
* Fixed: crash when deleting accounts
37+
* Fixed: auto-completing transaction names does not copy the time or export flag
38+
* Fixed: random crash when opening app (or loading accounts)
39+
40+
Version 1.2.4 *(2013-09-05)*
41+
----------------------------
42+
* Added support for detecting placeholder accounts during import
43+
* Use full qualified account names in account selection spinners
44+
* Loads complete transaction as a template when the autocomplete suggestion is selected
45+
* Fixed: selecting items from lists caused multiple to be selected in the wrong positions
46+
* Fixed: widgets not updated when all accounts or all transactions are deleted
47+
* Other minor bug fixes.
48+
49+
Version 1.2.3 *(2013-08-28)*
50+
----------------------------
51+
* Fixed: crashes when editing/creating transactions
52+
* Feature: Added Chinese language translation
53+
* Feature: Autocomplete transaction descriptions
54+
* Improved reliability of importing stock accounts
55+
* Improved speed of loading account balance
56+
* Improved increased touch target area of "new transaction" button in accounts list view
57+
358
Version 1.2.2 *(2013-06-23)*
459
----------------------------
560
* Fixed: bug with importing accounts

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ Geert Janssens <janssens-geert@telenet.be>
1515
Nicolas Barranger <wicowyn@gmail.com>
1616
Sigurd Gartmann <sigurdga-github@sigurdga.no>
1717
Pedro Abel <pedroabel@gmail.com>
18-
windwarrior <lennartbuit@gmail.com>
18+
windwarrior <lennartbuit@gmail.com>
19+
Lei Xiao Bao <lxbzmy@gmail.com>

app/AndroidManifest.xml

Lines changed: 4 additions & 4 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="10"
21-
android:versionName="1.2.2" >
20+
android:versionCode="24"
21+
android:versionName="1.3.0.beta2" >
2222

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

@@ -55,13 +55,13 @@
5555
<category android:name="android.intent.category.LAUNCHER" />
5656
</intent-filter>
5757
</activity>
58-
<activity android:name=".ui.settings.SettingsActivity"></activity>
58+
<activity android:name=".ui.settings.SettingsActivity"/>
5959
<activity android:name=".ui.transactions.TransactionsActivity"
6060
android:configChanges="orientation|screenSize">
6161
</activity>
6262
<activity android:name=".ui.widget.WidgetConfigurationActivity"
6363
android:label="@string/label_widget_configuration"
64-
android:theme="@style/Theme.Sherlock.Light.Dialog"
64+
android:theme="@style/Dialog.WidgetConfiguration"
6565
android:excludeFromRecents="true">
6666
<intent-filter>
6767
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>

app/pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222
<description>Gnucash Android companion application</description>
2323

2424
<parent>
25-
<version>1.2.2</version>
25+
<version>1.3.0-SNAPSHOT</version>
2626
<groupId>org.gnucash.android</groupId>
2727
<artifactId>gnucash-android-parent</artifactId>
2828
</parent>
2929

3030
<properties>
31-
<abs.version>4.2.0</abs.version>
31+
<abs.version>4.4.0</abs.version>
32+
<viewpagerindicator.version>2.4.1</viewpagerindicator.version>
3233
</properties>
3334

3435
<dependencies>
@@ -44,6 +45,12 @@
4445
<version>${abs.version}</version>
4546
<type>apklib</type>
4647
</dependency>
48+
<dependency>
49+
<groupId>com.viewpagerindicator</groupId>
50+
<artifactId>library</artifactId>
51+
<version>${viewpagerindicator.version}</version>
52+
<type>apklib</type>
53+
</dependency>
4754
</dependencies>
4855
<build>
4956
<sourceDirectory>src</sourceDirectory>
2.36 KB
Loading
1.62 KB
Loading
3.17 KB
Loading
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Copyright (C) 2013 The Android Open Source Project
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+
-->
16+
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" />

app/res/drawable/color_square.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Copyright (C) 2013 The Android Open Source Project
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+
-->
16+
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" />
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:drawable="@drawable/abs__item_background_holo_light"
5+
android:state_pressed="true" />
6+
<item android:drawable="@drawable/abs__item_background_holo_light"
7+
android:state_focused="true" />
8+
</selector>

0 commit comments

Comments
 (0)