## Features
- Implemented #12 
- Enhanced message formatting and user prompts for deletions.

## Additions
- ETHEL SCENE release group added.
- FLiGHTS group to missing HDR10.
- Overhauled h265 custom formats and added new h265 4k format.
- MAX WEB source added to custom formats.

## Improvements
- Script to generate initial config file.
- Removed tracking of config.yml for security.
- Updated README for install process and new delete feature.
This commit is contained in:
santiagosayshey
2024-02-03 11:32:04 +10:30
committed by GitHub
parent 2c764f993c
commit 2e5cabe7ab
7 changed files with 1329 additions and 35 deletions

25
setup.py Normal file
View File

@@ -0,0 +1,25 @@
config_content = """
instances:
master:
sonarr:
base_url: "http://localhost:8989"
api_key: "API_KEY"
radarr:
base_url: "http://localhost:7878"
api_key: "API_KEY"
extras:
sonarr:
- name: "4k-sonarr"
base_url: "http://localhost:8998"
api_key: "API_KEY"
radarr:
- name: "4k-radarr"
base_url: "http://localhost:7887"
api_key: "API_KEY"
settings:
export_path: "./exports"
"""
with open('config.yml', 'w') as file:
file.write(config_content)