photo_rename 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -1
- data/VERSION +1 -1
- data/lib/photo_rename.rb +0 -1
- data/photo_rename.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fdeb0554b5d20821a8b8f2be326b89946c6f70f
|
4
|
+
data.tar.gz: 33b1f9c1a39c721184857f04e71b50506df6334a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e998dc9bd3e1d06d5b07f480eacab6f6f139c54747785357a619191cbe3857daf3e31ee0f19e8724c83215fb24d3be93b447dbafb973ae06e3f1da3f349cde3d
|
7
|
+
data.tar.gz: 19c090c4ce5c2404e29e8eedf828903a13c8ac3112198768ef00bac61e2bee988632af761ede7dbbbbeacffadc4c4788569fb25d3b9217e1bbce8de9a9d4fe96
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Photo Renamer #
|
2
2
|
|
3
|
-

|
4
4
|
|
5
5
|
## What the script does ##
|
6
6
|
|
@@ -16,6 +16,7 @@ The naming pattern described above is the naming pattern used by the stock Andro
|
|
16
16
|
Per default we now use the JPEG `exif meta data` to find the creation date of the file. This gives much more reliable results than using the `mtime` of the file.
|
17
17
|
|
18
18
|
The case that convinced me this change was necessary:
|
19
|
+
|
19
20
|
I wanted to rename images that was recovered after being deleted. The recovery process changed the `mtime` of the files, but the `meta data` remained intact.
|
20
21
|
|
21
22
|
### mtime ###
|
@@ -48,9 +49,11 @@ apt-get install libimage-exiftool-perl
|
|
48
49
|
```
|
49
50
|
|
50
51
|
**OSX**
|
52
|
+
|
51
53
|
http://www.sno.phy.queensu.ca/~phil/exiftool/ExifTool-10.00.dmg
|
52
54
|
|
53
55
|
**Windows**
|
56
|
+
|
54
57
|
http://www.sno.phy.queensu.ca/~phil/exiftool/exiftool-10.00.zip
|
55
58
|
|
56
59
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/photo_rename.rb
CHANGED
data/photo_rename.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: photo_rename 0.1.
|
5
|
+
# stub: photo_rename 0.1.1 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "photo_rename"
|
9
|
-
s.version = "0.1.
|
9
|
+
s.version = "0.1.1"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|