Skip to content

Commit

Permalink
Merge pull request #193 from Heavybullets8/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Drazzilb08 authored Oct 15, 2024
2 parents 156ef85 + be0c6d1 commit 6ee1a3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/config.sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ poster_renamerr:
log_level: info
dry_run: false
sync_posters: true # <- This will run sync_gdrive before renaming
action_type: copy # <- Options: copy, move
action_type: copy # <- Options: copy, move, hardlink, symlink (Note: 'hardlink' and 'symlink' require "source_dirs" and "destination_dir" to be on the same filesystem)
asset_folders: false # <- This will copy the folder structure of the source_dir to the destination_dir, this MUST be the same as you use in Plex-Meta-Manager
print_only_renames: false # <- This will print the renames to the log, but will not actually rename anything
# This will integrate border_replacer with poster_renamerr, set this to true if you want to use them at the same time (no need to schedule border_replacer)
Expand Down
10 changes: 7 additions & 3 deletions schemas/config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@
},
"action_type": {
"type": "string",
"pattern": "^copy|move$"
"pattern": "^copy|move|hardlink|symlink$"
},
"asset_folders": {
"type": "boolean"
Expand Down Expand Up @@ -512,12 +512,16 @@
"tag_name": {
"type": "string"
},
"ignore_tag":
{
"ignore_tag": {
"type": "string"
},
"unattended": {
"type": "boolean"
},
"season_monitored_threshold": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"required": [
Expand Down

0 comments on commit 6ee1a3a

Please sign in to comment.