-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Dark-Alex-17/rc/v0.2.0-address-community-…
…comments Rc/v0.2.0 address community comments
- Loading branch information
Showing
54 changed files
with
906 additions
and
134 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[package] | ||
name = "managarr" | ||
version = "0.1.5" | ||
version = "0.2.0" | ||
authors = ["Alex Clarke <[email protected]>"] | ||
description = "A TUI and CLI to manage your Servarrs" | ||
keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui"] | ||
keywords = ["managarr", "ratatui", "dashboard", "servarr", "tui"] | ||
documentation = "https://github.com/Dark-Alex-17/managarr" | ||
repository = "https://github.com/Dark-Alex-17/managarr" | ||
homepage = "https://github.com/Dark-Alex-17/managarr" | ||
|
@@ -38,7 +38,7 @@ tokio = { version = "1.36.0", features = ["full"] } | |
tokio-util = "0.7.8" | ||
ratatui = { version = "0.28.0", features = ["all-widgets"] } | ||
urlencoding = "2.1.2" | ||
clap = { version = "4.5.20", features = ["derive", "cargo"] } | ||
clap = { version = "4.5.20", features = ["derive", "cargo", "env"] } | ||
clap_complete = "4.5.33" | ||
itertools = "0.13.0" | ||
ctrlc = "3.4.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ To see all available commands, simply run `managarr --help`: | |
|
||
```shell | ||
$ managarr --help | ||
managarr 0.1.3 | ||
managarr 0.1.5 | ||
Alex Clarke <[email protected]> | ||
|
||
A TUI and CLI to manage your Servarrs | ||
|
@@ -127,7 +127,6 @@ Commands: | |
|
||
Options: | ||
--config <CONFIG> The Managarr configuration file to use | ||
--disable-terminal-size-checks Disable the terminal size checks | ||
-h, --help Print help | ||
-V, --version Print version | ||
``` | ||
|
@@ -159,7 +158,6 @@ Commands: | |
|
||
Options: | ||
--config <CONFIG> The Managarr configuration file to use | ||
--disable-terminal-size-checks Disable the terminal size checks | ||
-h, --help Print help | ||
``` | ||
|
||
|
@@ -244,6 +242,13 @@ tautulli: | |
use_ssl: false | ||
``` | ||
## Environment Variables | ||
Managarr supports using environment variables on startup so you don't have to always specify certain flags: | ||
| Variable | Description | Equivalent Flag | | ||
| --------------------------------------- | -------------------------------- | -------------------------------- | | ||
| `MANAGARR_CONFIG_FILE` | Set the path to the config file | `--config` | | ||
|
||
## Track My Progress for the Beta release (With Sonarr Support!) | ||
Progress for the beta release can be followed on my [Wekan Board](https://wekan.alexjclarke.com/b/dHoGjBb44MHM9HSv4/managarr) | ||
with all items tagged `Beta`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
coverage: | ||
range: "80..100" | ||
|
||
ignore: | ||
- "**/*_tests.rs" | ||
- "src/ui" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.