diff --git a/Changelog.md b/Changelog.md index 37fe0d2d4..130eaf76f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,12 +1,21 @@ # Most recent version -## v3.1.2 +## v3.2.0 ``` -- Fixed a crash some users experienced when trying to open a game +A lot of users have been having issues with the current transfer functionality, so I've created a new process which will let you export and save the data wherever you'd like, and then import it on a new device. Hopefully this helps those with longstanding issues of being unable to move to new devices. + +This update also comes with some quality of life fixes: +- No more ads +- No more analytics ``` # Legacy versions +## v3.1.2 +``` +- Fixed a crash some users experienced when trying to open a game +``` + ## v3.1.1 ``` This version contains a bunch of bug fixes! Here's just a few: diff --git a/app/build.gradle b/app/build.gradle index e2668487d..e691ae01d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,8 +5,8 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' def versionMajor = 3 -def versionMinor = 1 -def versionPatch = 2 +def versionMinor = 2 +def versionPatch = 0 android { compileSdkVersion 28 diff --git a/app/src/main/assets/changelog.txt b/app/src/main/assets/changelog.txt index 51d897e05..571213db4 100644 --- a/app/src/main/assets/changelog.txt +++ b/app/src/main/assets/changelog.txt @@ -1,3 +1,10 @@ +v3.2.0 +A lot of users have been having issues with the current transfer functionality, so I've created a new process which will let you export and save the data wherever you'd like, and then import it on a new device. Hopefully this helps those with longstanding issues of being unable to move to new devices. + +This update also comes with some quality of life fixes: +- No more ads +- No more analytics + v3.1.2 - Fixed a crash some users experienced when trying to open a game