Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format

## [Unreleased]

## [0.6.0] - 2026-05-07

Word-level Media Overlay sync (karaoke-style highlight-along-with-audio in compatible reading systems) and a major first-run UX overhaul (`dpub doctor`, `dpub setup --whisper-model <size>`, auto-discovery, `scripts/build.sh`, optional `--install` for missing tools).

### Added

- **First-run UX overhaul.** Three new pieces close the path from `git clone` to a working `dpub convert --transcribe ...` without manual treasure hunts:
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
]

[workspace.package]
version = "0.5.0"
version = "0.6.0"
edition = "2024"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
Expand Down
10 changes: 5 additions & 5 deletions crates/dpub-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ metal = ["dpub-convert/metal"]
cuda = ["dpub-convert/cuda"]

[dependencies]
dpub-audio = { path = "../dpub-audio", version = "0.5.0" }
dpub-core = { path = "../dpub-core", version = "0.5.0" }
dpub-convert = { path = "../dpub-convert", version = "0.5.0" }
dpub-meta = { path = "../dpub-meta", version = "0.5.0" }
dpub-validate = { path = "../dpub-validate", version = "0.5.0" }
dpub-audio = { path = "../dpub-audio", version = "0.6.0" }
dpub-core = { path = "../dpub-core", version = "0.6.0" }
dpub-convert = { path = "../dpub-convert", version = "0.6.0" }
dpub-meta = { path = "../dpub-meta", version = "0.6.0" }
dpub-validate = { path = "../dpub-validate", version = "0.6.0" }
sha2 = { workspace = true }
clap = { workspace = true }
anyhow = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions crates/dpub-convert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ metal = ["dpub-whisper/metal"]
cuda = ["dpub-whisper/cuda"]

[dependencies]
dpub-audio = { path = "../dpub-audio", version = "0.5.0" }
dpub-core = { path = "../dpub-core", version = "0.5.0" }
dpub-meta = { path = "../dpub-meta", version = "0.5.0" }
dpub-util = { path = "../dpub-util", version = "0.5.0" }
dpub-whisper = { path = "../dpub-whisper", version = "0.5.0" }
epub3-writer = { path = "../epub3-writer", version = "0.5.0" }
dpub-audio = { path = "../dpub-audio", version = "0.6.0" }
dpub-core = { path = "../dpub-core", version = "0.6.0" }
dpub-meta = { path = "../dpub-meta", version = "0.6.0" }
dpub-util = { path = "../dpub-util", version = "0.6.0" }
dpub-whisper = { path = "../dpub-whisper", version = "0.6.0" }
epub3-writer = { path = "../epub3-writer", version = "0.6.0" }
thiserror = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/dpub-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "DAISY 2.02 parser and in-memory model"
workspace = true

[dependencies]
dpub-util = { path = "../dpub-util", version = "0.5.0" }
dpub-util = { path = "../dpub-util", version = "0.6.0" }
quick-xml = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
2 changes: 1 addition & 1 deletion crates/dpub-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ thiserror = { workspace = true }
which = { workspace = true }

[dev-dependencies]
epub3-writer = { path = "../epub3-writer", version = "0.5.0" }
epub3-writer = { path = "../epub3-writer", version = "0.6.0" }
2 changes: 1 addition & 1 deletion crates/epub3-writer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Builder and serialiser for accessible EPUB 3 publications with Me
workspace = true

[dependencies]
dpub-util = { path = "../dpub-util", version = "0.5.0" }
dpub-util = { path = "../dpub-util", version = "0.6.0" }
zip = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
Expand Down
Loading