Skip to content

Commit 2986631

Browse files
committed
Prepare release v0.2.1
1 parent 184d32d commit 2986631

4 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
77
## [Unreleased]
88
- Nothing yet.
99

10+
## [0.2.1] - 2025-10-13
11+
### Changed
12+
- Inline previews now detect Kitty support at runtime, falling back to the legacy image placeholder while offering an external mpv launch when graphics are unavailable.
13+
- Saving full-resolution media includes the original Reddit-hosted MP4 assets alongside images.
14+
### Fixed
15+
- Mouse capture is disabled on exit so terminals stop receiving stray pointer escape sequences after quitting.
16+
1017
## [0.2.0] - 2025-10-13
1118
### Added
1219
- Inline Kitty/mpv video playback for Reddit-hosted posts directly in the content pane, launched on demand from the actions menu with a configurable `REDDIX_MPV_PATH` override.

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reddix"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Reddix - Reddit, refined for the terminal."

src/update.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,13 +258,13 @@ mod tests {
258258
#[test]
259259
fn forced_update_returns_info_when_version_is_newer() {
260260
let _guard = guard_env();
261-
env::set_var(FORCE_VERSION_ENV, "0.2.0");
262-
env::set_var(FORCE_URL_ENV, "https://example.com/releases/0.2.0");
261+
env::set_var(FORCE_VERSION_ENV, "0.2.1");
262+
env::set_var(FORCE_URL_ENV, "https://example.com/releases/0.2.1");
263263
let current = Version::parse("0.1.0").unwrap();
264264
let info = forced_update(&current).unwrap().unwrap();
265-
assert_eq!(info.version, Version::parse("0.2.0").unwrap());
266-
assert_eq!(info.release_url, "https://example.com/releases/0.2.0");
267-
assert_eq!(info.tag, "v0.2.0");
265+
assert_eq!(info.version, Version::parse("0.2.1").unwrap());
266+
assert_eq!(info.release_url, "https://example.com/releases/0.2.1");
267+
assert_eq!(info.tag, "v0.2.1");
268268
env::remove_var(FORCE_VERSION_ENV);
269269
env::remove_var(FORCE_URL_ENV);
270270
}

0 commit comments

Comments
 (0)