Skip to content

Commit 93e4354

Browse files
committed
Merge branch 'hotfix/patches'
2 parents ed05399 + d9361cf commit 93e4354

37 files changed

+613
-293
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Change Log
22
===============================================================================
3+
Version 1.5.3 *(2015-02-02)*
4+
----------------------------
5+
* Fixed: Unable to edit double-entry transactions
6+
* Fixed: Edited transactions not flagged unexported
7+
* Fixed: Random crashes when editing transaction splits
8+
* Improved: Long press on transactions triggers context menu
9+
310
Version 1.5.2 *(2015-01-26)*
411
----------------------------
512
* Fixed: Crash when importing XML with TRADING accounts

app/AndroidManifest.xml

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

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

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

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.2-SNAPSHOT</version>
25+
<version>1.5.3-SNAPSHOT</version>
2626
<groupId>org.gnucash.android</groupId>
2727
<artifactId>gnucash-android-parent</artifactId>
2828
</parent>
4.18 KB
Loading
3.17 KB
Loading
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!--
4+
Copyright (c) 2014 Oleksandr Tyshkovets <[email protected]>
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
-->
18+
19+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
20+
<item android:state_pressed="true" >
21+
<shape>
22+
<solid
23+
android:color="@color/default_line_indicator_selected_color" />
24+
<corners
25+
android:radius="200dp" />
26+
<stroke
27+
android:width="1dp"
28+
android:color="@color/abs__bright_foreground_disabled_holo_light" />
29+
</shape>
30+
</item>
31+
<item android:state_enabled="false" >
32+
<shape>
33+
<solid
34+
android:color="@color/abs__primary_text_disable_only_holo_dark" />
35+
<corners
36+
android:radius="200dp" />
37+
<stroke
38+
android:width="1dp"
39+
android:color="@color/abs__bright_foreground_disabled_holo_light" />
40+
</shape>
41+
</item>
42+
<item>
43+
<shape>
44+
<solid android:color="@android:color/transparent" />
45+
<corners
46+
android:radius="200dp" />
47+
<stroke
48+
android:width="1dp"
49+
android:color="@color/abs__bright_foreground_disabled_holo_light" />
50+
</shape>
51+
</item>
52+
</selector>

app/res/layout/dialog_split_editor.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ limitations under the License.
5555
android:layout_height="match_parent"
5656
android:textAppearance="?android:attr/textAppearanceSmall"
5757
android:gravity="center_vertical"
58-
android:text="Imbalance:"/>
58+
android:text="@string/label_imbalance"/>
5959

6060
<TextView android:id="@+id/imbalance_textview"
6161
android:layout_width="0dp"
@@ -69,7 +69,7 @@ limitations under the License.
6969
android:layout_width="wrap_content"
7070
android:layout_height="wrap_content"
7171
android:drawableLeft="@drawable/content_new_holo_light"
72-
android:text="Add split"/>
72+
android:text="@string/btn_add_split"/>
7373

7474
</TableLayout>
7575
</RelativeLayout>

0 commit comments

Comments
 (0)