Update version and changelog

pull/1086/head
Alex Baker 4 years ago
parent 9f760c6bfb
commit 87ae44fa1a

@ -1,11 +1,11 @@
Change Log
---
=======
### 10.0 (2020-08-14)
### 10.0 (2020-08-18)
🚧 Currently in alpha ([signup here](https://www.reddit.com/r/tasks/comments/i3onqr/100_alpha/)) 🚧
🚧 Currently in beta ([signup here](https://www.reddit.com/r/tasks/comments/i3onqr/100_alpha/)) 🚧
* PRO: DAVx⁵ support (alpha requires [custom DAVx⁵ build](https://www.reddit.com/r/tasks/comments/i3onqr/100_alpha/))
* PRO: DAVx⁵ support (beta requires [custom DAVx⁵ build](https://www.reddit.com/r/tasks/comments/i3onqr/100_alpha/))
* PRO: EteSync client support
* [ToDo Agenda](https://play.google.com/store/apps/details?id=org.andstatus.todoagenda) integration
* Changed backstack behavior to follow Android conventions
@ -20,6 +20,7 @@ Change Log
* Bengali - @Oymate
* Brazilian Portuguese - Pedro Lucas Porcellis
* Chinese - WH Julie
* Chuvash - İlle
* Czech - @vitSkalicky, Radek Řehořek
* Dutch - @fvbommel
* Finnish - J. Lavoie

@ -44,7 +44,7 @@ android {
defaultConfig {
testApplicationId = "org.tasks.test"
applicationId = "org.tasks"
versionCode = 100004
versionCode = 100005
versionName = "10.0"
targetSdkVersion(Versions.targetSdk)
minSdkVersion(Versions.minSdk)

@ -69,8 +69,6 @@ class TaskDao @Inject constructor(
suspend fun getChildren(id: Long): List<Long> = taskDao.getChildren(id)
suspend fun getChildren(ids: List<Long>): List<Long> = taskDao.getChildren(ids)
suspend fun setCollapsed(id: Long, collapsed: Boolean) = taskDao.setCollapsed(id, collapsed)
suspend fun setCollapsed(preferences: Preferences, filter: Filter, collapsed: Boolean) =

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="changelog">
<item>🚧 10.0 ALPHA 4 🚧</item>
<item>PRO: DAVx⁵ support (alpha requires custom DAVx⁵ build)</item>
<item>🚧 10.0 BETA 1 🚧</item>
<item>PRO: DAVx⁵ support (beta requires custom DAVx⁵ build)</item>
<item>PRO: EteSync client support</item>
<item>ToDo Agenda integration</item>
<item>Changed backstack behavior to follow Android conventions</item>

@ -1,6 +1,6 @@
android.enableJetifier=true
android.useAndroidX=true
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=512m -Dkotlin.daemon.jvm.options="-Xmx2g" -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.jvmargs=-Xmx4g -Dkotlin.daemon.jvm.options="-Xmx2g" -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
android.databinding.incremental=true

Loading…
Cancel
Save