-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make exiftool.bin more portable. Fixes unraid environment.
- Loading branch information
1 parent
fbd842a
commit aa5439f
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
<summary>Preview and show camera RAW files in Nextcloud/ownCloud</summary> | ||
<description> | ||
<![CDATA[This app will make previews of "RAW" files from cameras in Nextcloud/ownCloud.]]></description> | ||
<version>0.7.7</version> | ||
<version>0.7.8</version> | ||
<licence>agpl</licence> | ||
<author mail="[email protected]" >Ari Selseng</author> | ||
<namespace>CameraRawPreviews</namespace> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
use FindBin; | ||
require "$FindBin::Bin/exiftool"; | ||
use strict; | ||
use warnings; | ||
use File::Basename; | ||
|
||
my $dir = dirname("$^X"); | ||
require "$dir/exiftool"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
static | ||
usepacklists | ||
strip ppi | ||
use FindBin | ||
use File::Basename | ||
use File::Glob | ||
use Archive::Zip | ||
use Compress::Zlib | ||
|