Skip to content

Commit cc5a632

Browse files
committed
v0.6.4
1 parent 814166a commit cc5a632

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

CHANGELOG.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# Server: v0.6.3-next + WebUI: r944
1+
# Server: v0.6.4 + WebUI: r946
22
## TL;DR
3-
- N/A
3+
- No new major features
4+
- Bug fixes and changes for packaging
5+
- Documentation changes
46

57
## Tachidesk-Server Changelog
68
- (r1087) v0.6.3 (by @AriaMoradi)
@@ -15,10 +17,28 @@
1517
- (r1096) document all endpoints ([#350](https://github.com/Suwayomi/Tachidesk-Server/pull/350) by @Syer10)
1618
- (r1097) fix copymanga ([#354](https://github.com/Suwayomi/Tachidesk-Server/pull/354) by @AriaMoradi)
1719
- (r1098) fix formatting by kotlinter (by @AriaMoradi)
20+
- (r1099) bump WebUI (by @AriaMoradi)
21+
- (r1100) fix WebUI release name (by @AriaMoradi)
22+
- (r1101) Fix documentation errors ([#358](https://github.com/Suwayomi/scripts/pull/358) by @Syer10)
23+
- (r1102) Docs improvements ([#359](https://github.com/Suwayomi/scripts/pull/359) by @Syer10)
24+
- (r1103) Add linux-all.tar.gz & systemd service ([#366](https://github.com/Suwayomi/scripts/pull/366)) [email protected]
25+
- (r1104) Publish to Windows Package Managar (WinGet [#369](https://github.com/Suwayomi/scripts/pull/369)) [email protected]
26+
- (r1105) Refactor scripts ([#370](https://github.com/Suwayomi/scripts/pull/370)) [email protected]
27+
- (r1106) Run workflow jobs toghether ([#371](https://github.com/Suwayomi/scripts/pull/371)) [email protected]
28+
- (r1107) Update gradle action ([#372](https://github.com/Suwayomi/scripts/pull/372)) [email protected]
29+
- (r1108) Improve DocumentationDsl, bugfix default values and add queryParams ([#378](https://github.com/Suwayomi/scripts/pull/378) by @Syer10)
30+
- (r1109) Tidy up bundler script ([#380](https://github.com/Suwayomi/scripts/pull/380)) [email protected]
31+
- (r1110) Replace linux-all with linux-assets ([#381](https://github.com/Suwayomi/scripts/pull/381)) [email protected]
32+
- (r1111) Rename every instance of Tachidesk jar to Tachdidesk-Server.jar ([#384](https://github.com/Suwayomi/scripts/pull/384) by @AriaMoradi)
33+
- (r1112) Fix mistakes from #384 ([#385](https://github.com/Suwayomi/scripts/pull/385) by @AriaMoradi)
1834

1935
## Tachidesk-WebUI Changelog
2036
- (r943) fix default width ([#171](https://github.com/Suwayomi/Tachidesk-WebUI/pull/171) by @Robonau)
2137
- (r944) added an update checker button for library ([#172](https://github.com/Suwayomi/Tachidesk-WebUI/pull/172) by @infix)
38+
- (r945) fix download queue delete button ([#176](https://github.com/Suwayomi/Tachidesk-WebUI/pull/176) by @Kreach37)
39+
- (r946) fix mangadex filters ([#177](https://github.com/Suwayomi/Tachidesk-WebUI/pull/177) by @Robonau)
40+
41+
2242

2343
# Server: v0.6.3 + WebUI: r942
2444
## TL;DR

buildSrc/src/main/kotlin/Constants.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ const val kotlinVersion = "1.6.10"
1212
const val MainClass = "suwayomi.tachidesk.MainKt"
1313

1414
// should be bumped with each stable release
15-
val tachideskVersion = System.getenv("ProductVersion") ?: "v0.6.3"
15+
val tachideskVersion = System.getenv("ProductVersion") ?: "v0.6.4"
1616

17-
val webUIRevisionTag = System.getenv("WebUIRevision") ?: "r944"
17+
val webUIRevisionTag = System.getenv("WebUIRevision") ?: "r946"
1818
val sorayomiRevisionTag = System.getenv("SorayomiRevision") ?: "0.1.5"
1919

2020
// counts commits on the master branch

0 commit comments

Comments
 (0)