Skip to content

Commit

Permalink
chore: prepare for v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Beastwick18 committed Jun 30, 2024
1 parent 97cd3c1 commit 729faa8
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# v0.9.1
## Adds:
- Adds [OSC52](https://www.reddit.com/r/vim/comments/k1ydpn/a_guide_on_how_to_copy_text_from_anywhere/) support for copying
- This is the new default. See [wiki](./docs/clipboard.md) for more information
- Allow copying into multiple X11/Wayland selections
- Adds `home-manager` modules for configuring with nix (see wiki)
- Adds command line options
- `-v/-V/--version` = print version
- `--config=/path/to/config/folder` = change path to config folder
- Adds `password_file` option to qBittorrent and transmission for loading password from disk
- Preview selected theme in theme popup
- Seperate visual mode for add/remove/toggle
- Keybinds `v/V/Ctrl-Space` for add/remove/toggle
- Truncate input when too long using ellipsis in input fields
- Allow for moving through input fields that are long
- Adds `cursor_padding` config option to modify amount of padding when navigating input fields
## Fixes:
- Fix timezone conversion (#22)
- Replaces `cli-clipboard` crate with `arboard` to fix clipboard on X11
- Improves build time in release mode by disabling LTO
- No longer uses proxy for download clients
- Would often break authentication
- Fixes qBittorrent not reading cookies (#23)
- Other notifications will move to fill in gaps left by dismissed notifications
- Shows accurate cursor position when wide unicode characters present in input fields
- No longer panics when deleting wide unicode characters


# v0.9.0
## Adds:
- Ability to interact with application while searching or downloading
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nyaa"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
rust-version = "1.75"
categories = ["command-line-utilities"]
Expand Down Expand Up @@ -56,6 +56,9 @@ path = "src/lib.rs"
[features]
captcha = ["dep:ratatui-image", "dep:image"]

[cargo-features-manager.keep]
image = ["png"]

[target.'cfg(unix)'.dependencies]
nix = { version = "0.29.0", features = ["signal"] }

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- [Proxies](#-proxies)
- [Configuration](#%EF%B8%8F-configuration)
- [Download Client Integration](#download-client-integration)
- [Clipboard]()
- [Clipboard](#-clipboard)
- [Custom Themes](#-custom-themes)
- [Planned Features](#%EF%B8%8F-planned-features)

Expand Down Expand Up @@ -72,6 +72,7 @@ imports = [
]
programs.nyaa.enable = true;
```
Check the [wiki](https://github.com/Beastwick18/nyaa/wiki/Home%E2%80%90manager) for more information

### Windows/Linux Binaries

Expand Down

0 comments on commit 729faa8

Please sign in to comment.