Skip to content

Commit 77175ef

Browse files
committed
Update version to 2.1.5
1 parent 0073197 commit 77175ef

4 files changed

Lines changed: 24 additions & 11 deletions

File tree

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img src="preview_assets//inkscape_icon.svg" height=120 style="border-radius: 20px;">
44

55
# Kanji Dojo
6-
![Version Badge](https://img.shields.io/badge/version-v2.1.4-blue?style=for-the-badge&labelColor=ffffff&color=ff5555)
6+
![Version Badge](https://img.shields.io/badge/version-v2.1.5-blue?style=for-the-badge&labelColor=ffffff&color=ff5555)
77

88
</div>
99

@@ -51,17 +51,18 @@ Repository with dictionary data and parsers here: [Kanji-Dojo-Data](https://gith
5151
1. Available in [F-Droid](https://f-droid.org/en/packages/ua.syt0r.kanji.fdroid/), the same version is published in [GitHub Releases](https://github.com/syt0r/Kanji-Dojo/releases/latest)
5252
2. [Google Play](https://play.google.com/store/apps/details?id=ua.syt0r.kanji)
5353

54-
### MacOS
54+
### Desktop
55+
56+
#### Windows
57+
- Download `.msi` installer from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases)
58+
#### Mac
5559
1. Download `.dmg` installer from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases) for your platform
56-
- `kanji-dojo-arm-*.dmg` for Apple Silicon
57-
- `kanji-dojo-intel-*.dmg` for devices with older Intel CPU
60+
- `Kanji Dojo-arm-*.dmg` for Apple Silicon
61+
- `Kanji Dojo-intel-*.dmg` for devices with older Intel CPU
5862
2. Install the app
5963
- Go to `Privacy & Security` screen in system settings and click on `Open Anyway` button under security section for `Kanji Dojo.app`
60-
61-
### Windows & Linux
62-
1. Install Java 17 or higher for your platform
63-
2. Download jar from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases) for your platform
64-
3. Run downloaded jar with double click or use command ```java -jar <filename>.jar```
64+
#### Linux
65+
- Download `.AppImage` executable from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases)
6566

6667
## Version comparison
6768
| Google Play | F-Droid | Desktop |

buildSrc/src/main/kotlin/AppVersion.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
object AppVersion {
22

3-
const val versionCode = 2140
3+
const val versionCode = 2150
44

5-
const val versionName = "2.1.4"
5+
const val versionName = "2.1.5"
66

77
// Requires 3 numbers
88
const val desktopAppVersion = versionName

core/src/commonMain/kotlin/ua/syt0r/kanji/presentation/dialog/VersionChangeDialog.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ fun VersionChangeDialog(
4242
LazyColumn(
4343
modifier = Modifier.weight(1f).fillMaxWidth()
4444
) {
45+
version("2.1.5", LocalDate(2025,1,31)) {
46+
append(
47+
"""
48+
- Updated installers for Windows and Linux, now it's not required to have Java installed
49+
- Renamed executable for MacOS, please manually delete the old `kanji-dojo` app, tha app name is `Kanji Dojo` now
50+
- Fixed a sync issue with incorrectly applied timestamp after downloading data from the cloud
51+
""".trimIndent()
52+
)
53+
}
4554
version("2.1.4", LocalDate(2025, 1, 17)) {
4655
append(
4756
"""
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Updated installers for Windows and Linux, now it's not required to have Java installed
2+
- Renamed executable for MacOS, please manually delete the old `kanji-dojo` app, tha app name is `Kanji Dojo` now
3+
- Fixed a sync issue with incorrectly applied timestamp after downloading data from the cloud

0 commit comments

Comments
 (0)