Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
945dc744bc | ||
| 9ee41b7af5 | |||
|
|
a1d6df6b85 | ||
|
|
154f9c624a | ||
| f310db6722 | |||
| 1433ca24cc | |||
| fa8aefe049 | |||
| 88f16f63c2 |
@@ -0,0 +1,22 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.1.2](https://github.com/Dark-Alex-17/managarr/compare/v0.1.1...v0.1.2) - 2024-10-30
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- Updated README to a more polished format for the alpha release
|
||||||
|
|
||||||
|
## [0.1.1](https://github.com/Dark-Alex-17/managarr/compare/v0.1.0...v0.1.1) - 2024-10-30
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- Final dependency update
|
||||||
|
- Updated serde version to get minimal_versions job to pass
|
||||||
|
- Updated strum_macros dependency
|
||||||
Generated
+508
-317
File diff suppressed because it is too large
Load Diff
+6
-6
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "managarr"
|
name = "managarr"
|
||||||
version = "0.1.0"
|
version = "0.1.2"
|
||||||
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
|
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
|
||||||
description = "A TUI and CLI to manage your Servarrs"
|
description = "A TUI and CLI to manage your Servarrs"
|
||||||
keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui"]
|
keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui"]
|
||||||
@@ -17,7 +17,7 @@ exclude = [".github", "CONTRIBUTING.md", "*.log", "tags"]
|
|||||||
anyhow = "1.0.68"
|
anyhow = "1.0.68"
|
||||||
backtrace = "0.3.67"
|
backtrace = "0.3.67"
|
||||||
bimap = { version = "0.6.3", features = ["serde"] }
|
bimap = { version = "0.6.3", features = ["serde"] }
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4.38", features = ["serde"] }
|
||||||
confy = { version = "0.6.0", default-features = false, features = [
|
confy = { version = "0.6.0", default-features = false, features = [
|
||||||
"yaml_conf",
|
"yaml_conf",
|
||||||
] }
|
] }
|
||||||
@@ -27,13 +27,13 @@ human-panic = "1.1.3"
|
|||||||
indoc = "2.0.0"
|
indoc = "2.0.0"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
log4rs = { version = "1.2.0", features = ["file_appender"] }
|
log4rs = { version = "1.2.0", features = ["file_appender"] }
|
||||||
regex = "1.7.1"
|
regex = "1.11.1"
|
||||||
reqwest = { version = "0.11.14", features = ["json"] }
|
reqwest = { version = "0.11.14", features = ["json"] }
|
||||||
serde_yaml = "0.9.16"
|
serde_yaml = "0.9.16"
|
||||||
serde_json = "1.0.91"
|
serde_json = "1.0.91"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0.214", features = ["derive"] }
|
||||||
strum = { version = "0.26.1", features = ["derive"] }
|
strum = { version = "0.26.3", features = ["derive"] }
|
||||||
strum_macros = "0.26.1"
|
strum_macros = "0.26.4"
|
||||||
tokio = { version = "1.36.0", features = ["full"] }
|
tokio = { version = "1.36.0", features = ["full"] }
|
||||||
tokio-util = "0.7.8"
|
tokio-util = "0.7.8"
|
||||||
ratatui = { version = "0.28.0", features = ["all-widgets"] }
|
ratatui = { version = "0.28.0", features = ["all-widgets"] }
|
||||||
|
|||||||
@@ -32,6 +32,9 @@ lint-fix:
|
|||||||
fmt:
|
fmt:
|
||||||
@cargo fmt
|
@cargo fmt
|
||||||
|
|
||||||
|
minimal-versions:
|
||||||
|
@cargo +nightly update -Zdirect-minimal-versions
|
||||||
|
|
||||||
## Analyze for unsafe usage - `cargo install cargo-geiger`
|
## Analyze for unsafe usage - `cargo install cargo-geiger`
|
||||||
analyze:
|
analyze:
|
||||||
@cargo geiger
|
@cargo geiger
|
||||||
|
|||||||
@@ -45,6 +45,14 @@ cargo install managarr
|
|||||||
cargo install --locked managarr
|
cargo install --locked managarr
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Docker
|
||||||
|
Run Managarr as a docker container by mounting your `config.yml` file to `/root/.config/managarr/config.yml`. For example:
|
||||||
|
```shell
|
||||||
|
docker run --rm -it -v ~/.config/managarr:/root/.config/managarr darkalex17/managarr
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also clone this repo and run `make docker` to build a docker image locally and run it using the above command.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
### Radarr
|
### Radarr
|
||||||
@@ -156,16 +164,6 @@ $ managarr radarr list movies | jq '.[] | select(.title == "Ad Astra") | .id'
|
|||||||
277
|
277
|
||||||
```
|
```
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
### Docker
|
|
||||||
Run Managarr as a docker container by mounting your `config.yml` file to `/root/.config/managarr/config.yml`. For example:
|
|
||||||
```shell
|
|
||||||
docker run --rm -it -v ~/.config/managarr:/root/.config/managarr darkalex17/managarr
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also clone this repo and run `make docker` to build a docker image locally and run it using the above command.
|
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
Managarr assumes reasonable defaults to connect to each service (i.e. Radarr is on localhost:7878),
|
Managarr assumes reasonable defaults to connect to each service (i.e. Radarr is on localhost:7878),
|
||||||
but all servers will require you to input the API token.
|
but all servers will require you to input the API token.
|
||||||
|
|||||||
Reference in New Issue
Block a user