art-helpers

simple helper scripts for managing images processed by ART
git clone https://git.clttr.info/art-helpers.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit bf3beee64b9c76fdeac5dba41de52a0494d45862
parent 33b7279e0e06dbd9cb7c1630726cf211ab087ab0
Author: René Wagner <apollo@rw-net.de>
Date:   Sat, 28 Sep 2019 17:45:01 +0200

update urls to codewolke.net

Diffstat:
MREADME.md | 6+++---
Mmultiversion_sidecar_cleaner.pl | 4++--
Morphaned_sidecar_cleaner.pl | 4++--
3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md @@ -1,7 +1,7 @@ # Silkypix Helper Scripts This rather small scripts written in [Perl](https://perl.org) provide useful function for managing the sidecar data files created by [Silkypix Developer Studio](https://silkypix.isl.co.jp/en/). -For bug reports or feature requests please visit [our bugtracker](https://tracker.rw-net.de). +For bug reports or feature requests please visit [our bugtracker](https://tracker.codewolke.net). ## required perl modules The following perl modules are required for running the scripts. @@ -14,8 +14,8 @@ The following perl modules are required for running the scripts. ## description -## orphaned sidecar cleaner +### orphaned sidecar cleaner Deletes all sidecar files in the given directory or alternatively in the current working directory when the associated raw file is missing. -## multiversion sidecar cleaner +### multiversion sidecar cleaner Deletes Silkypix Sidecar files when newer versions of the files are available. This usually happens when a file is opened in a newer version of Silkypix, as the sidecar files are version specific. diff --git a/multiversion_sidecar_cleaner.pl b/multiversion_sidecar_cleaner.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # Copyright(c) René Wagner 2019 # published under BSD 3-Clause License -# https://code.rw-net.de/silkypix-helper/ +# https://www.codewolke.net/silkypix-helper/ use warnings; use strict; @@ -81,7 +81,7 @@ sub show_help print $PROGRAM . ' - version ' . $VERSION . "\r\n"; print "published under BSD 3 - Clause License \r\n"; print "Copyright(c) 2019 René Wagner\r\n"; - print "https://code.rw-net.de/silkypix-helper/ \r\n"; + print "https://www.codewolke.net/silkypix-helper/ \r\n"; print "\r\n"; print "Deletes Silkypix Sidecar files when newer versions of the files are available.\r\n"; print "This usually happens when a file is opened in a newer version of Silkypix, as the sidecar files are version specific.\r\n"; diff --git a/orphaned_sidecar_cleaner.pl b/orphaned_sidecar_cleaner.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # Copyright(c) René Wagner 2019 # published under BSD 3-Clause License -# https://code.rw-net.de/silkypix-helper/ +# https://www.codewolke.net/silkypix-helper/ use warnings; use strict; @@ -84,7 +84,7 @@ sub show_help print $PROGRAM . ' - version ' . $VERSION . "\r\n"; print "published under BSD 3 - Clause License \r\n"; print "Copyright(c) 2019 René Wagner\r\n"; - print "https://code.rw-net.de/silkypix-helper/ \r\n"; + print "https://www.codewolke.net/silkypix-helper/ \r\n"; print "\r\n"; print "Deletes Silkypix Sidecar files when corresponding RAW files are missing.\r\n"; print "\r\n";