diff --git a/CHANGELOG.md b/CHANGELOG.md index 655b6e33..e4f19eb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ -# Server: v0.5.0-r918 + WebUI: r803 +# Server: v0.5.1 + WebUI: r803 ## TL;DR +- Loading sources' manga list is at least twice as fast +- Added support for Tachiyomi's Local source +- Added BasicAuth support, now you can protect your Tachidesk instance if you are running it on a public server +- Added ability to turn off cache for image requests ## Tachidesk-Server diff --git a/buildSrc/src/main/kotlin/Constants.kt b/buildSrc/src/main/kotlin/Constants.kt index 9ac83cf3..c8ff9f16 100644 --- a/buildSrc/src/main/kotlin/Constants.kt +++ b/buildSrc/src/main/kotlin/Constants.kt @@ -12,7 +12,7 @@ const val kotlinVersion = "1.5.30" const val MainClass = "suwayomi.tachidesk.MainKt" // should be bumped with each stable release -val tachideskVersion = System.getenv("ProductVersion") ?: "v0.5.0" +val tachideskVersion = System.getenv("ProductVersion") ?: "v0.5.1" val webUIRevisionTag = System.getenv("WebUIRevision") ?: "r803"