Skip to content

Commit 23a96b8

Browse files
committed
Bump up version to 0.2.4
1 parent b19b452 commit 23a96b8

8 files changed

Lines changed: 16 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.4] - 2026-04-17
11+
12+
### Fixed
13+
14+
- macOS Apple Silicon release builds now package successfully again by aligning the bundled Tauri dialog plugin versions.
15+
1016
## [0.2.3] - 2026-04-16
1117

1218
### Added
@@ -180,7 +186,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
180186

181187
- Reading progress counters and page-tracking UI were removed in favor of position restore only.
182188

183-
[Unreleased]: https://github.com/zonuexe/riida/compare/v0.2.3...HEAD
189+
[Unreleased]: https://github.com/zonuexe/riida/compare/v0.2.4...HEAD
190+
[0.2.4]: https://github.com/zonuexe/riida/compare/v0.2.3...v0.2.4
184191
[0.2.3]: https://github.com/zonuexe/riida/compare/v0.2.2...v0.2.3
185192
[0.2.2]: https://github.com/zonuexe/riida/compare/v0.2.1...v0.2.2
186193
[0.2.1]: https://github.com/zonuexe/riida/compare/v0.2.0...v0.2.1

THIRD-PARTY-LICENSES-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
13021302
SOFTWARE.
13031303
```
13041304

1305-
### @tauri-apps/plugin-dialog 2.6.0
1305+
### @tauri-apps/plugin-dialog 2.7.0
13061306

13071307
- License: MIT OR Apache-2.0
13081308
- Authors: Tauri Programme within The Commons Conservancy

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "riida",
33
"private": true,
4-
"version": "0.2.3",
4+
"version": "0.2.4",
55
"description": "Tauri-based local PDF library manager for Dropbox-hosted ebooks",
66
"license": "MPL-2.0",
77
"type": "module",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riida"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Tauri-based local PDF library manager for Dropbox-hosted ebooks"
55
authors = ["zonuexe"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "riida",
4-
"version": "0.2.3",
4+
"version": "0.2.4",
55
"identifier": "me.zonu.riida",
66
"build": {
77
"beforeDevCommand": "npm run dev",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ let activeReadingPosition: ReadingPosition | null = null;
321321
let lastAppConfig: AppConfigPayload | null = null;
322322
let cachedHomeDir: string | null = null;
323323
let cachedAppName = "riida";
324-
let cachedAppVersion = "0.1.2";
324+
let cachedAppVersion = "0.2.4";
325325
const buildDate = __BUILD_DATE__;
326326
let cachedLicenseText = "Loading license text...";
327327
let cachedThirdPartyRustText = "Loading Rust notices...";

0 commit comments

Comments
 (0)