Compare commits

...

8 Commits

Author SHA1 Message Date
github-actions[bot]
945dc744bc chore: release v0.1.2 2024-10-30 22:44:04 +00:00
9ee41b7af5 Updated README to a more polished format for the alpha release 2024-10-30 16:43:38 -06:00
Alex Clarke
a1d6df6b85 Merge pull request #3 from Dark-Alex-17/release-plz-2024-10-30T21-26-49Z
chore: release v0.1.1
2024-10-30 16:11:30 -06:00
github-actions[bot]
154f9c624a chore: release v0.1.1 2024-10-30 22:02:50 +00:00
f310db6722 Final dependency update 2024-10-30 16:02:09 -06:00
1433ca24cc Updated serde version to get minimal_versions job to pass 2024-10-30 15:55:28 -06:00
fa8aefe049 Updated strum_macros dependency 2024-10-30 15:52:31 -06:00
88f16f63c2 Updated all dependencies for alpha release 2024-10-30 15:48:29 -06:00
5 changed files with 547 additions and 333 deletions
+22
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "managarr"
version = "0.1.0"
version = "0.1.2"
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
description = "A TUI and CLI to manage your Servarrs"
keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui"]
@@ -17,7 +17,7 @@ exclude = [".github", "CONTRIBUTING.md", "*.log", "tags"]
anyhow = "1.0.68"
backtrace = "0.3.67"
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 = [
"yaml_conf",
] }
@@ -27,13 +27,13 @@ human-panic = "1.1.3"
indoc = "2.0.0"
log = "0.4.17"
log4rs = { version = "1.2.0", features = ["file_appender"] }
regex = "1.7.1"
regex = "1.11.1"
reqwest = { version = "0.11.14", features = ["json"] }
serde_yaml = "0.9.16"
serde_json = "1.0.91"
serde = { version = "1.0", features = ["derive"] }
strum = { version = "0.26.1", features = ["derive"] }
strum_macros = "0.26.1"
serde = { version = "1.0.214", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
tokio = { version = "1.36.0", features = ["full"] }
tokio-util = "0.7.8"
ratatui = { version = "0.28.0", features = ["all-widgets"] }
+3
View File
@@ -32,6 +32,9 @@ lint-fix:
fmt:
@cargo fmt
minimal-versions:
@cargo +nightly update -Zdirect-minimal-versions
## Analyze for unsafe usage - `cargo install cargo-geiger`
analyze:
@cargo geiger
+8 -10
View File
@@ -45,6 +45,14 @@ cargo install 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
### Radarr
@@ -156,16 +164,6 @@ $ managarr radarr list movies | jq '.[] | select(.title == "Ad Astra") | .id'
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
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.