filmrolls 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc2322c8fbcc81c5a5db45f32c3c936484bc2ed5ef52802b35c382c4fc32f7ce
4
- data.tar.gz: 130a70fd8e9e36b8f2ac7a90aa12b8c7645049a095747311765b13da98b4d15d
3
+ metadata.gz: 74214fa54bf409037f93d51b4bdbe099b1a5d0a27d8e1ffd7511befb495d69a1
4
+ data.tar.gz: 238f87363c6a22f7ccab814996a75d4a5d98285d802aa7c0ce68ad761ed949c3
5
5
  SHA512:
6
- metadata.gz: da52df23af0ecfbefcfb0db808982b2a60d89c1e40329d1d3a03915814cf9f8a1a5f2948ea82c06954106dc87c532effc4beb19f22ab594a1f9e42ab76e3b94d
7
- data.tar.gz: 9b0dd8f451a49c6450de2cb924071231a9e18d99976410f2df99573a7129e330a46c10e3596746fa764af589c0e797181b65cb98514d807c7a7741d8b6dd0a2b
6
+ metadata.gz: 64dc89864301acdfa68c64ae550433bf4b5dc61960870eb5723dcd0707fc8f6c8b20b7a47da0e2723a2399f0b209b877f66650df6252d9c2386ae40029035a36
7
+ data.tar.gz: 2f5f36dd200731fcfe2587a1536cd95fcb1e0e1b1261e2dea960ec8303847a55b84dd8217a0602a1d47623491eb53a2199a801a97d7ea89d3754350960376a25
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.1] - 2019-06-02
10
+ ### Changed
11
+ - Prefer `DateTimeOriginal` over `DateTimeCreated` when writing copyright metadata
12
+
9
13
  ## [0.2.0] - 2019-06-01
10
14
  ### Added
11
15
  - Support for writing author metadata (copyright, license, etc.)
@@ -28,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
32
  ### Added
29
33
  - First release of the `filmrolls` tool
30
34
 
31
- [Unreleased]: https://github.com/urdh/filmrolls/compare/v0.2.0...HEAD
35
+ [Unreleased]: https://github.com/urdh/filmrolls/compare/v0.2.1...HEAD
36
+ [0.2.1]: https://github.com/urdh/filmrolls/compare/v0.2.0...v0.2.1
32
37
  [0.2.0]: https://github.com/urdh/filmrolls/compare/v0.1.3...v0.2.0
33
38
  [0.1.3]: https://github.com/urdh/filmrolls/compare/v0.1.2...v0.1.3
34
39
  [0.1.2]: https://github.com/urdh/filmrolls/compare/v0.1.1...v0.1.2
@@ -88,7 +88,8 @@ module Filmrolls
88
88
  end
89
89
 
90
90
  def copyright=(val)
91
- year = @file[:datetimecreated] ? @file[:datetimecreated].year : DateTime.now.year
91
+ year = @file[:datetimeoriginal] ? @file[:datetimeoriginal].year :
92
+ @file[:datetimecreated] ? @file[:datetimecreated].year : DateTime.now.year
92
93
  notice = (val % {:year => year})
93
94
  @file[:Copyright] = notice
94
95
  @file[:CopyrightNotice] = notice
@@ -1,3 +1,3 @@
1
1
  module Filmrolls
2
- VERSION = '0.2.0'.freeze
2
+ VERSION = '0.2.1'.freeze
3
3
  end
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "FILMROLLS" "1" "June 2019" "" "filmrolls v0.2.0"
4
+ .TH "FILMROLLS" "1" "June 2019" "" "filmrolls v0.2.1"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBfilmrolls\fR \- Tag TIFF files with EXIF data extracted from XML data
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: filmrolls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Sigurdhsson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-01 00:00:00.000000000 Z
11
+ date: 2019-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mini_exiftool