Release 0.5.0
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TAC7sLVqfKmY6rsTLXzNgk
This commit is contained in:
13
CHANGELOG.md
13
CHANGELOG.md
@@ -10,6 +10,8 @@ The long form, with what was wrong before and how it was found, is in
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.5.0] - 2026-09-12
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- A Patreon token pasted into Add feed, or a creator's RSS link without `&show=`, becomes a folder
|
- A Patreon token pasted into Add feed, or a creator's RSS link without `&show=`, becomes a folder
|
||||||
@@ -38,6 +40,8 @@ The long form, with what was wrong before and how it was found, is in
|
|||||||
- Nothing animates when your system asks for reduced motion.
|
- Nothing animates when your system asks for reduced motion.
|
||||||
- The pages are about 90 KB smaller: the icon is served once instead of written into each.
|
- The pages are about 90 KB smaller: the icon is served once instead of written into each.
|
||||||
- A web token generated for a new install is 64 characters instead of 32.
|
- A web token generated for a new install is 64 characters instead of 32.
|
||||||
|
- The README is a short overview of what ipx does and how to run it, and points into `docs/` for
|
||||||
|
the rest. It still described the layout from before 0.4.0.
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
@@ -56,7 +60,6 @@ The long form, with what was wrong before and how it was found, is in
|
|||||||
- "1 items" reads "1 item".
|
- "1 items" reads "1 item".
|
||||||
- A selected feed without art no longer loses its initials tile in Dark and Light.
|
- A selected feed without art no longer loses its initials tile in Dark and Light.
|
||||||
- The player shows the feed's initials when there is no art, not the episode's.
|
- The player shows the feed's initials when there is no art, not the episode's.
|
||||||
|
|
||||||
- Turning on Allow explicit, or changing keywords or auto-download, brings back what those settings
|
- Turning on Allow explicit, or changing keywords or auto-download, brings back what those settings
|
||||||
had skipped on the feed's next scan. Before, an item was judged once, when first seen, and a
|
had skipped on the feed's next scan. Before, an item was judged once, when first seen, and a
|
||||||
skipped one stayed skipped whatever you changed.
|
skipped one stayed skipped whatever you changed.
|
||||||
@@ -66,11 +69,6 @@ The long form, with what was wrong before and how it was found, is in
|
|||||||
- A new feed no longer takes the name of one you removed earlier and shows that feed's old items.
|
- A new feed no longer takes the name of one you removed earlier and shows that feed's old items.
|
||||||
Re-adding the same feed still gets its old name, and its history, back.
|
Re-adding the same feed still gets its old name, and its history, back.
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- The README is a short overview of what ipx does and how to run it, and points into `docs/` for
|
|
||||||
the rest. It still described the layout from before 0.4.0.
|
|
||||||
|
|
||||||
## [0.4.0] - 2026-09-11
|
## [0.4.0] - 2026-09-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -260,7 +258,8 @@ The long form, with what was wrong before and how it was found, is in
|
|||||||
- Torrent enclosures through librqbit, seeding to a ratio or a time, with a stall timeout.
|
- Torrent enclosures through librqbit, seeding to a ratio or a time, with a stall timeout.
|
||||||
- `ipx import` and `ipx export` for OPML, and systemd units in `contrib/`.
|
- `ipx import` and `ipx export` for OPML, and systemd units in `contrib/`.
|
||||||
|
|
||||||
[unreleased]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.4.0...main
|
[unreleased]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.5.0...main
|
||||||
|
[0.5.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.4.0...v0.5.0
|
||||||
[0.4.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.3.0...v0.4.0
|
[0.4.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.3.0...v0.4.0
|
||||||
[0.3.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.2.0...v0.3.0
|
[0.3.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.2.0...v0.3.0
|
||||||
[0.2.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.1.0...v0.2.0
|
[0.2.0]: https://git.sdf1.net/rays/ipodderx-rs/compare/v0.1.0...v0.2.0
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1605,7 +1605,7 @@ checksum = "791930b43c0d5973160d90a8f3894509f2b273430f5c5c73b668636d0287c5c0"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ipx"
|
name = "ipx"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ipx"
|
name = "ipx"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
Reference in New Issue
Block a user