Add setsynopsis action

This commit is contained in:
df 2020-11-01 19:11:52 +00:00 committed by HummyPkg
parent 1abdeecfca
commit 4d524d57ef
2 changed files with 20 additions and 0 deletions

View File

@ -815,6 +815,20 @@ proc ::sweeper::action_setguidance {ts cmd arg folder} {
return 0
}
proc ::sweeper::action_setsynopsis {ts cmd arg folder} {
if {$folder} {
::sweeper::folder_apply [$ts dir] \
::sweeper::action_setsynopsis $cmd $arg 0
return 0
}
set arg [::sweeper::expand $ts $arg [$ts get synopsis]]
log "Setting synopsis for [$ts get file] to $arg" 0
if {!$::sweeper::dryrun} {
$ts setsynopsis $arg
}
return 0
}
proc ::sweeper::action_lock {ts cmd arg folder} {
if {$folder} {
::sweeper::folder_apply [$ts dir] \

View File

@ -327,6 +327,12 @@ var schema = {
desc: 'Set recording guidance to...',
continues: true
},
setsynopsis: {
'class': 'all',
argtype: 'string',
desc: 'Set recording synopsis to...',
continues: true
},
lock: {
'class': 'all',
argtype: 'none',