diff options
author | Allan Wang <me@allanwang.ca> | 2019-06-07 14:28:47 -0400 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-06-07 14:28:47 -0400 |
commit | eb0520b4c2b796dda4b11be40bcb2d573ac01c2d (patch) | |
tree | 2228e607efc3917ea8c38f83dfff21c4ea3fe5dd | |
parent | 6ab827a09022246bf2cf68460fdd442878f2bf5e (diff) | |
parent | dc409d14c26a9cb6be4eecfb59e56f37207572c8 (diff) | |
download | frost-eb0520b4c2b796dda4b11be40bcb2d573ac01c2d.tar.gz frost-eb0520b4c2b796dda4b11be40bcb2d573ac01c2d.tar.bz2 frost-eb0520b4c2b796dda4b11be40bcb2d573ac01c2d.zip |
Merge branch 'dev' of github.com:AllanWang/Frost-for-Facebook into dev
-rw-r--r-- | app/src/main/play/en-US/whatsnew | 9 | ||||
-rw-r--r-- | build.gradle | 18 | ||||
-rw-r--r-- | gradle.properties | 2 |
3 files changed, 25 insertions, 4 deletions
diff --git a/app/src/main/play/en-US/whatsnew b/app/src/main/play/en-US/whatsnew index 9f440f8b..3c3943fb 100644 --- a/app/src/main/play/en-US/whatsnew +++ b/app/src/main/play/en-US/whatsnew @@ -1 +1,8 @@ -A full changelog is available in the app, or at https://github.com/AllanWang/Frost-for-Facebook/blob/dev/docs/Changelog.md.
\ No newline at end of file +v2.3.0 + +* Converted internals of Facebook data storage; auto migration will only work from 2.2.x to 2.3.x +* Added notification widget +* Update theme +* Update translations +* Add fingerprint unlock screen +* Fix messenger redirect
\ No newline at end of file diff --git a/build.gradle b/build.gradle index 33031d0b..7ccde02f 100644 --- a/build.gradle +++ b/build.gradle @@ -20,14 +20,28 @@ buildscript { wrapper.setDistributionType(Wrapper.DistributionType.ALL) } -apply plugin: 'ca.allanwang.kau' +apply plugin: "ca.allanwang.kau" task clean(type: Delete) { delete rootProject.buildDir } task generateChangelogMd() { - kauChangelog.generate("$project.rootDir/app/src/main/res/xml/frost_changelog.xml") + def changelog = kauChangelog.generate("${project.rootDir}/app/src/main/res/xml/frost_changelog.xml") + // If we have no changelog, something is wrong + def entry = changelog[0] + def whatsNewFile = new File("${project.rootDir}/app/src/main/play/en-US/whatsnew") + if (!whatsNewFile.exists()) { + // Throw exceptions so that moving this file will require us to update the script + throw new RuntimeException("Whatsnew file not found") + } + whatsNewFile.withWriter { writer -> + writer.write(entry.version) + writer.write("\n") + entry.items.each { + writer.write("\n* ${it}") + } + } } task fullRelease(type: GradleBuild) { diff --git a/gradle.properties b/gradle.properties index 45ceaddf..b32725c3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ org.gradle.daemon = true APP_ID=Frost APP_GROUP=com.pitchedapps -KAU=4.0.0 +KAU=c6a5b4e KOTLIN=1.3.31 # https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google |