Skip to content

Commit

Permalink
Update version to 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
syt0r committed Jan 31, 2025
1 parent 0073197 commit 77175ef
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img src="preview_assets//inkscape_icon.svg" height=120 style="border-radius: 20px;">

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

</div>

Expand Down Expand Up @@ -51,17 +51,18 @@ Repository with dictionary data and parsers here: [Kanji-Dojo-Data](https://gith
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)
2. [Google Play](https://play.google.com/store/apps/details?id=ua.syt0r.kanji)

### MacOS
### Desktop

#### Windows
- Download `.msi` installer from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases)
#### Mac
1. Download `.dmg` installer from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases) for your platform
- `kanji-dojo-arm-*.dmg` for Apple Silicon
- `kanji-dojo-intel-*.dmg` for devices with older Intel CPU
- `Kanji Dojo-arm-*.dmg` for Apple Silicon
- `Kanji Dojo-intel-*.dmg` for devices with older Intel CPU
2. Install the app
- Go to `Privacy & Security` screen in system settings and click on `Open Anyway` button under security section for `Kanji Dojo.app`

### Windows & Linux
1. Install Java 17 or higher for your platform
2. Download jar from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases) for your platform
3. Run downloaded jar with double click or use command ```java -jar <filename>.jar```
#### Linux
- Download `.AppImage` executable from [Github Releases](https://github.com/syt0r/Kanji-Dojo/releases)

## Version comparison
| Google Play | F-Droid | Desktop |
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/AppVersion.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
object AppVersion {

const val versionCode = 2140
const val versionCode = 2150

const val versionName = "2.1.4"
const val versionName = "2.1.5"

// Requires 3 numbers
const val desktopAppVersion = versionName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ fun VersionChangeDialog(
LazyColumn(
modifier = Modifier.weight(1f).fillMaxWidth()
) {
version("2.1.5", LocalDate(2025,1,31)) {
append(
"""
- Updated installers for Windows and Linux, now it's not required to have Java installed
- Renamed executable for MacOS, please manually delete the old `kanji-dojo` app, tha app name is `Kanji Dojo` now
- Fixed a sync issue with incorrectly applied timestamp after downloading data from the cloud
""".trimIndent()
)
}
version("2.1.4", LocalDate(2025, 1, 17)) {
append(
"""
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelog/2150.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Updated installers for Windows and Linux, now it's not required to have Java installed
- Renamed executable for MacOS, please manually delete the old `kanji-dojo` app, tha app name is `Kanji Dojo` now
- Fixed a sync issue with incorrectly applied timestamp after downloading data from the cloud

0 comments on commit 77175ef

Please sign in to comment.