Skip to content

Commit 5c629e2

Browse files
committed
Bump up version to 0.5.1
1 parent fb5cc92 commit 5c629e2

7 files changed

Lines changed: 15 additions & 8 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.5.1] - 2026-05-05
11+
12+
### Changed
13+
14+
- Scrolling through long book lists is noticeably smoother. Off-screen rows now skip layout and paint via `content-visibility`, thumbnail images reserve space up-front so image loads no longer reflow rows, hover transitions on row controls are suppressed while actively scrolling, and the thumbnail observer no longer scans the full library on every callback.
15+
1016
## [0.5.0] - 2026-05-03
1117

1218
### Changed
@@ -315,7 +321,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
315321

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

318-
[Unreleased]: https://github.com/zonuexe/riida/compare/v0.5.0...HEAD
324+
[Unreleased]: https://github.com/zonuexe/riida/compare/v0.5.1...HEAD
325+
[0.5.1]: https://github.com/zonuexe/riida/compare/v0.5.0...v0.5.1
319326
[0.5.0]: https://github.com/zonuexe/riida/compare/v0.4.3...v0.5.0
320327
[0.4.3]: https://github.com/zonuexe/riida/compare/v0.4.2...v0.4.3
321328
[0.4.2]: https://github.com/zonuexe/riida/compare/v0.4.1...v0.4.2

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.5.0",
4+
"version": "0.5.1",
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.5.0"
3+
version = "0.5.1"
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.5.0",
4+
"version": "0.5.1",
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
@@ -450,7 +450,7 @@ let activeReadingPosition: ReadingPosition | null = null;
450450
let lastAppConfig: AppConfigPayload | null = null;
451451
let cachedHomeDir: string | null = null;
452452
let cachedAppName = "riida";
453-
let cachedAppVersion = "0.5.0";
453+
let cachedAppVersion = "0.5.1";
454454
const buildDate = __BUILD_DATE__;
455455
let cachedLicenseText = "Loading license text...";
456456
let cachedThirdPartyRustText = "Loading Rust notices...";

0 commit comments

Comments
 (0)