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 33b7279e0e06dbd9cb7c1630726cf211ab087ab0
parent 9d83562e956ffaa5aa96aa838e56c91d8591d92b
Author: René Wagner <apollo@rw-net.de>
Date:   Sat, 28 Sep 2019 14:55:58 +0200

fix uri for repo and add uri to tracker
fix perl modules in README

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

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -1,7 +0,0 @@ -Visual Studio 2017 Community Edition is required for building the application. - -If you want to contribute, do it the following way: -- pick an issue and mention there that you will contribute -- create a personal fork -- push your changes to your fork -- create a merge request mentioning the implemented issue -\ No newline at end of file diff --git a/README.md b/README.md @@ -1,11 +1,12 @@ # 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). + ## required perl modules The following perl modules are required for running the scripts. - Cwd -- File::Spec - File::Basename - File::Find::Rule - File::Find 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://code.rw-net.de/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://code.rw-net.de/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"; @@ -91,4 +91,5 @@ sub show_help print "duplicate_sidecar_cleaner.pl -d - delete duplicate sidecar file versions in given directory and subfolders\r\n"; print "duplicate_sidecar_cleaner.pl <folder> - list duplicate sidecar file versions in given directory and subfolders\r\n"; print "duplicate_sidecar_cleaner.pl -d <folder> - delete duplicate sidecar file versions in given directory and subfolders\r\n"; - print "duplicate_sidecar_cleaner.pl -h - show this help\r\n";} + print "duplicate_sidecar_cleaner.pl -h - show this help\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://code.rw-net.de/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://code.rw-net.de/silkypix-helper/ \r\n"; print "\r\n"; print "Deletes Silkypix Sidecar files when corresponding RAW files are missing.\r\n"; print "\r\n";