diff --git a/CHANGELOG.md b/CHANGELOG.md index c1c4b109d..3c0bdc9ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ Change Log =============================================================================== -Version 2.1.0 *(2016-xx-xx)* +Version 2.1.0 *(2016-09-01)* ---------------------------- * Feature: Use multiple GnuCash books in single application * Feature: Backup/Export to ownCloud servers @@ -8,7 +8,9 @@ Version 2.1.0 *(2016-xx-xx)* * Improved: Redesign of passcode screen with included alphabet keys * Improved: Scheduled transactions now have more accurate timestamps * Improved: Generate all scheduled transactions even if a scheduled is missed (e.g. device off) +* Improved: Updated translations (and extracted some hard-coded strings) * Fixed: Accounts lists not properly refreshed after switching between recent and all +* Fixed: Inaccurate execution of some scheduled transactions Version 2.0.7 *(2016-05-05)* ---------------------------- diff --git a/CONTRIBUTORS b/CONTRIBUTORS deleted file mode 100644 index a2db1919b..000000000 --- a/CONTRIBUTORS +++ /dev/null @@ -1,33 +0,0 @@ -GnuCash for Android is a community effort which is made possible by the contributions of -several different people. -Appreciation goes to Muslim Chochlov and the to whole GnuCash community for guiding the -project through the early phases and providing valuable feedback. - -Maintainer: -Ngewi Fet - -Core contributors: -Yongxin Wang -Oleksandr Tyshkovets -Àlex Magaz Graça - -The following people (in no particular order) contributed (patches and translations) to GnuCash Android: -Christian Stimming -Cristian Marchi -Menelaos Maglis -Kjell Thomas Pedersen -Alexander Galanin -Jorge Martínez López -Israel Buitron -Geert Janssens -Nicolas Barranger -Sigurd Gartmann -Pedro Abel -windwarrior -Alex Lei -Matthew Hague -Spanti Nicola -Jesse Shieh -Terry Chung -Caesar Wirth -Alceu Rodrigues Neto diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 000000000..0ce07a1d1 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,34 @@ +GnuCash for Android is a community effort which is made possible by the contributions of +several different people. +Appreciation goes to Muslim Chochlov and the to whole GnuCash community for guiding the +project through the early phases (as Google Summer of Code project 2012) and providing valuable feedback. + +### Core Developers: +* Ngewi Fet - Project maintainer +* Yongxin Wang +* Oleksandr Tyshkovets +* Àlex Magaz Graça + +### Other Contributors +The following (incomplete list of) people (in no particular order) contributed (patches and translations) to GnuCash Android: +* Christian Stimming +* Cristian Marchi +* Menelaos Maglis +* Kjell Thomas Pedersen +* Alexander Galanin +* Jorge Martínez López +* Israel Buitron +* Geert Janssens +* Nicolas Barranger +* Sigurd Gartmann +* Pedro Abel +* windwarrior +* Alex Lei +* Matthew Hague +* Spanti Nicola +* Jesse Shieh +* Terry Chung +* Caesar Wirth +* Alceu Rodrigues Neto + +Please visit https://crowdin.com/project/gnucash-android for a more complete list of translation contributions \ No newline at end of file diff --git a/README.md b/README.md index 71d914201..13e89dc12 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,8 @@ It will build the project for you and install it to the connected Android device The app is configured to allow you to install a development and production version in parallel on your device. ### With Android Studio -The easiest way to build is to install [Android Studio](https://developer.android.com/sdk/index.html) v1.+ -with [Gradle](https://www.gradle.org/) v2.4. +The easiest way to build is to install [Android Studio](https://developer.android.com/sdk/index.html) v2.+ +with [Gradle](https://www.gradle.org/) v2.10 Once installed, then you can import the project into Android Studio: 1. Open `File` @@ -85,7 +85,7 @@ Google+ Community: https://plus.google.com/communities/104728406764752407046 There are several ways you could contribute to the development. * One way is providing translations for locales which are not yet available, or improving translations. -See this [blog post](http://www.codinguser.com/2012/09/gnucash-for-android-beta-2-lost-in-translation/) for some guidelines. +Please visit [CrowdIn](https://crowdin.com/project/gnucash-android) in order to update and create new translations * You could as well contribute code, fixing bugs, new features or automated tests. Pull requests are always welcome. Take a look at the [bug tracker](https://github.com/codinguser/gnucash-android/issues?state=open) diff --git a/app/build.gradle b/app/build.gradle index f4bf0726c..0c8bf59cb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,13 +1,14 @@ -import java.text.SimpleDateFormat import org.apache.tools.ant.taskdefs.condition.Os +import java.text.SimpleDateFormat + apply plugin: 'com.android.application' apply plugin: 'io.fabric' def versionMajor = 2 def versionMinor = 1 def versionPatch = 0 -def versionBuild = 5 +def versionBuild = 6 def buildTime() { def df = new SimpleDateFormat("yyyyMMdd HH:mm 'UTC'")