Skip to content

Commit

Permalink
Upgraded version numbers and changelog for first beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
codinguser committed Feb 8, 2016
1 parent e6b619d commit 41e70de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Version 2.0.6 *(2016-02-20)*
* Fixed: Amount text boxes in split editor sometimes do not get focus
* Fixed: Crash when saving account with no transfer account selected
* Fixed: Crash when creating a new transaction with no transfer account
* Fixed: All transactions are always exported for some time zones
* Improved: Add translation for Japanese. Updated Italian and Russian

Version 2.0.5 *(2015-12-12)*
----------------------------
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'io.fabric'
def versionMajor = 2
def versionMinor = 0
def versionPatch = 6
def versionBuild = 0
def versionBuild = 1

def buildTime() {
def df = new SimpleDateFormat("yyyyMMdd HH:mm 'UTC'")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
*/
private boolean canSave(){
return (mAmountEditText.isInputValid())
|| (mUseDoubleEntry && mTransferAccountSpinner.getCount() == 0);
|| (mUseDoubleEntry && mTransferAccountSpinner.getCount() > 0);
}

/**
Expand Down

0 comments on commit 41e70de

Please sign in to comment.