Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanWang committed Jan 6, 2019
1 parent 52e1402 commit eb6f8f2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
7 changes: 1 addition & 6 deletions app/src/main/kotlin/com/pitchedapps/frost/StartActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.util.ArrayList
import java.util.IllegalFormatException

/**
* Created by Allan Wang on 2017-05-28.
Expand Down Expand Up @@ -95,11 +94,7 @@ class StartActivity : KauBaseActivity() {
showInvalidView(R.string.error_webview)

private fun showInvalidSdkView() {
val text = try {
String.format(string(R.string.error_sdk), Build.VERSION.SDK_INT)
} catch (e: IllegalFormatException) {
string(R.string.error_sdk)
}
val text = String.format(string(R.string.error_sdk), Build.VERSION.SDK_INT)
showInvalidView(text)
}

Expand Down
9 changes: 6 additions & 3 deletions app/src/main/res/xml/frost_changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@
<item text="" />
-->

<version title="v2.2.1" />
<item text="Update theme" />
<item text="Update translations" />
<item text="Fix misc bugs" />
<item text="Improve startup speed" />

<version title="v2.2.0" />
<item text="Rewrite a lot of internal logic to optimize loading" />
<item text="Change default user agent to new android version, previously a desktop user agent" />
<item text="Add back group management page when clicking the respective notification" />
<item text="Update theme, including like button, menu icon, and material light bugs" />
<item text="Fix login problem when one account is signed in." />
<item text="Fix some problems when exiting the image viewer" />
<item text="" />
<item text="" />
<item text="" />

<version title="v2.1.2" />
<item text="Fix message notifications with just one other user" />
Expand Down
6 changes: 6 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v2.2.1
* Update theme
* Update translations
* Fix misc bugs
* Improve startup speed

## v2.2.0
* Rewrite a lot of internal logic to optimize loading
* Change default user agent to new android version, previously a desktop user agent
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro
APP_ID=Frost
APP_GROUP=com.pitchedapps

KAU=72d6461
KAU=4.0.0-alpha02
KOTLIN=1.3.11

# https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google
Expand Down

0 comments on commit eb6f8f2

Please sign in to comment.