Skip to content

Commit

Permalink
Release 1.3.10
Browse files Browse the repository at this point in the history
- access to unknown IFD fields
- support TIFF floats and doubles
  • Loading branch information
remvee committed Oct 2, 2022
1 parent cdf2543 commit aab4f70
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
EXIF Reader 1.3.10
* enhancement; access to unknown IFD fields
* enhancement; support TIFF floats and doubles

EXIF Reader 1.3.9
* bug fix; "Getting GPS data as NaN for few images"; thanks Gaurav Gupta

Expand Down
35 changes: 33 additions & 2 deletions exifr.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spec = Gem::Specification.new do |s|
s.name = 'exifr'
s.version = '1.3.9'
s.version = '1.3.10'
s.author = "R.W. van 't Veer"
s.email = 'exifr@remworks.net'
s.homepage = 'http://github.com/remvee/exifr/'
Expand All @@ -11,7 +11,38 @@ spec = Gem::Specification.new do |s|

s.files = %w(Rakefile Gemfile bin/exifr)
s.files += %w(lib/exifr.rb lib/exifr/jpeg.rb lib/exifr/tiff.rb)
s.files += %w(tests/data/1x1.jpg tests/data/Canon_PowerShot_A85.exif tests/data/Casio-EX-S20.exif tests/data/FUJIFILM-FinePix_S3000.exif tests/data/Panasonic-DMC-LC33.exif tests/data/Trust-DC3500_MINI.exif tests/data/apple-aperture-1.5.exif tests/data/bad-shutter_speed_value.exif tests/data/canon-g3.exif tests/data/endless-loop.exif tests/data/exif.jpg tests/data/gopro_hd2.exif tests/data/gps-altitude.jpg tests/data/gps.exif tests/data/image.jpg tests/data/multiple-app1.jpg tests/data/negative-exposure-bias-value.exif tests/data/nikon_d1x.tif tests/data/out-of-range.exif tests/data/plain.tif tests/data/samsung-sc-02b.jpg tests/data/sony-a7ii.exif tests/data/user-comment.exif tests/data/weird_date.exif tests/jpeg_test.rb tests/test_helper.rb tests/tiff_test.rb)
s.files += %w(
tests/data/1x1.jpg
tests/data/Canon_PowerShot_A85.exif
tests/data/Casio-EX-S20.exif
tests/data/FUJIFILM-FinePix_S3000.exif
tests/data/Panasonic-DMC-LC33.exif
tests/data/Trust-DC3500_MINI.exif
tests/data/apple-aperture-1.5.exif
tests/data/bad-shutter_speed_value.exif
tests/data/bad_gps.exif
tests/data/canon-g3.exif
tests/data/endless-loop.exif
tests/data/exif.jpg
tests/data/gopro_hd2.exif
tests/data/gps-altitude.jpg
tests/data/gps.exif
tests/data/image.jpg
tests/data/ios-mspix-milliseconds.jpg
tests/data/multiple-app1.jpg
tests/data/negative-exposure-bias-value.exif
tests/data/nikon_d1x.tif
tests/data/out-of-range.exif
tests/data/plain.tif
tests/data/samsung-sc-02b.jpg
tests/data/sony-a7ii.exif
tests/data/truncated.exif
tests/data/user-comment.exif
tests/data/weird_date.exif
tests/jpeg_test.rb
tests/test_helper.rb
tests/tiff_test.rb
)

s.executables = %w(exifr)

Expand Down

0 comments on commit aab4f70

Please sign in to comment.