Skip to content

Commit

Permalink
Merge branch 'hotfix/patches'
Browse files Browse the repository at this point in the history
  • Loading branch information
codinguser committed Jan 31, 2015
2 parents ed05399 + d9361cf commit 93e4354
Show file tree
Hide file tree
Showing 37 changed files with 613 additions and 293 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Change Log
===============================================================================
Version 1.5.3 *(2015-02-02)*
----------------------------
* Fixed: Unable to edit double-entry transactions
* Fixed: Edited transactions not flagged unexported
* Fixed: Random crashes when editing transaction splits
* Improved: Long press on transactions triggers context menu

Version 1.5.2 *(2015-01-26)*
----------------------------
* Fixed: Crash when importing XML with TRADING accounts
Expand Down
2 changes: 1 addition & 1 deletion app/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.gnucash.android"
android:versionCode="45"
android:versionCode="46"
android:versionName="@string/app_version_name" >

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
Expand Down
2 changes: 1 addition & 1 deletion app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<description>Gnucash Android companion application</description>

<parent>
<version>1.5.2-SNAPSHOT</version>
<version>1.5.3-SNAPSHOT</version>
<groupId>org.gnucash.android</groupId>
<artifactId>gnucash-android-parent</artifactId>
</parent>
Expand Down
Binary file added app/res/drawable-ldpi/clear_btn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/res/drawable-mdpi/clear_btn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions app/res/drawable/numeric_button.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>

<!--
Copyright (c) 2014 Oleksandr Tyshkovets <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid
android:color="@color/default_line_indicator_selected_color" />
<corners
android:radius="200dp" />
<stroke
android:width="1dp"
android:color="@color/abs__bright_foreground_disabled_holo_light" />
</shape>
</item>
<item android:state_enabled="false" >
<shape>
<solid
android:color="@color/abs__primary_text_disable_only_holo_dark" />
<corners
android:radius="200dp" />
<stroke
android:width="1dp"
android:color="@color/abs__bright_foreground_disabled_holo_light" />
</shape>
</item>
<item>
<shape>
<solid android:color="@android:color/transparent" />
<corners
android:radius="200dp" />
<stroke
android:width="1dp"
android:color="@color/abs__bright_foreground_disabled_holo_light" />
</shape>
</item>
</selector>
4 changes: 2 additions & 2 deletions app/res/layout/dialog_split_editor.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ limitations under the License.
android:layout_height="match_parent"
android:textAppearance="?android:attr/textAppearanceSmall"
android:gravity="center_vertical"
android:text="Imbalance:"/>
android:text="@string/label_imbalance"/>

<TextView android:id="@+id/imbalance_textview"
android:layout_width="0dp"
Expand All @@ -69,7 +69,7 @@ limitations under the License.
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/content_new_holo_light"
android:text="Add split"/>
android:text="@string/btn_add_split"/>

</TableLayout>
</RelativeLayout>
Loading

0 comments on commit 93e4354

Please sign in to comment.