From 3fc9cf527ab26cdc14d50c78ee68d0d186e3a009 Mon Sep 17 00:00:00 2001 From: yami Date: Sat, 30 Sep 2023 16:25:06 +0530 Subject: [PATCH] version bump --- changelog.md | 14 ++++++++++---- package.json | 4 ++-- src/electron/updater.ts | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/changelog.md b/changelog.md index 17e953a..ba63fa8 100644 --- a/changelog.md +++ b/changelog.md @@ -4,13 +4,19 @@ Does not follow semver. ## Added -- auto download updates option. -- show info box if app window is blank for more than 30seconds on start. +- #274 +- #288 - +## Changed + +- electron version to 22.0.1 +- moved items in settings ## Fixed -- #287 +- showing full path in chapter transition screen. +- reader context menu option +- epub next chapter with next page keys at scroll 100% +- incorrect epub elements padding, margin --- diff --git a/package.json b/package.json index 26980ba..2e5ea3a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "yomikiru", "productName": "Yomikiru", - "version": "2.18.3", + "version": "2.18.4", "description": "App to read manga / comic / novel offline on desktop", "main": ".webpack/main", "author": { @@ -89,4 +89,4 @@ "wait-on": "5.3.0", "worker-loader": "^3.0.8" } -} +} \ No newline at end of file diff --git a/src/electron/updater.ts b/src/electron/updater.ts index e5df257..977029b 100644 --- a/src/electron/updater.ts +++ b/src/electron/updater.ts @@ -63,7 +63,7 @@ const checkForUpdate = async ( `Current Version : ${currentAppVersion.join(".")}\n` + `Latest Version : ${latestVersion.join(".")}` + (latestVersion[0] === currentAppVersion[0] && latestVersion[1] === currentAppVersion[1] - ? `\n\nTo skip check for minor updates, enable "skip minor update" in settings` + ? `\n\nTo skip check for minor updates, enable "skip minor update" in settings.\nYou can also enable "auto download".` : ""), buttons: ["Download Now", "Download and show Changelog", "Show Changelog", "Download Later"], cancelId: 3,