-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
2508 lines (2244 loc) · 153 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!--*- sgml -*-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="author" content="Exiv2 contributors">
<meta name="description" content="Open Source Exif, IPTC and XMP metadata library and tools with Exif MakerNote and read/write support">
<meta name="keywords" content="exif, iptc, xmp, metadata, makernote, manipulation, manipulate, read and write, write, change, update, jpeg, jpg, ifd, image file directory, thumbnail, thumbnails, tag, tags, canon, fujifilm, sigma/foveon, nikon, open source, opensource">
<link rel="apple-touch-icon" sizes="57x57" href="/icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
<link rel="manifest" href="/icons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Exiv2 - Image metadata library and tools</title>
<!-- Doxygen styles -->
<link href="doc/doxygen.css" rel="stylesheet" type="text/css">
<link href="doc/customdoxygen.css" rel="stylesheet" type="text/css">
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap theme -->
<link href="dist/css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="include/exiv2.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img alt="Exiv2" src="include/exiv2-logo-small.png">
</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="getting-started.html">Getting started</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="whatsnew.html">What's New</a></li>
<li><a href="metadata.html">Metadata</a></li>
<li><a href="makernote.html">Makernote</a></li>
<li><a href="doc/examples.html">Examples</a></li>
<li><a href="doc/index.html">API</a></li>
<li><a href="manpage.html">Manual</a></li>
<li><a href="book/index.html">Book</a></li>
<li><a href="https://github.com/exiv2/exiv2" target="_blank">GitHub</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="page-header">
<h1>Changelog</h1>
</div>
<pre><a name="toc"> </a>
TABLE of CONTENTS
</br>
<a href="#v0.27.4">v0.27.4</a> <a href="#v0.26">v0.26</a> <a href="#v0.21">v0.21</a> <a href="#v0.18">v0.18</a>
<a href="#v0.27.3">v0.27.3</a> <a href="#v0.25">v0.25</a> <a href="#v0.20">v0.20</a> <a href="#v0.18">v0.18</a>
<a href="#v0.27.2">v0.27.2</a> <a href="#v0.24">v0.24</a> <a href="#v0.19">v0.19</a> <a href="#v0.17">v0.17</a>
<a href="#v0.27.1">v0.27.1</a> <a href="#v0.23">v0.23</a> <a href="#v0.18">v0.18</a> <a href="#v0.16">v0.16</a>
<a href="#v0.27">v0.27</a> <a href="#v0.22">v0.22</a> <a href="#v0.17">v0.17</a> <a href="#v0.15">v0.15</a>
<a name="v0.27.5"> </a>
Changes from version 0.27.4 to 0.27.5
-------------------------------------
Closed (87/87):<a href="https://github.com/Exiv2/exiv2/milestone/9?closed=1">https://github.com/Exiv2/exiv2/milestone/6?closed=1</a>
Open (0/87):<a href="https://github.com/Exiv2/exiv2/milestone/9?closed=0">https://github.com/Exiv2/exiv2/milestone/6?closed=0</a>
Release Notes: <a href="https://github.com/Exiv2/exiv2/issues/1018#issuecomment-895425552">https://github.com/Exiv2/exiv2/issues/1018#issuecomment-757979745</a>
<a href="#toc">TOC</a>
<a name="v0.27.4"> </a>
Changes from version 0.27.3 to 0.27.4
-------------------------------------
Closed (214/214):<a href="https://github.com/Exiv2/exiv2/milestone/6?closed=1">https://github.com/Exiv2/exiv2/milestone/6?closed=1</a>
Open (0/214): <a href="https://github.com/Exiv2/exiv2/milestone/6?closed=0">https://github.com/Exiv2/exiv2/milestone/6?closed=0</a>
Release Notes: <a href="https://github.com/Exiv2/exiv2/issues/1018#issuecomment-757979745">https://github.com/Exiv2/exiv2/issues/1018#issuecomment-757979745</a>
<a href="#toc">TOC</a>
<a name="v0.27.3"> </a>
Changes from version 0.27.2 to 0.27.3
-------------------------------------
Closed:<a href="https://github.com/Exiv2/exiv2/milestone/5?closed=1">https://github.com/Exiv2/exiv2/milestone/5?closed=1</a>
Open: <a href="https://github.com/Exiv2/exiv2/milestone/5?closed=0">https://github.com/Exiv2/exiv2/milestone/5?closed=0</a>
Notes: <a href="https://github.com/Exiv2/exiv2/issues/1018#issuecomment-604539346">https://github.com/Exiv2/exiv2/issues/1018#issuecomment-604539346</a>
<a href="#toc">TOC</a>
<a name="v0.27.2"> </a>
Changes from version 0.27.1 to 0.27.2
-------------------------------------
Closed (61)
<a href="https://github.com/Exiv2/exiv2/milestone/4?closed=1">https://github.com/Exiv2/exiv2/milestone/3?closed=1</a>
<a <a href="#toc">TOC</a>
<a name="v0.27.1"> </a>
Changes from version 0.27 to 0.27.1
-----------------------------------
Closed (40)
<a href="https://github.com/Exiv2/exiv2/milestone/3?closed=1">https://github.com/Exiv2/exiv2/milestone/3?closed=1</a>
<a href="#toc">TOC</a>
<a name="v0.27"> </a>
Changes from version 0.26 to 0.27
---------------------------------
<a href="https://github.com/Exiv2/exiv2/milestone/1?closed=1">https://github.com/Exiv2/exiv2/milestone/1?closed=1</a>
88 issues have been closed on Redmine
* Build: (11)
- <a href="http://dev.exiv2.org/issues/0001362">0001362</a>: Fix Clang build
(David Carlos Manuelda)
- <a href="http://dev.exiv2.org/issues/0001358">0001358</a>: Unsuccessful build (Win7, MSVC2015, amd64_x86)
(Andreas Martin)
- <a href="http://dev.exiv2.org/issues/0001356">0001356</a>: Small patch to configure.py
(Sridhar Boovaraghavan)
- <a href="http://dev.exiv2.org/issues/0001329">0001329</a>: Error during cmake with gcc version parsing
(Maxime Daisy)
- <a href="http://dev.exiv2.org/issues/0001310">0001310</a>: Provide support for msys/2.0
- <a href="http://dev.exiv2.org/issues/0001299">0001299</a>: exiv2-0.26-trunk.tar.gz changed on download server
(Jonathan Riddell)
- <a href="http://dev.exiv2.org/issues/0001270">0001270</a>: Using libexiv2.a/.lib in multithreaded app segfaults.
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001237">0001237</a>: Report CMake/MinGW issues to Kitware
- <a href="http://dev.exiv2.org/issues/0001188">0001188</a>: Provide build support for C++11
- <a href="http://dev.exiv2.org/issues/0001174">0001174</a>: Visual Studio Support Enhancements
- <a href="http://dev.exiv2.org/issues/0001121">0001121</a>: Visual Studio support for v0.27
* Basicio: (1)
- <a href="http://dev.exiv2.org/issues/0001374">0001374</a>: excessively often calls stat()
(Johannes Berg)
* Coverity: (11)
- <a href="http://dev.exiv2.org/issues/0001265">0001265</a>: [ Coverity : /src/basicio.cpp ] Unchecked return value from library , Time of check time of use , Incorrect deallocator used , Dereference before null check , String not null terminated
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001264">0001264</a>: [ Coverity : /src/actions.cpp ] Unchecked return value from library , Logically dead code , Not restoring ostream format
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001263">0001263</a>: [ Coverity : 1396730 Uninitialized scalar field ] /include/exiv2/xmp.hpp
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001262">0001262</a>: [ Coverity : XMPSDK Errors ] Unused value , Explicit null dereferenced
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001261">0001261</a>: [ Coverity : 1296083 Resource leak ] /src/exiv2.cpp
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001260">0001260</a>: [ Coverity : 1296084 Resource leak ] /src/http.cpp
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001259">0001259</a>: [ Coverity : 1396717 Out-of-bounds read ] /src/easyaccess.cpp
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001258">0001258</a>: [ Coverity 1396718 Out-of-bounds access ] /src/webpimage.cpp
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001257">0001257</a>: [ Coverity 1396719 Resource leak ] /src/tiffcomposite.cpp
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0001256">0001256</a>: [ Coverity 1396721 : /src/basicio.cpp ] String not null terminated
(Mahesh Hegde)
- <a href="http://dev.exiv2.org/issues/0000883">0000883</a>: Use Coverity SCAN on exiv2 code-base
(Mahesh Hegde)
* Camera: (1)
- <a href="http://dev.exiv2.org/issues/0001352">0001352</a>: Support camera Canon M100
(Daniel Zucchetto)
* Duplicate: (1)
- <a href="http://dev.exiv2.org/issues/0001307">0001307</a>: exiv2: tiffvisitor.cpp:1299: virtual void Exiv2::Internal::TiffReader::visitDirectory(Exiv2::Internal::TiffDirectory*): Assertion `tc.get()' failed.
(Henri Salo)
* Exif: (6)
- <a href="http://dev.exiv2.org/issues/0001320">0001320</a>: It is a heap-buffer-overflow in Exiv2::Jp2Image::readMetadata (jp2image.cpp:277)
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001319">0001319</a>: It is a heap-buffer-overflow in Exiv2::us2Data (types.cpp:346)
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001318">0001318</a>: Invalid memory address dereference in Exiv2::StringValueBase::read ( in value.cpp:302)
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001317">0001317</a>: It is a heap-buffer-overflow in Exiv2::s2Data (types.cpp:383)
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001316">0001316</a>: It is a heap-buffer-overflow in Exiv2::l2Data (types.cpp:398)
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001315">0001315</a>: Invalid memory address dereference in Exiv2::DataValue::read (value.cpp:193)
(Zhu Liu)
* Insufficient information: (1)
- <a href="http://dev.exiv2.org/issues/0001347">0001347</a>: Segfault in Digikam when saving/loading certain TIFF images
(V Engmark)
* Image format: (5)
- <a href="http://dev.exiv2.org/issues/0001353">0001353</a>: Segmentation fault in the software exiv2 when the function Exiv2::tEXtToDataBuf() is finished
(chung-yi lin)
- <a href="http://dev.exiv2.org/issues/0001346">0001346</a>: Assertion failure in Exiv2::Internal::CiffComponent::doRead() in libexiv2
(Sanjay Rawat)
- <a href="http://dev.exiv2.org/issues/0001345">0001345</a>: Assertion Failure (SIGABRT) in Exiv2:RafImage::readMetadata() in Libexiv2
(Sanjay Rawat)
- <a href="http://dev.exiv2.org/issues/0001338">0001338</a>: Exiv2 aborted (crashed) with "Error in `exiv2': free(): invalid next size (fast)"
(Sanjay Rawat)
- <a href="http://dev.exiv2.org/issues/0001334">0001334</a>: Version 0.26 is returns unwanted data when the key value is received from RW2 files (Panasonic DMC-GF6 camera)
(Alex Stepanov)
* Lens: (20)
- <a href="http://dev.exiv2.org/issues/0001373">0001373</a>: Tamron SP 24-70mm F/2.8 Di VC USD not recognized properly
(Achim Kilchert)
- <a href="http://dev.exiv2.org/issues/0001372">0001372</a>: The lens "Tamron AF 18-200mm F3.5-6.3 XR Di II" is wrongly identified.
(Julian Hofer)
- <a href="http://dev.exiv2.org/issues/0001370">0001370</a>: Add entry for new(ish) lens - Tamron 10-24mm F/3.5-4.5 Di II VC HLD (B023)
(Robert Sleator)
- <a href="http://dev.exiv2.org/issues/0001366">0001366</a>: Feature Request Sigma 85mm f/1.4 DG Art Series
(Christian Fandel)
- <a href="http://dev.exiv2.org/issues/0001365">0001365</a>: Feature Request fr Sigma 135mm f/1.8 DG Art Series
(Christian Fandel)
- <a href="http://dev.exiv2.org/issues/0001361">0001361</a>: Wrongly identified Canon 2x extender as 1.4x extender with Tamron lens
(Simon Harhues)
- <a href="http://dev.exiv2.org/issues/0001355">0001355</a>: New lens Tamron 100-400mm F/4.5-6.3 Di VC USD
(Christian Touzé)
- <a href="http://dev.exiv2.org/issues/0001351">0001351</a>: Add lens: Sigma 120-300mm f/2.8 G VR
(Nikolai Försterling)
- <a href="http://dev.exiv2.org/issues/0001348">0001348</a>: patch: add Tamron SP AF 150-600mm F/5-6.3 VC USD G2 (A022) for Nikon
(Mike Romanov)
- <a href="http://dev.exiv2.org/issues/0001339">0001339</a>: Panasonic DMC-TZ70 lens not detected
(Tim Stahel)
- <a href="http://dev.exiv2.org/issues/0001336">0001336</a>: Support for AF-P DX NIKKOR 10-20mm f/4.5-5.6G VR
(Šarūnas Burdulis)
- <a href="http://dev.exiv2.org/issues/0001335">0001335</a>: Missing Nikon lense
(Niels Hansen)
- <a href="http://dev.exiv2.org/issues/0001333">0001333</a>: New Lens: Tamron SP 24-70mm F/2.8 Di VC USD G2 (A032)
(LP Tech)
- <a href="http://dev.exiv2.org/issues/0001332">0001332</a>: Recognise Tamron 18-200mm F/3.5-6.3 DiII VC B018 on Canon bodies
(Šarūnas Burdulis)
- <a href="http://dev.exiv2.org/issues/0001328">0001328</a>: Sigma 18-300mm is wrongly reported as a Canon 75-300mm
(Jean-Luc Jean-Luc Coulon)
- <a href="http://dev.exiv2.org/issues/0001327">0001327</a>: Two Sigma 24-70mm f/2.8 IF EX DG HSM lens definitions ??
(Philippe Dussart-Desart)
- <a href="http://dev.exiv2.org/issues/0001326">0001326</a>: Tamron 100-300mm f/5-6.3 MACRO 1:4
(Albert Jasinski)
- <a href="http://dev.exiv2.org/issues/0001323">0001323</a>: Add lens "Sigma 18-300mm f/3.5-6.3 DC Macro OS HS" for Canon ID 197
(Ronny Heidenreich)
- <a href="http://dev.exiv2.org/issues/0001306">0001306</a>: the lens TAMRON SP 15-30mm F/2.8 Di VC USD A012 is not properly recognised
(rene ernenwein)
- <a href="http://dev.exiv2.org/issues/0001304">0001304</a>: Lens missing Tamron SP 90mm f/2.8 Di Macro 1:1 VC USD F017
(Matze G)
* Miscellaneous: (2)
- <a href="http://dev.exiv2.org/issues/0001314">0001314</a>: it is a stack-overflow vulnerability in Exiv2::Internal::stringFormat[abi:cxx11] ( in image.cpp:975 )
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001305">0001305</a>: Segmentation fault on certain image
(Oleg Antonyan)
* Makernote: (2)
- <a href="http://dev.exiv2.org/issues/0001343">0001343</a>: Irix 15mm f/2.4 on Nikon
(Ben Perston)
- <a href="http://dev.exiv2.org/issues/0001324">0001324</a>: Pentax Makernote written twice
(Dominique Nerriec)
* Metadata: (7)
- <a href="http://dev.exiv2.org/issues/0001341">0001341</a>: Date/Time Original not modified for NEFs
(Jean-Luc CECCOLI)
- <a href="http://dev.exiv2.org/issues/0001340">0001340</a>: Infinite loop bugs in Libexiv2 Exiv2::Image::printIFDStructure()
(Sanjay Rawat)
- <a href="http://dev.exiv2.org/issues/0001325">0001325</a>: Crash in exiv2 - Nikon1MakerNote::printBarValue (nikonmn.cpp)
(Thibaud Mouton)
- <a href="http://dev.exiv2.org/issues/0001322">0001322</a>: Exception in PentaxMakerNote::printShutterCount, source: pentaxmn.cpp
(Norbert Wagner)
- <a href="http://dev.exiv2.org/issues/0001321">0001321</a>: Invalid memory address dereference in Exiv2::getULong(types.cpp:246)
(Zhu Liu)
- <a href="http://dev.exiv2.org/issues/0001301">0001301</a>: New lens: Sigma 18-35mm f/1.8 DC HSM Art for Canon
(Alexander Steffen)
- <a href="http://dev.exiv2.org/issues/0001300">0001300</a>: New lens: Canon EF-S 35mm f/2.8 Macro IS STM
(Alexander Steffen)
* Not-a-bug: (8)
- <a href="http://dev.exiv2.org/issues/0001369">0001369</a>: New lens Yongnuo 50mm f/1.8 II for Canon
(Michal Fapso)
- <a href="http://dev.exiv2.org/issues/0001368">0001368</a>: Canon EF-M 15-45 broken LensType
(Peter Wemmert)
- <a href="http://dev.exiv2.org/issues/0001367">0001367</a>: New Lens Sigma 100-400 mm, F5-6.3 DG for Nikon
(Thomas G)
- <a href="http://dev.exiv2.org/issues/0001364">0001364</a>: New lens Tamron SP 24-70mm F/2.8 Di VC USD G2
(Mikko Pantsar)
- <a href="http://dev.exiv2.org/issues/0001350">0001350</a>: Add lens: AF-S DX Nikkor 18-140mm
(Nikolai Försterling)
- <a href="http://dev.exiv2.org/issues/0001349">0001349</a>: Add lens: Sigma 50-100mm F1.8 DC HSM | A
(Nikolai Försterling)
- <a href="http://dev.exiv2.org/issues/0001344">0001344</a>: Unknown metadata
(luv zeng)
- <a href="http://dev.exiv2.org/issues/0001331">0001331</a>: exiv2 fails to delete bulk of metadata in jpeg
(Denis-Carl Robidoux)
* Tools: (1)
- <a href="http://dev.exiv2.org/issues/0001303">0001303</a>: #1 Use 'releases' feature on GitHub
* Tiff parser: (3)
- <a href="http://dev.exiv2.org/issues/0001360">0001360</a>: exiv2 can't read metadata from tiff file (tiff directory length is too large)
(T Modes)
- <a href="http://dev.exiv2.org/issues/0001359">0001359</a>: This does not look like a TIFF image
(jaeho jung)
- <a href="http://dev.exiv2.org/issues/0001330">0001330</a>: Crash in Exiv2::TiffImage::readMetadata
(Tobias E.)
* Video: (2)
- <a href="http://dev.exiv2.org/issues/0001068">0001068</a>: Video Code Umbrella
- <a href="http://dev.exiv2.org/issues/0001028">0001028</a>: Add GSoC13 video-write code
* Website: (3)
- <a href="http://dev.exiv2.org/issues/0001308">0001308</a>: Move directory <exiv2dir>/website to svn://dev.exiv2.org/svn/team/website
- <a href="http://dev.exiv2.org/issues/0001302">0001302</a>: Use sha256 Checksums on Downloads and Archive pages of the web site.
- <a href="http://dev.exiv2.org/issues/0001288">0001288</a>: site defaults to http://, and https:// certificate is bogus
(Matthias Andree)
* Xmp: (3)
- <a href="http://dev.exiv2.org/issues/0001354">0001354</a>: Inconsistency with long XMP namespaces (e.g. 'Iptc4xmpExt')
(Jens Georg)
- <a href="http://dev.exiv2.org/issues/0001278">0001278</a>: XMP SDK Split
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0000941">0000941</a>: Upgrade xmpsdk source to Adobe's current version
<a href="#toc">TOC</a>
<a name="v0.26"> </a>
Changes from version 0.25 to 0.26
---------------------------------
* Api: (4)
- <a href="http://dev.exiv2.org/issues/0001275">0001275</a>: Exiv2 0.26-svn issue with ExifTags class MPF tags UPSTREAM
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001240">0001240</a>: Review API changes from v0.25 to v0.26
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0001157">0001157</a>: Out of memory error with user defined to_string template
- <a href="http://dev.exiv2.org/issues/0001120">0001120</a>: Deprecating outdated and/or undesired API's
(Alan Pater / Andreas Huggel)
* Basicio: (9)
- <a href="http://dev.exiv2.org/issues/0001272">0001272</a>: Possible issue with temp files being left behind.
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001183">0001183</a>: Guidance about serialising metadata using MemIo and ExvImage Classes
- <a href="http://dev.exiv2.org/issues/0001151">0001151</a>: Small raw images size
(Wil Hermes)
- <a href="http://dev.exiv2.org/issues/0001147">0001147</a>: writeMetadata overwrites files without the +w bit
(Dan Fandrich)
- <a href="http://dev.exiv2.org/issues/0001113">0001113</a>: Crash in Exiv2 0.25
(Harry McKame)
- <a href="http://dev.exiv2.org/issues/0001100">0001100</a>: Unable to extract preview for a remote image
- <a href="http://dev.exiv2.org/issues/0001098">0001098</a>: digikam suddenly stops searching for new entries
(Andy Burger / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001077">0001077</a>: MemIo calls msync but FileIo does not
(Thomas Beutlich / Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000747">0000747</a>: Direct FILE* access from FileIo interface
(Adam Hooper)
* Build: (36)
- <a href="http://dev.exiv2.org/issues/0001293">0001293</a>: MacOS-X CMake/autotools incompatibility handling of -compatibility_version
- <a href="http://dev.exiv2.org/issues/0001292">0001292</a>: Fix targeting Windows XP (regression)
(Dimitri Schoolwerth)
- <a href="http://dev.exiv2.org/issues/0001291">0001291</a>: MSVC: Public header pulls ins unnecessary headers and libraries
(T Modes)
- <a href="http://dev.exiv2.org/issues/0001273">0001273</a>: exiv2 0.25 fails to compile correctly on musl libc due to improper check of strerror_r return type
(A. Wilcox)
- <a href="http://dev.exiv2.org/issues/0001269">0001269</a>: Enable using dynamic runtime libs with when disabling shared libs for Windows
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001268">0001268</a>: Building for debug in windows causes heap corruption error.
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001266">0001266</a>: CMake fails to link zlib with debug config using msvc 2015.
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001250">0001250</a>: Eliminate Visual Studio project convertor errors
- <a href="http://dev.exiv2.org/issues/0001249">0001249</a>: Support GCC/G++ v6.2.0
- <a href="http://dev.exiv2.org/issues/0001236">0001236</a>: Build Exiv2 on MinGW using CMake
- <a href="http://dev.exiv2.org/issues/0001226">0001226</a>: Deprecate msvc2003 with v0.26
- <a href="http://dev.exiv2.org/issues/0001213">0001213</a>: Using $(SolutionDir)../ as the prefix for include directories interfere with using projects in external solutions
(Sridhar Boovaraghavan)
- <a href="http://dev.exiv2.org/issues/0001210">0001210</a>: C++11 compile fails "error: use of deleted function bool std::regex_search"
(Zulan Zulan)
- <a href="http://dev.exiv2.org/issues/0001192">0001192</a>: Only link with libdl on gnu/linux
(Matthieu Volat)
- <a href="http://dev.exiv2.org/issues/0001173">0001173</a>: Shared library on Mac OS X has incorrect name
(Ilya Kulakov)
- <a href="http://dev.exiv2.org/issues/0001171">0001171</a>: localtime.c causes problems in MSVC 2015 & is not needed
- <a href="http://dev.exiv2.org/issues/0001169">0001169</a>: Validate flag EXV_UNICODE_PATH/msvc2005 builds and passes the test suite
- <a href="http://dev.exiv2.org/issues/0001159">0001159</a>: fff.h:33:2: error: 'BYTE' does not name a type
(Jakub Wilk)
- <a href="http://dev.exiv2.org/issues/0001150">0001150</a>: Unable to build for Mac OSX 10.6
(Max Pozdeev)
- <a href="http://dev.exiv2.org/issues/0001132">0001132</a>: New warnings from basicio.cpp from Xcode 7.1/clang-700.1.76
- <a href="http://dev.exiv2.org/issues/0001127">0001127</a>: exiv2 --verbose --version --grep libz incorrectly reports have_libz=0
- <a href="http://dev.exiv2.org/issues/0001125">0001125</a>: CMake: does not support overriding/selecting correct libdir (lib64)
(Michał Górny)
- <a href="http://dev.exiv2.org/issues/0001123">0001123</a>: libexiv2 should hide XMP-SDK symbols
- <a href="http://dev.exiv2.org/issues/0001119">0001119</a>: libxmp missing from the install folder when building statically libexiv2
(Emmanuel d'Angelo)
- <a href="http://dev.exiv2.org/issues/0001110">0001110</a>: Provide Xcode Build Environment
- <a href="http://dev.exiv2.org/issues/0001109">0001109</a>: User ability to request a build from Jenkins
- <a href="http://dev.exiv2.org/issues/0001103">0001103</a>: exiv2.hpp:55:24: fatal error: pngimage.hpp: No such file or directory
(Jakub Wilk)
- <a href="http://dev.exiv2.org/issues/0001102">0001102</a>: install: cannot stat '../bin/.libs/exiv2.exe': No such file or directory
(Jakub Wilk)
- <a href="http://dev.exiv2.org/issues/0001101">0001101</a>: i686-w64-mingw32-g++: error: localtime.o: No such file or directory
(Jakub Wilk)
- <a href="http://dev.exiv2.org/issues/0001099">0001099</a>: mv: cannot stat 't-bs.gmo': No such file or directory
(Jakub Wilk)
- <a href="http://dev.exiv2.org/issues/0001041">0001041</a>: CMake toolchain for windows
(Daniel Kaneider)
- <a href="http://dev.exiv2.org/issues/0001031">0001031</a>: CMake build broken when using zlib/expat in clean way
(Daniel Kaneider)
- <a href="http://dev.exiv2.org/issues/0000851">0000851</a>: Please support std::wstring in exiv2 path access
(Philipp Simmler)
- <a href="http://dev.exiv2.org/issues/0000733">0000733</a>: Improve compile-time control over size and functionality of the library
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000710">0000710</a>: Problems Compiling Exiv2 Under SGI IRIX
(Brent L. Bates)
- <a href="http://dev.exiv2.org/issues/0000536">0000536</a>: Switch to a unified build system based on cmake
(Nikolai Saoukh)
* Coverity: (1)
- <a href="http://dev.exiv2.org/issues/0000971">0000971</a>: Coverity scan : Not restoring ostream format (STREAM_FORMAT_STATE) CID : 982002 through 982054 (53 similar defects)
(Mahesh Hegde)
* Duplicate: (3)
- <a href="http://dev.exiv2.org/issues/0001239">0001239</a>: exiv2 0.25 crashes with casio ex-z50 files
(Rainer Kliese)
- <a href="http://dev.exiv2.org/issues/0001235">0001235</a>: ./configure doesn't exists.. in last version of Exiv2.
(Rodrigo Barbano)
- <a href="http://dev.exiv2.org/issues/0001181">0001181</a>: Casio.jpg exports crash darktable - suse leap 42.1
(Anonymous)
* Documentation: (2)
- <a href="http://dev.exiv2.org/issues/0001209">0001209</a>: Build instructions in README
(Thomas Beutlich)
- <a href="http://dev.exiv2.org/issues/0001136">0001136</a>: exiv2 -ps (default) output does not respect the -g (--grep) option
* Design: (4)
- <a href="http://dev.exiv2.org/issues/0001137">0001137</a>: Enable piping of selective copy of metadata between images
- <a href="http://dev.exiv2.org/issues/0001034">0001034</a>: Camera accessory overflow file
(Tobias Jakobs)
- <a href="http://dev.exiv2.org/issues/0000917">0000917</a>: Modify exiv2/actions.cpp return -3/253 when no metadata has been found.
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000481">0000481</a>: Incorporate information from ExifTool
(Stefan Bruens / Niels Kristian Bech Jensen)
* Exif: (7)
- <a href="http://dev.exiv2.org/issues/0001242">0001242</a>: jp2 metadata: Unrecognized UUID EXIF box
(Herbert Kauer)
- <a href="http://dev.exiv2.org/issues/0001214">0001214</a>: Human readable GPS values could be bad
(Ondřej Tůma)
- <a href="http://dev.exiv2.org/issues/0001089">0001089</a>: single 0-byte exif comment leads to SIGABRT (134)
(Felix Bolte)
- <a href="http://dev.exiv2.org/issues/0000935">0000935</a>: Different values for some metadata with exiftool
(Jehan Pagès / Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000825">0000825</a>: Panasonic Manometer Tag
(Christoph Anton Mitterer / Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0000613">0000613</a>: TiffImage does not honor the writeXmpFromPacket flag
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000492">0000492</a>: Color temperature information from RAW files...
(Bastardo -)
* Image format: (12)
- <a href="http://dev.exiv2.org/issues/0001289">0001289</a>: Infinite loop on command exiv2 -pR on a .CR2 file
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001277">0001277</a>: Crash with Canon CR2 file
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001271">0001271</a>: Update printStructure
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001247">0001247</a>: out of bounds read access in Exiv2::Image::setIccProfile
(Hanno Böck)
- <a href="http://dev.exiv2.org/issues/0001243">0001243</a>: Improved JPEG 2000 Support
- <a href="http://dev.exiv2.org/issues/0001234">0001234</a>: Class pgfimage does not work on big endian hardware.
- <a href="http://dev.exiv2.org/issues/0001211">0001211</a>: Support Development of WebP
- <a href="http://dev.exiv2.org/issues/0001199">0001199</a>: WebP file support
(Ben Touchette)
- <a href="http://dev.exiv2.org/issues/0001178">0001178</a>: Olympus E-M5 Mark II raw file not recognized
(Terence Tay)
- <a href="http://dev.exiv2.org/issues/0001143">0001143</a>: Unable to extract embedded preview from jpg for Sony a77
(Michael Waldor)
- <a href="http://dev.exiv2.org/issues/0000889">0000889</a>: CRW: crashes when passed invalid data
(Alyssa Milburn)
- <a href="http://dev.exiv2.org/issues/0000548">0000548</a>: recognize pdf as image format
(mikolaj -)
* Insufficient information: (1)
- <a href="http://dev.exiv2.org/issues/0001274">0001274</a>: crash in Exiv2 shared library when preview from image is extracted
(Wil Cowb)
* Jpeg parser: (5)
- <a href="http://dev.exiv2.org/issues/0001286">0001286</a>: Unable to extract ICC profile from Leica Image
- <a href="http://dev.exiv2.org/issues/0001282">0001282</a>: crash in Exiv2 shared library when JPEG parser is processing the file
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001220">0001220</a>: Bug in exiv2 --comment on trunk
- <a href="http://dev.exiv2.org/issues/0001196">0001196</a>: Crash in OS X when writing metadata
(Taras Kushnir)
- <a href="http://dev.exiv2.org/issues/0001156">0001156</a>: Extracting "User Comment" from JPEG can cause hang
* Lens: (23)
- <a href="http://dev.exiv2.org/issues/0001254">0001254</a>: Cannot recognize Canon 16-35 f/4 IS L
(Niccolò Belli)
- <a href="http://dev.exiv2.org/issues/0001252">0001252</a>: Detect Sigma 120-300 EX on Canon
(Markus Durzinsky)
- <a href="http://dev.exiv2.org/issues/0001241">0001241</a>: Support for Samyang 14mm f/2.8 AE ED AS IF UMC on Canon EF
(Tobias E.)
- <a href="http://dev.exiv2.org/issues/0001216">0001216</a>: Detection of lens: AF-P DX Nikkor 18-55mm f/3.5-5.6G VR
(Chris Benedict)
- <a href="http://dev.exiv2.org/issues/0001212">0001212</a>: Sigma 18-35mm f/1.8 not recognized
(Martin Ramshaw / Thomas Beutlich)
- <a href="http://dev.exiv2.org/issues/0001200">0001200</a>: Support for Sigma 17-70mm F2.8-4 DC Macro OS HSM | C
(Mathieu MD)
- <a href="http://dev.exiv2.org/issues/0001191">0001191</a>: New lens request
(Yvi San)
- <a href="http://dev.exiv2.org/issues/0001170">0001170</a>: Sigma 35mm F1.4 DG HSM on Canon 6D
- <a href="http://dev.exiv2.org/issues/0001167">0001167</a>: Issue with Sigma 17-70 lens mounted on a canon
- <a href="http://dev.exiv2.org/issues/0001166">0001166</a>: Tokina 11-20mm f/2.8
- <a href="http://dev.exiv2.org/issues/0001163">0001163</a>: Nikon Lens "Nikkor 16-80mm f/2.8-4G AF-S ED VR DX" not supported
(dreas b)
- <a href="http://dev.exiv2.org/issues/0001162">0001162</a>: New Lens: Tamron 28-300mm F/3.5-6.3 Di VC PZD A010
(Tomasz Ciolek)
- <a href="http://dev.exiv2.org/issues/0001161">0001161</a>: Feature request: 1 NIKKOR 10mm f/2.8
(Jacob Nederend)
- <a href="http://dev.exiv2.org/issues/0001160">0001160</a>: Feature Request - New Lens
(Mark Mangano)
- <a href="http://dev.exiv2.org/issues/0001155">0001155</a>: Wrong or just Sigma lens lens info with Pentax K-3
(Hannu Vuolasaho)
- <a href="http://dev.exiv2.org/issues/0001153">0001153</a>: Sony ILCE-6000 + Sony E 50mm F1.8 OSS .JPG files without lens model.
(Tim Sinthofen)
- <a href="http://dev.exiv2.org/issues/0001145">0001145</a>: Respect Sony/Minolta lenses with shared LensID such as Tamron SP AF 17-50mm F2.8 XR Di II LD
- <a href="http://dev.exiv2.org/issues/0001144">0001144</a>: Sigma 10-20mm f/4-5.6 EX DC is detected as Tamaron
(Simon Harhues)
- <a href="http://dev.exiv2.org/issues/0001142">0001142</a>: Manual lens does not get recognized: Beroflex zoom 500mm
(Simon Harhues / Niels Kristian Bech Jensen)
- <a href="http://dev.exiv2.org/issues/0001141">0001141</a>: Manual lens does not get recognized: Pentax macro 100mm
(Simon Harhues / Niels Kristian Bech Jensen)
- <a href="http://dev.exiv2.org/issues/0001118">0001118</a>: Add support for ZEISS Loxia 2/50 lens
(Eugen Neu)
- <a href="http://dev.exiv2.org/issues/0000834">0000834</a>: detection of Pentax DA 35/2.4 lens
(Guillaume Chauvat)
- <a href="http://dev.exiv2.org/issues/0000816">0000816</a>: Enable detection of Sigma 55-200mm lens
(Simon Harhues)
* Miscellaneous: (7)
- <a href="http://dev.exiv2.org/issues/0001177">0001177</a>: Resolve issues in target "Review"
- <a href="http://dev.exiv2.org/issues/0001168">0001168</a>: User support during v0.26 development
- <a href="http://dev.exiv2.org/issues/0001152">0001152</a>: MacOS-X Throws listxattr exception frequently
- <a href="http://dev.exiv2.org/issues/0001131">0001131</a>: Please explain the RCSID macro at the start of every .cpp file.
(Daniel Kaneider / Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0001115">0001115</a>: Clarification for the Exiv2 license
(Harry McKame / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001107">0001107</a>: DigiKam hangs during search for new items
(Sveinn Felli)
- <a href="http://dev.exiv2.org/issues/0000506">0000506</a>: Problem setting localedir on Windows
(Andreas Huggel)
* Metadata: (21)
- <a href="http://dev.exiv2.org/issues/0001246">0001246</a>: Add option -pe to exiv2(.exe) command-line arguments
- <a href="http://dev.exiv2.org/issues/0001201">0001201</a>: Rating=4 automatically added when writing sidecar
(Elfie Groslin / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001198">0001198</a>: Cannot read XMP metadata from (darktable) JPEG images
(Matthieu Volat)
- <a href="http://dev.exiv2.org/issues/0001197">0001197</a>: Add support for Sigma 150-500 on Canon with 1.4X TC
(Steve Fosdick / Niels Kristian Bech Jensen)
- <a href="http://dev.exiv2.org/issues/0001180">0001180</a>: Add tags defined by Adobe in the Cinema DNG Specification
(D Anderson)
- <a href="http://dev.exiv2.org/issues/0001164">0001164</a>: exiv2 tool crash with bad canon raw file
(Nicolas THOMASSON)
- <a href="http://dev.exiv2.org/issues/0001158">0001158</a>: GPSVersionID is allowed to store more than 4 bytes.
- <a href="http://dev.exiv2.org/issues/0001128">0001128</a>: New lens: TAMRON SP 70-200mm F/2.8 Di VC USD A009
(David Ramonet)
- <a href="http://dev.exiv2.org/issues/0001126">0001126</a>: Extracting Exif from PNG in Exiv2-0.25
(Mikayel Egibyan)
- <a href="http://dev.exiv2.org/issues/0001114">0001114</a>: negative values of type SByte displayed as positive numbers
(Norbert Wagner)
- <a href="http://dev.exiv2.org/issues/0001112">0001112</a>: lost timezone information in XMP dates
(Jakub Wilk)
- <a href="http://dev.exiv2.org/issues/0001108">0001108</a>: Recursively dump sub-files of an image
- <a href="http://dev.exiv2.org/issues/0001106">0001106</a>: Crash in exiv2 due to assertion when setting rating on jpg with a Casio makernote
(Luca Carlon / Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0001080">0001080</a>: Division by zero / crash on malformed input file
(Hanno Böck)
- <a href="http://dev.exiv2.org/issues/0001074">0001074</a>: ICC Profile in APP2 segment.
(Tim Zaman)
- <a href="http://dev.exiv2.org/issues/0001060">0001060</a>: ISO speed readout & low-light cameras
(Thomas Beutlich)
- <a href="http://dev.exiv2.org/issues/0001035">0001035</a>: Lens model not detected ( exiv2 -> LensFun -> darktable )
(Rodrigo De Leon)
- <a href="http://dev.exiv2.org/issues/0000922">0000922</a>: Add options -pS and -dI to application exiv2
- <a href="http://dev.exiv2.org/issues/0000855">0000855</a>: Segfault when accessing focalLength with 0.23
(Tobias E.)
- <a href="http://dev.exiv2.org/issues/0000756">0000756</a>: Access to ICC Profile (TAG: 0x8773) data in Exif as uninterpreted binary
(Ray NA)
- <a href="http://dev.exiv2.org/issues/0000676">0000676</a>: Patch for reading ICC color profiles
(Andreas Huggel)
* Makernote: (14)
- <a href="http://dev.exiv2.org/issues/0001283">0001283</a>: Exiv2 crash when Pentax makernote tags parser being used
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001253">0001253</a>: After setting LensModel, Lightroom no longer recognizes image
(Martin Stolle)
- <a href="http://dev.exiv2.org/issues/0001231">0001231</a>: Support for Canon TimeInfo makernote section
(Tobias E.)
- <a href="http://dev.exiv2.org/issues/0001225">0001225</a>: Nikon BarometerInfo
(Juergen Rose)
- <a href="http://dev.exiv2.org/issues/0001223">0001223</a>: Decoding ShutterCount for Pentax images
- <a href="http://dev.exiv2.org/issues/0001217">0001217</a>: Missing values for Exif.CanonCs.ISOSpeed tag 0x0010
(Niccolo Rigacci / Niels Kristian Bech Jensen)
- <a href="http://dev.exiv2.org/issues/0001215">0001215</a>: Exif.CanonSi.SubjectDistance seems to be in centimeters
(Niccolo Rigacci / Niels Kristian Bech Jensen)
- <a href="http://dev.exiv2.org/issues/0001208">0001208</a>: New values for Sony File Format
(Mihail Zenkov / Thomas Beutlich)
- <a href="http://dev.exiv2.org/issues/0001202">0001202</a>: Exif.CanonCs.FocusContinuous = 8 = Manual
(Sridhar Boovaraghavan)
- <a href="http://dev.exiv2.org/issues/0001189">0001189</a>: Updating time changes Makernote
(Stan Kaminski)
- <a href="http://dev.exiv2.org/issues/0001179">0001179</a>: Update Fujifilm Filmmode tag
(Pascal de Bruijn)
- <a href="http://dev.exiv2.org/issues/0001140">0001140</a>: Canon EF-S 24mm f/2.8 STM
(Anonymous Poster)
- <a href="http://dev.exiv2.org/issues/0001122">0001122</a>: Lens Detection with Teleconverter - Sigma 150-500mm f/5-6.3 APO DG OS HSM again
(Steve Fosdick)
- <a href="http://dev.exiv2.org/issues/0001117">0001117</a>: Problems with Sigma 18-300 F3.5-6.3 DC MACRO HSM Lens
(Terence Duell / Niels Kristian Bech Jensen)
* Not-a-bug: (18)
- <a href="http://dev.exiv2.org/issues/0001290">0001290</a>: write exif to a libgphoto2 buffer image
(Nacho Sánchez Moreno)
- <a href="http://dev.exiv2.org/issues/0001251">0001251</a>: Support for Canon PowerShot G7 X Mark II
(Wolfgang Ederer)
- <a href="http://dev.exiv2.org/issues/0001248">0001248</a>: floating point exception / crash on malformed input
(Hanno Böck)
- <a href="http://dev.exiv2.org/issues/0001221">0001221</a>: Export DNG to JPEG issues - missing metadata
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001185">0001185</a>: Crash in Exiv2::Exifdatum::Exifdatum(Exiv2::Exifdatum const&)
(Mykola Krachkovsky)
- <a href="http://dev.exiv2.org/issues/0001135">0001135</a>: Read Makernotes
(Schnitzel Foo / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001105">0001105</a>: exiv2 output is inconsistent and seemingly random 1% of the time
(Daniel Lu)
- <a href="http://dev.exiv2.org/issues/0001097">0001097</a>: Cannot write GPS coordinates to Canon CR2 files
(Meisam FS / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001092">0001092</a>: Samsung EX1 (TL500): Focal length wrong in RAW (correct for JPG)
(Marcel Müller)
- <a href="http://dev.exiv2.org/issues/0001083">0001083</a>: Exiv2::focalLength returns multiple values for CRW files
(Pedro Côrte-Real)
- <a href="http://dev.exiv2.org/issues/0001082">0001082</a>: Crash when removing property of unregistered XMP namespace
(Johannes Kapune / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0000828">0000828</a>: Method like ExifTags::taglist or IptcDataSets::dataSetList to get all XMP-tags
(Norbert Wagner)
- <a href="http://dev.exiv2.org/issues/0000740">0000740</a>: Error: Offset of directory Sony1, entry 0x2001 is out of bounds: Offset = 0x004a805e; truncating the entry
(Ward V)
- <a href="http://dev.exiv2.org/issues/0000715">0000715</a>: -funsigned-char breaks build with Sun Studio
(Pavel Heimlich)
- <a href="http://dev.exiv2.org/issues/0000714">0000714</a>: problem compiling with Sun Studio - visibility
(Pavel Heimlich)
- <a href="http://dev.exiv2.org/issues/0000538">0000538</a>: Run-time features must be separated from build-time features
(Nikolai Saoukh)
- <a href="http://dev.exiv2.org/issues/0000527">0000527</a>: Thumbnail extract fails when location ends in directory separator
(Jeff Woehler)
- <a href="http://dev.exiv2.org/issues/0000465">0000465</a>: Support standalone JPEG APP1 segments as an Image format
(Andreas Huggel)
* Samples: (3)
- <a href="http://dev.exiv2.org/issues/0001233">0001233</a>: Bugfixes in samples/geotag.cpp
(Anton Keks)
- <a href="http://dev.exiv2.org/issues/0001024">0001024</a>: Provide regular expression support for the exiv2 -g feature
- <a href="http://dev.exiv2.org/issues/0000918">0000918</a>: non-zero exit code when extracting thumbnails
(Romain D.)
* Tiff parser: (9)
- <a href="http://dev.exiv2.org/issues/0001244">0001244</a>: exiv2 without EXV_HAVE_MMAP throws an exception
- <a href="http://dev.exiv2.org/issues/0001224">0001224</a>: Crash when setting data in CRW
- <a href="http://dev.exiv2.org/issues/0001184">0001184</a>: digikam crash when importing Casio jpeg
(Roland Roberts)
- <a href="http://dev.exiv2.org/issues/0001182">0001182</a>: Exiv2 is unable to update any Exif.SubImageN.xxx tag such as Exif.SubImage1.DefaultScale in a DNG
- <a href="http://dev.exiv2.org/issues/0001175">0001175</a>: Exiv2 corrupts files larger than 2GB with Exif IFD at the end of the file
(LaserSoft Imaging)
- <a href="http://dev.exiv2.org/issues/0001146">0001146</a>: Crash when saving a rotated JPG image
(Uwe Klotz)
- <a href="http://dev.exiv2.org/issues/0001129">0001129</a>: Different behaviour of exiv2 between remote and local file.
- <a href="http://dev.exiv2.org/issues/0001095">0001095</a>: Unexpected Exif IFD next pointers should be ignored
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000900">0000900</a>: TIFF images lose XMP packet on write if exiv2 was compiled without XMP support
(Andreas Huggel)
* Testing: (6)
- <a href="http://dev.exiv2.org/issues/0001230">0001230</a>: Bug Hunt for v0.26
- <a href="http://dev.exiv2.org/issues/0001207">0001207</a>: digiKam maintenance tool to synchronize files metadata and database crash in Exiv2 (reentrancy issue ?)
(Uwe Haider)
- <a href="http://dev.exiv2.org/issues/0001057">0001057</a>: Implement target/modifier - (stdin/stdout) for exiv2 options -i (insert) and -e (extract)
- <a href="http://dev.exiv2.org/issues/0001045">0001045</a>: Add COPYRIGHT file to test/data/
(Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001042">0001042</a>: Exiv2 nulls file on CIFS share when modifying Exif.Photo.UserComment
(Calvin Browne)
- <a href="http://dev.exiv2.org/issues/0001023">0001023</a>: Fix make testx on trunk
* Video: (2)
- <a href="http://dev.exiv2.org/issues/0001280">0001280</a>: crash in Exiv2 shared library when a video file is under construction
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001139">0001139</a>: LibExiv2 0.25 crashes with digiKam version 4.14.0
(valerie venet)
* Website: (4)
- <a href="http://dev.exiv2.org/issues/0001279">0001279</a>: Release v0.26
- <a href="http://dev.exiv2.org/issues/0001111">0001111</a>: The web pages could use an overhaul
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0001087">0001087</a>: Web site: Broken link for "GIMP has adopted gexiv2"
(Thomas Beutlich / Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000679">0000679</a>: Provide 64bit exiv2 Windows Executable for download
(Andreas Huggel)
* Withdrawn: (26)
- <a href="http://dev.exiv2.org/issues/0000949">0000949</a>: exiv2 cannot read WB RGGB values in ARW files?
(Derek Cordeiro)
- <a href="http://dev.exiv2.org/issues/0000827">0000827</a>: Bug with Nikon D300 NEF - Exiv v.025 / 64 bits
(Vv Pz / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0000801">0000801</a>: Add Lens "Sigma 18-200mm f/3.5-6.3 DC OS HSM" for Canon
(Markus Schwarzenberg)
- <a href="http://dev.exiv2.org/issues/0000786">0000786</a>: thread safety of xmp toolkit
(Jens Mueller)
- <a href="http://dev.exiv2.org/issues/0000780">0000780</a>: save thumbnail
(Florian Kleber)
- <a href="http://dev.exiv2.org/issues/0000779">0000779</a>: Crash with unknown lens tags in DNG
(Moritz Moeller)
- <a href="http://dev.exiv2.org/issues/0000768">0000768</a>: Reading focal length in 35mm equivalent from Canon's EXIF
(Sergey Salnikov)
- <a href="http://dev.exiv2.org/issues/0000766">0000766</a>: exiv2 seem to decode less metadata from Olympus images than possible
(Christoph Anton Mitterer)
- <a href="http://dev.exiv2.org/issues/0000763">0000763</a>: Olympus E-510 RAW file (ORF) corrupted after geotagging
(Spica Han)
- <a href="http://dev.exiv2.org/issues/0000762">0000762</a>: Fail to set metadata to a tif file
(Kent Fu)
- <a href="http://dev.exiv2.org/issues/0000744">0000744</a>: Regression: can’t get a section’s description in 0.21
(Olivier Tilloy)
- <a href="http://dev.exiv2.org/issues/0000682">0000682</a>: Olympus (E-1 and E-300) makernote flavour not supported: libexiv2 destroy some exif data on write
(Johann-Nikolaus Andreae)
- <a href="http://dev.exiv2.org/issues/0000681">0000681</a>: Copy exif data when export preview
(FV P)
- <a href="http://dev.exiv2.org/issues/0000680">0000680</a>: Provide the organize binary for download in the Windows package
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000667">0000667</a>: Update Canon makernote
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000648">0000648</a>: backup files
(Vladimir Nadvornik)
- <a href="http://dev.exiv2.org/issues/0000608">0000608</a>: list of supported formats
(Vladimir Nadvornik)
- <a href="http://dev.exiv2.org/issues/0000605">0000605</a>: Bitmask output should show set bits for which there is no lookup value
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000576">0000576</a>: 24x36 equivalent focal length
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000557">0000557</a>: Debian Bug report logs - #438224libexiv2-0: Wrong values on exposure time
(Mark Purcell)
- <a href="http://dev.exiv2.org/issues/0000545">0000545</a>: rotation of sony a700 raw files (*.arw) not deduced correctly
(Markus Spring)
- <a href="http://dev.exiv2.org/issues/0000544">0000544</a>: Sony camera makernote tags should be read as Minolta does
(Stefano -)
- <a href="http://dev.exiv2.org/issues/0000543">0000543</a>: make exiv2 respect makernote offset that Microsoft WIC tools introduce when it edits photos
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000515">0000515</a>: exiv2 0.14 installs msg catalog as exiv2.mo instead of exiv2-<so_major>.mo
(Achim Bohnet)
- <a href="http://dev.exiv2.org/issues/0000494">0000494</a>: Some EXIF data not retrieved from Canon RAW files
(Paul Waldo)
- <a href="http://dev.exiv2.org/issues/0000470">0000470</a>: Provide a means for apps to probe the library which tags can be written to for a given format
(Andreas Huggel)
* Xmp: (18)
- <a href="http://dev.exiv2.org/issues/0001284">0001284</a>: Possible exiv2 0.26-svn bug
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001281">0001281</a>: crash in Exiv2, XMP parser class and in Adobe XMP SDK
(Wil Cowb)
- <a href="http://dev.exiv2.org/issues/0001276">0001276</a>: fails to read any XMP metadata when duplicates present
(Aerilius .)
- <a href="http://dev.exiv2.org/issues/0001229">0001229</a>: exiv2 -pX for image with multiple APP1/xap segments prints every APP1/xap segment.
- <a href="http://dev.exiv2.org/issues/0001193">0001193</a>: XMP Specification November 2014 updates
(Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001190">0001190</a>: Support for CRS and CRSS XMP namespace and properties
(Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001187">0001187</a>: Crash while reading in parallel threads
(Taras Kushnir)
- <a href="http://dev.exiv2.org/issues/0001148">0001148</a>: XMP Rights field padded with spaces
(John Huggins)
- <a href="http://dev.exiv2.org/issues/0001133">0001133</a>: " **(process:29414): WARNING: No namespace info available for xmp prefix 'lr'"
(Vey Zimba / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001116">0001116</a>: Issues with namespace 'video'
(Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0001093">0001093</a>: ExifEX XMP namespace and properties
(Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001081">0001081</a>: Read XMP values from CR2 raw file when stored in XMLPacket
(Eric Mesa / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0001064">0001064</a>: exiv2 -iX <file.jpg> deletes Makernote
(Alan Pater)
- <a href="http://dev.exiv2.org/issues/0000751">0000751</a>: adobe xmp namespace
(Adrian F)
- <a href="http://dev.exiv2.org/issues/0000742">0000742</a>: External XMPSDK and/or XMPSDK 2014.12
(Nikolai Saoukh / Andreas Huggel)
- <a href="http://dev.exiv2.org/issues/0000640">0000640</a>: method is missing in Exiv2 to get list of known XMP namespaces
(mikolaj -)
- <a href="http://dev.exiv2.org/issues/0000601">0000601</a>: Metadata conversion enhancements
(Andreas Huggel / Alan Pater)
- <a href="http://dev.exiv2.org/issues/0000599">0000599</a>: XMP packets split across multiple APP1 segments
(Andreas Huggel)
<a href="#toc">TOC</a>
<a name="v0.25"> </a>
Changes from version 0.24 to 0.25
---------------------------------
* Exiv2 library
- <a title="bug 0000442" href="http://dev.exiv2.org/issues/0000442">0000442</a>: exivsimple has array index errors when stripping quotes from trivial input strings
(Thomas Beutlich)
- <a title="bug 0000707" href="http://dev.exiv2.org/issues/0000707">0000707</a>: Use SVN eol-style LF on all files
(Andreas Huggel, Robin Mills)
- <a title="bug 0000886" href="http://dev.exiv2.org/issues/0000886">0000886</a>: Access violation on IptcData::operator[] when key is invalid
(Robin Mills)
- <a title="bug 0000901" href="http://dev.exiv2.org/issues/0000901">0000901</a>: PNG images with tiff tags throw exceptions
- <a title="bug 0000934" href="http://dev.exiv2.org/issues/0000934">0000934</a>: Plasma kde crashes when specific jpeg is on the Desktop
(Robin Mills)
- <a title="bug 0000945" href="http://dev.exiv2.org/issues/0000945">0000945</a>: TIFF parser,Binary array elements should be decoded using the Makernote's endianness, not that of the image
(Andreas Huggel)
- <a title="bug 0000970" href="http://dev.exiv2.org/issues/0000970">0000970</a>: Coverity scan : Issue CID 981992, 981993
(Mahesh Hegde, Phil Harvey, Niels Kristian Bech Jensen)
- <a title="bug 0000984" href="http://dev.exiv2.org/issues/0000984">0000984</a>: Fix 'failed to rename file' problem caused by virus scanner in windows
(Axel Waggershauser, Thomas Beutlich, Robin Mills)
- <a title="bug 0000989" href="http://dev.exiv2.org/issues/0000989">0000989</a>: Wrong key name in output of addmodel sample
(Thomas Beutlich, Robin Mills)
- <a title="bug 0001019" href="http://dev.exiv2.org/issues/0001019">0001019</a>: Cppcheck: Suspicious usage of 'sizeof' with a numeric constant as parameter.
(Thomas Beutlich, Robin Mills)
- <a title="bug 0001021" href="http://dev.exiv2.org/issues/0001021">0001021</a>: Printing tags does not honor multi-byte label widths correctly
(Thomas Schmidt, Robin Mills)
- <a title="bug 0001039" href="http://dev.exiv2.org/issues/0001039">0001039</a>: Wrong ApertureValue written
(Torsten Flammiger, Robin Mills)
- <a title="bug 0001043" href="http://dev.exiv2.org/issues/0001043">0001043</a>: pyexiv2 fails on cifs shares on an Ubuntu client
(thoralf schulze, Robin Mills, Thomas Beutlich)
- <a title="bug 0001044" href="http://dev.exiv2.org/issues/0001044">0001044</a>: TIFF parser,Parse TIFF PageNumber
(Robin Mills)
- <a title="bug 0001047" href="http://dev.exiv2.org/issues/0001047">0001047</a>: Add new sample applications exifdata and exivvalue
(Robin Mills)
- <a title="bug 0001053" href="http://dev.exiv2.org/issues/0001053">0001053</a>: Add option -K Key (--key Key) to specify one or more keys to output.
(Robin Mills)
- <a title="bug 0001065" href="http://dev.exiv2.org/issues/0001065">0001065</a>: Is fileProtocol thread-safe?
(Max Pozdeev, Robin Mills)
- <a title="bug 0001072" href="http://dev.exiv2.org/issues/0001072">0001072</a>: test/tiff-test.sh is failing on Motorola PPC
(Robin Mills)
- <a title="bug 0001073" href="http://dev.exiv2.org/issues/0001073">0001073</a>: test/bugfixes-test.sh is producing results that change with the time-zone
(Robin Mills)
- <a title="bug 0001084" href="http://dev.exiv2.org/issues/0001084">0001084</a>: Garbage in Exif.Image.Make and Exif.Image.Model in some Samsung SRW files
* XMP related
- <a title="bug 0000774" href="http://dev.exiv2.org/issues/0000774">0000774</a>: "exiv2 -eX" followed by "exiv2 -iX" produces invalid XMP metadata packet
(Alan Pater)
- <a title="bug 0000784" href="http://dev.exiv2.org/issues/0000784">0000784</a>: Writing Xmp.lr.hierarchicalSubject writes wrong datatype
(Lucas Beeler, Alan Pater)
- <a title="bug 0000863" href="http://dev.exiv2.org/issues/0000863">0000863</a>: Unicode issue writing to XMP sidecar
- <a title="bug 0000864" href="http://dev.exiv2.org/issues/0000864">0000864</a>: Mapping of Exif DateTime fields to XMP changed in spec
(Marcel Wiesweg, Alan Pater)
- <a title="bug 0000937" href="http://dev.exiv2.org/issues/0000937">0000937</a>: Support Darwin Core (DwC) XMP metadata
(Alan Pater)
- <a title="bug 0000946" href="http://dev.exiv2.org/issues/0000946">0000946</a>: Xmp.MPReg.PersonLiveCID vs. PersonLiveIdCID
(Phil Harvey, Alan Pater)
- <a title="bug 0001040" href="http://dev.exiv2.org/issues/0001040">0001040</a>: MWG-KW schema
(Alan Pater)
- <a title="bug 0001054" href="http://dev.exiv2.org/issues/0001054">0001054</a>: Overhaul exiv2json.cpp to build a deeply recursive JSON tree of XMP data
(Robin Mills)
- <a title="bug 0001058" href="http://dev.exiv2.org/issues/0001058">0001058</a>: xml:lang should be treated case insensitive
(Tobias E., Robin Mills)
- <a title="bug 0001059" href="http://dev.exiv2.org/issues/0001059">0001059</a>: Support ACDSee XMP properties
(Alan Pater)
- <a title="bug 0001063" href="http://dev.exiv2.org/issues/0001063">0001063</a>: Google Photo Sphere XMP namespace and properties
(Alan Pater)
* Makernote related
- <a title="bug 0000833" href="http://dev.exiv2.org/issues/0000833">0000833</a>: Sony NEX Lens Information
(Pascal de Bruijn, Torsten Bronger, Robin Mills)
- <a title="bug 0000919" href="http://dev.exiv2.org/issues/0000919">0000919</a>: Handle Pentax makernotes in samsung-rebranded cameras
(Michael Karcher, Niels Kristian Bech Jensen)
- <a title="bug 0000924" href="http://dev.exiv2.org/issues/0000924">0000924</a>: Olympus XZ-1 FocusDistance incorrect
(Niels Kristian Bech Jensen)
- <a title="bug 0000929" href="http://dev.exiv2.org/issues/0000929">0000929</a>: Support Panasonic Makernote
(Nicolas Nicofo, T Modes, Niels Kristian Bech Jensen)
- <a title="bug 0000933" href="http://dev.exiv2.org/issues/0000933">0000933</a>: Casio Makernotes
(T Modes, Niels Kristian Bech Jensen)
- <a title="bug 0000954" href="http://dev.exiv2.org/issues/0000954">0000954</a>: patch: support for Exif.CanonFi.FocusDistanceUpper and Exif.CanonFi.FocusDistanceLower
(Roman Lebedev, Niels Kristian Bech Jensen)
- <a title="bug 0000965" href="http://dev.exiv2.org/issues/0000965">0000965</a>: Pentax K-3 MakerNote not recognized due to different maker tag
(Pascal de Bruijn, Niels Kristian Bech Jensen)
- <a title="bug 0000972" href="http://dev.exiv2.org/issues/0000972">0000972</a>: Update Panasonic EXIF Information
(Bernd Steinhauser, T Modes, Niels Kristian Bech Jensen)
- <a title="bug 0000981" href="http://dev.exiv2.org/issues/0000981">0000981</a>: Local build crashes in olympusmn.cpp
(Robin Mills)
- <a title="bug 0001037" href="http://dev.exiv2.org/issues/0001037">0001037</a>: MeasuredEV in CanonSi
(Axel Waggershauser, Robin Mills)
- <a title="bug 0001062" href="http://dev.exiv2.org/issues/0001062">0001062</a>: Exif.NikonWt.Timezone translated value can have 'cruft'
(Robin Mills)
* Lens support related
- <a title="bug 0000834" href="http://dev.exiv2.org/issues/0000834">0000834</a>: detection of Pentax DA 35/2.4 lens
(Jaroslav and Pascal, Andreas Huggel)
- <a title="bug 0000839" href="http://dev.exiv2.org/issues/0000839">0000839</a>: Canon EOS M EF-M lenses
(Pascal de Bruijn, Robin Mills)
- <a title="bug 0000926" href="http://dev.exiv2.org/issues/0000926">0000926</a>: Lens matching on Canon
(Niels Kristian Bech Jensen)
- <a title="bug 0000927" href="http://dev.exiv2.org/issues/0000927">0000927</a>: Sigma Lens Not detected
(Niels Kristian Bech Jensen)
- <a title="bug 0000938" href="http://dev.exiv2.org/issues/0000938">0000938</a>: Tamron 18-270 is not detected anymore
(Torsten Bronger, Niels Kristian Bech Jensen)
- <a title="bug 0000942" href="http://dev.exiv2.org/issues/0000942">0000942</a>: Wrong aperture for Tamron 70-300?
(Torsten Bronger, Niels Kristian Bech Jensen)
- <a title="bug 0000943" href="http://dev.exiv2.org/issues/0000943">0000943</a>: Tamron lens names: USD excludes AF
(Torsten Bronger, Niels Kristian Bech Jensen)
- <a title="bug 0000944" href="http://dev.exiv2.org/issues/0000944">0000944</a>: Doubled "AF" for some Tokina lens model names on Nikon cameras
(Torsten Bronger, Niels Kristian Bech Jensen)
- <a title="bug 0000947" href="http://dev.exiv2.org/issues/0000947">0000947</a>: LensID 137 in exiv2 0.23 and 0.24 instead of Tamron as Sigma ???
(Thomas Mörschel, Niels Kristian Bech Jensen)
- <a title="bug 0000948" href="http://dev.exiv2.org/issues/0000948">0000948</a>: Recognize Samsung NX 10mm Fisheye
(Pascal de Bruijn, Niels Kristian Bech Jensen)
- <a title="bug 0000951" href="http://dev.exiv2.org/issues/0000951">0000951</a>: Pentax/Sigma 24-70mm F2.8 IF EX DG HSM data
(Terence Duell, Niels Kristian Bech Jensen)
- <a title="bug 0000953" href="http://dev.exiv2.org/issues/0000953">0000953</a>: patch: add Tamron AF 18-270mm f/3.5-6.3 Di II VC PZD for Canon
(Pekka Sarnila, Niels Kristian Bech Jensen)
- <a title="bug 0000959" href="http://dev.exiv2.org/issues/0000959">0000959</a>: Wrong value in Exiv data for Sigma lenses (24-105 & 50)
(Niels Kristian Bech Jensen)
- <a title="bug 0000969" href="http://dev.exiv2.org/issues/0000969">0000969</a>: Recognising Sigma 50mm F1.4 DG HSM
(Robin Mills, Niels Kristian Bech Jensen)
- <a title="bug 0000982" href="http://dev.exiv2.org/issues/0000982">0000982</a>: Improve detection of Canon lenses sharing the same IDs
(Alexander Steffen, Niels Kristian Bech Jensen)
- <a title="bug 0000988" href="http://dev.exiv2.org/issues/0000988">0000988</a>: New Lens: Samsung NX 16-50 PZ ED OIS
(Pascal de Bruijn, Robin Mills)
- <a title="bug 0000996" href="http://dev.exiv2.org/issues/0000996">0000996</a>: Sigma 28mm 1.8 EX DG MACRO wrongly detected as "lens 150"
(Niels Kristian Bech Jensen)
- <a title="bug 0001000" href="http://dev.exiv2.org/issues/0001000">0001000</a>: trivial: samsung lens id re-sorting
(Pascal de Bruijn, Robin Mills)
- <a title="bug 0001005" href="http://dev.exiv2.org/issues/0001005">0001005</a>: trivial: Canon EF-S 24mm f/2.8 STM detection
(Pascal de Bruijn)
- <a title="bug 0001026" href="http://dev.exiv2.org/issues/0001026">0001026</a>: Lens not recognized
(Bastien O, Niels Kristian Bech Jensen)
- <a title="bug 0001027" href="http://dev.exiv2.org/issues/0001027">0001027</a>: Lens not recognized
(Niels Kristian Bech Jensen)
- <a title="bug 0001036" href="http://dev.exiv2.org/issues/0001036">0001036</a>: New lens ID for Tamron 70-300mm f/4-5.6 Di VC USD (Canon mount)
(C M, Niels Kristian Bech Jensen)
- <a title="bug 0001051" href="http://dev.exiv2.org/issues/0001051">0001051</a>: Lens request Tamron SP AF 28-75mm F/2.8 XR Di LD Aspherical [IF] MACRO
(Petrov Vlad, Niels Kristian Bech Jensen)
- <a title="bug 0001070" href="http://dev.exiv2.org/issues/0001070">0001070</a>: New lens: Sigma 150-600mm f/5-6.3 DG OS HSM Contemporary for Canon
(Alexander Steffen, Niels Kristian Bech Jensen)
- <a title="bug 0001079" href="http://dev.exiv2.org/issues/0001079">0001079</a>: Rename Canon EF 50mm f/1.8 MkII
(Niels Kristian Bech Jensen)
* Build environment related
- <a title="bug 0000697" href="http://dev.exiv2.org/issues/0000697">0000697</a>: config/ConfigureChecks.cmake: STRERROR_R_CHAR_P revisited
(Nikolai Saoukh, Robin Mills)
- <a title="bug 0000857" href="http://dev.exiv2.org/issues/0000857">0000857</a>: CMake compilation issue on MacOS-X 4.5.1/Mountain Lion
(Robin Mills)
- <a title="bug 0000859" href="http://dev.exiv2.org/issues/0000859">0000859</a>: Compilation warning using Clang
(Davide Anastasia, Andreas Huggel, Robin Mills)
- <a title="bug 0000905" href="http://dev.exiv2.org/issues/0000905">0000905</a>: Exiv2 does not run on Windows Vista
(Daniel Kaneider, Robin Mills)
- <a title="bug 0000916" href="http://dev.exiv2.org/issues/0000916">0000916</a>: Implement "Cloud Ready"
(Robin Mills, Tuan Nhu)
- <a title="bug 0000920" href="http://dev.exiv2.org/issues/0000920">0000920</a>: Cross compiling for Android on OSX is keep using '/usr/bin/gcc'
(Tao Wang, Gilles Caulier, Robin Mills)
- <a title="bug 0000939" href="http://dev.exiv2.org/issues/0000939">0000939</a>: make gen.py Python3 compatible
(Alex Turbov, Robin Mills)
- <a title="bug 0000940" href="http://dev.exiv2.org/issues/0000940">0000940</a>: Compilation warnings
(Robin Mills)
- <a title="bug 0000966" href="http://dev.exiv2.org/issues/0000966">0000966</a>: svn_version.sh not executable
(Michael Pratt, Robin Mills)
- <a title="bug 0000974" href="http://dev.exiv2.org/issues/0000974">0000974</a>: svn_version.h not installed, but included in installed version.hpp
(Jehan Pagès, Robin Mills)
- <a title="bug 0000976" href="http://dev.exiv2.org/issues/0000976">0000976</a>: Include Run-Time Search Path for Cmake Builds in exiv2 binary
(Gilles Caulier, Nehal J Wani)
- <a title="bug 0000979" href="http://dev.exiv2.org/issues/0000979">0000979</a>: Temporary File Rename Issue on Windows/MSVC
(Robin Mills)
- <a title="bug 0000983" href="http://dev.exiv2.org/issues/0000983">0000983</a>: Fix Compiler Warnings when using GCC 4.8.1-4
(Nehal J Wani)
- <a title="bug 0000991" href="http://dev.exiv2.org/issues/0000991">0000991</a>: Windows build broken (CMake+svn_version.sh)
(Daniel Kaneider, Robin Mills)
- <a title="bug 0000993" href="http://dev.exiv2.org/issues/0000993">0000993</a>: Generating svn_version.h with CMake