0.4.1.1
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.4.1.1]
|
||||||
|
- Bug fixes
|
||||||
|
|
||||||
## [0.4.1]
|
## [0.4.1]
|
||||||
- Better delimiter support
|
- Better delimiter support
|
||||||
- %LENS tag
|
- %LENS tag
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -4,13 +4,13 @@
|
|||||||
|
|
||||||
**Rollup** is a tool for renaming image files based on their EXIF tags. It was originally written to improve the arbitrary filenames in the iPhone Camera Roll.
|
**Rollup** is a tool for renaming image files based on their EXIF tags. It was originally written to improve the arbitrary filenames in the iPhone Camera Roll.
|
||||||
|
|
||||||
####[⇩ Download Rollup 0.4.1.0](https://www.profiteroles.org/git/p/Rollup/raw/master/Rollup.app.zip) ([Changelog](CHANGELOG.md))
|
####[⇩ Download Rollup 0.4.1.1](https://www.profiteroles.org/git/p/Rollup/raw/master/Rollup.app.zip) ([Changelog](CHANGELOG.md))
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Recursive directory scanning
|
* Recursive directory scanning
|
||||||
|
* Reverse Geocoding
|
||||||
* Custom rename template
|
* Custom rename template
|
||||||
* Reverse geocoding (lookup place name from GPS coordinates)
|
|
||||||
|
|
||||||
## Available tags
|
## Available tags
|
||||||
|
|
||||||
@@ -31,8 +31,9 @@
|
|||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
Running Rollup requires disabling Gatekeeper by running `sudo spctl --master-disable` in the Terminal.
|
- Running Rollup requires disabling Gatekeeper by running `sudo spctl --master-disable` in the Terminal.
|
||||||
The following characters are currently supported as delimiters: ' ','_','-','+'
|
- Reverse Geocoding requires a valid Google API key. As of 2018, Google requires a paid account for access to the places database. Although a valid credit card is required to create the account, only massive searches incur fees. More here: https://developers.google.com/maps/documentation/geocoding/start
|
||||||
|
- The following characters are currently supported as delimiters: ' ','_','-','+'
|
||||||
|
|
||||||
## Building from source
|
## Building from source
|
||||||
|
|
||||||
@@ -40,3 +41,4 @@ Building Rollup requires Platypus and Pashua
|
|||||||
|
|
||||||
* https://github.com/sveinbjornt/Platypus
|
* https://github.com/sveinbjornt/Platypus
|
||||||
* https://github.com/BlueM/Pashua
|
* https://github.com/BlueM/Pashua
|
||||||
|
|
||||||
|
|||||||
BIN
Rollup.app.zip
BIN
Rollup.app.zip
Binary file not shown.
@@ -57,6 +57,9 @@ switch (@$argv[0]) {
|
|||||||
echo "\nALERT:Up-to-date|".$version." is the latest version.\n";
|
echo "\nALERT:Up-to-date|".$version." is the latest version.\n";
|
||||||
die;
|
die;
|
||||||
}
|
}
|
||||||
|
case null:
|
||||||
|
echo "No input";
|
||||||
|
die;
|
||||||
}
|
}
|
||||||
|
|
||||||
// API key check
|
// API key check
|
||||||
@@ -133,9 +136,9 @@ foreach ($files as $file) {
|
|||||||
// The following is a fairly lame hack
|
// The following is a fairly lame hack
|
||||||
|
|
||||||
foreach ($p['delimiters'] as $char) {
|
foreach ($p['delimiters'] as $char) {
|
||||||
$d_a[] = $char;
|
|
||||||
$d_a[] = $char.$char;
|
|
||||||
$d_a[] = $char.$char.$char;
|
$d_a[] = $char.$char.$char;
|
||||||
|
$d_a[] = $char.$char;
|
||||||
|
$d_a[] = $char;
|
||||||
$d_b[] = $char;
|
$d_b[] = $char;
|
||||||
$d_b[] = $char;
|
$d_b[] = $char;
|
||||||
$d_b[] = $char;
|
$d_b[] = $char;
|
||||||
|
|||||||
@@ -259,6 +259,6 @@
|
|||||||
<string>public.folder</string>
|
<string>public.folder</string>
|
||||||
</array>
|
</array>
|
||||||
<key>Version</key>
|
<key>Version</key>
|
||||||
<string>0.4.1.0</string>
|
<string>0.4.1.1</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
0.4.1.0
|
0.4.1.1
|
||||||
Reference in New Issue
Block a user