Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Sep 30, 2023
1 parent 8ae71fb commit 3fc9cf5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
## 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

---
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -89,4 +89,4 @@
"wait-on": "5.3.0",
"worker-loader": "^3.0.8"
}
}
}
2 changes: 1 addition & 1 deletion src/electron/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3fc9cf5

Please sign in to comment.