Skip to content

Commit c21b4a5

Browse files
committed
Merge branch 'develop'
2 parents 19e1ab0 + 0935748 commit c21b4a5

File tree

72 files changed

+829
-533
lines changed

Some content is hidden

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

72 files changed

+829
-533
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ gen-external-apklibs
1212
*.ipr
1313
.idea/
1414
*.iws
15-
out/
15+
out/
16+
*.project
17+
*.classpath

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
Change Log
22
===============================================================================
3+
Version 1.3.1 *(2014-02-14)*
4+
----------------------------
5+
* Fixed: Crash when bulk moving transactions
6+
* Fixed: Missing string for internationalization in ru_RU locale
7+
* Fixed: Random crashes when opening ScheduledTransactions list
8+
* Fixed: Blank screen after closing AccountFormFragment
9+
* Fixed: Correct normal balance of the different types of ASSET accounts
10+
* Fixed: Limit the target accounts for bulk transfers to same currency and non-placeholder accounts
11+
* Improved: Remember last opened tab in accounts list
12+
* Improved: Added version information for feedback email
13+
* Improved: Lists of accounts are now sorted by the fully qualified account name
14+
315
Version 1.3.0 *(2014-02-10)*
416
----------------------------
517
* Fixed: Some file managers do not display all files available for import

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="25"
21-
android:versionName="1.3.0" >
20+
android:versionCode="26"
21+
android:versionName="@string/app_version_name" >
2222

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

@@ -48,15 +48,15 @@
4848
android:label="@string/app_name"
4949
android:theme="@style/Theme.Sherlock.Light.DarkActionBar">
5050
<activity
51-
android:name=".ui.accounts.AccountsActivity"
51+
android:name=".ui.account.AccountsActivity"
5252
android:label="@string/app_name">
5353
<intent-filter>
5454
<action android:name="android.intent.action.MAIN" />
5555
<category android:name="android.intent.category.LAUNCHER" />
5656
</intent-filter>
5757
</activity>
5858
<activity android:name=".ui.settings.SettingsActivity"/>
59-
<activity android:name=".ui.transactions.TransactionsActivity"
59+
<activity android:name=".ui.transaction.TransactionsActivity"
6060
android:configChanges="orientation|screenSize">
6161
</activity>
6262
<activity android:name=".ui.widget.WidgetConfigurationActivity"
1.35 KB
Loading
1.35 KB
Loading
1.24 KB
Loading
1.24 KB
Loading
1.49 KB
Loading
1.48 KB
Loading

app/res/layout/list_item_account.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
limitations under the License.
1616
-->
1717

18-
<org.gnucash.android.util.CheckableLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18+
<org.gnucash.android.ui.util.CheckableLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
1919
android:layout_width="match_parent"
2020
android:layout_height="?android:attr/listPreferredItemHeight"
2121
android:gravity="center_vertical"
@@ -62,4 +62,4 @@
6262
android:focusable="false"
6363
android:contentDescription="@string/description_add_transaction_icon"/>
6464

65-
</org.gnucash.android.util.CheckableLinearLayout>
65+
</org.gnucash.android.ui.util.CheckableLinearLayout>

0 commit comments

Comments
 (0)