forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.360
12506 lines (10269 loc) · 452 KB
/
CHANGES.360
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
Release 3.6.0 (Public Release - 2011-01-06)
- Updated contents for the final release version of DCMTK 3.6.0.
Affects: ANNOUNCE.360
CMakeLists.txt
INSTALL
VERSION
config/configure
config/configure.in
doxygen/manpages/man1/*
**** Changes from 2011.01.05 (schlachter)
- Remove all windows line endings that were recently introduced.
Affects: ofstd/tests/tstthred.cc
**** Changes from 2011.01.05 (onken)
- Updated thread test in order to reflect missing OFSemaphore class
on Mac OS X.
Affects: ofstd/tests/tstthred.cc
**** Changes from 2011.01.05 (riesmeier)
- Updated information on tested FreeBSD systems.
Affects: INSTALL
**** Changes from 2011.01.04 (onken)
- Disabled class OFSemaphore under Mac OS X since semaphores must be named
in Mac OS X to work properly (currently, they are not). Threads are now
again enabled by default in Mac OS X with CMake.
Affects: CMakeLists.txt
INSTALL
ofstd/include/dcmtk/ofstd/ofthread.h
ofstd/libsrc/ofthread.cc
**** Changes from 2011.01.03 (riesmeier)
- Updated copyright date to the current year.
Affects: COPYRIGHT
- Updated details on tested systems based on feedback from external testers.
Affects: INSTALL
- Commented out unused variable in order to avoid warning message (gcc 2.95.3).
Affects: dcmjpls/libcharls/header.cc
**** Changes from 2010.12.23 (riesmeier)
- Updated contents for DCMTK 3.6.0-RC3 (third release candidate).
Affects: CMakeLists.txt
VERSION
config/configure
config/configure.in
doxygen/manpages/man1/*
- Added FreeBSD 6.4 and 8.1 (x86) with gcc to the list of tested systems.
Affects: INSTALL
**** Changes from 2010.12.22 (riesmeier)
- Added list of people who have contributed to this new release of the DCMTK.
Affects: ANNOUNCE.360
- Fixed some typos and little inconsistencies. Updated homepage of libxml.
Affects: INSTALL
- Added support for OpenBSD 4.x: Do not specify any additional C/C++ flags.
Affects: config/configure
config/configure.in
- OpenBSD does not like sigfillset() to be called with :: namespace prefix.
Affects: oflog/libsrc/threads.cc
- Added OpenBSD 4.4 with gcc 3.3.5 (propolice) to the list of tested systems.
Affects: INSTALL
**** Changes from 2010.12.21 (onken)
- Fixed wrong response assignment in DcmSCU's C-STORE code. Thanks to
forum user "takeos" for the hint and fix.
Affects: dcmnet/libsrc/scu.cc
**** Changes from 2010.12.20 (schlachter)
- Fixed on FreeBSD by removing flags that hide strlcpy() and strlcat().
Affects: CMakeLists.txt
- Correctly detect netinet/tcp.h and other headers on FreeBSD.
Affects: CMake/GenerateDCMTKConfigure.cmake
**** Changes from 2010.12.20 (riesmeier)
- Fixed possible NULL pointer dereferencing when checking the meta-header
version (and no data dictionary is loaded).
Affects: dcmdata/libsrc/dcfilefo.cc
- Fixed wrong console application description (apparently copied from another
tool) and output the resource identifier in debug mode to the logger.
Affects: dcmdata/tests/tstpread.cc
- Added explicit type casts in order to keep gcc 2.95.3 quiet.
Affects: ofstd/tests/toffile.cc
dcmdata/libsrc/dcmetinf.cc
- Added short description on environment variables CC and CFLAGS.
Affects: INSTALL
- Updated information on IRIX system that was used for cross-platform testing.
Affects: INSTALL
**** Changes from 2010.12.17 (riesmeier)
- Include another system header (stdio.h) needed for IRIX 6.3 with gcc 2.95.3.
Affects: dcmwlm/wwwapps/Makefile.dep
dcmwlm/wwwapps/preplock.cc
- Check whether "feof" and "ferror" are defined as macros (e.g. on IRIX 6.3).
Affects: ofstd/include/dcmtk/ofstd/offile.h
- Updated hyperlink to SGI's Notes on building Open Source software on IRIX.
Affects: INSTALL
**** Changes from 2010.12.16 (riesmeier)
- Fixed initialization of OFString variable (reported by gcc 2.95.3).
Thanks to Andreas Barth <[email protected]> for the hint.
Affects: dcmtls/libsrc/tlsscu.cc
- Added another Linux system to the list of tested Unix-like systems.
Affects: INSTALL
- Slightly revised contents of the HISTORY file.
Affects: HISTORY
- Added explicit type cast in order to keep VisualStudio 2005 quiet.
Affects: dcmdata/tests/i2dbmp.cc
**** Changes from 2010.12.15 (riesmeier)
- Updated contents for DCMTK 3.6.0-RC2 (second release candidate).
Affects: CMakeLists.txt
VERSION
config/configure
config/configure.in
doxygen/manpages/man1/*
- Updated list of tested Unix-like systems (some are still marked with a '?').
Affects: INSTALL
- Added missing prefix "ios::" to I/O manipulator "fixed" (reported on HP-UX).
Affects: dcmpstat/apps/dcmmklut.cc
**** Changes from 2010.12.15 (schlachter)
- Fixed a compile time error on HP-UX in oflog.
Affects: oflog/libsrc/unixsock.cc
- Made OFFile compile successfully on HP-UX.
Affects: ofstd/include/dcmtk/ofstd/offile.h
- Fixed a problem with a missing prototype for vsnprintf on HP-UX.
Affects: config/configure
config/configure.in
config/include/dcmtk/config/cfunix.h.in
dcmdata/apps/xml2dcm.cc
dcmqrdb/libsrc/dcmqrcnf.cc
dcmsr/libsrc/dsrxmld.cc
**** Changes from 2010.12.13 (schlachter)
- Fixed the explicit LFS test which produced wrong results on FreeBSD.
Affects: config/aclocal.m4
config/configure
- Fix toffile by moving some casts to the correct position.
Affects: ofstd/tests/toffile.cc
**** Changes from 2010.12.13 (riesmeier)
- Removed FreeBSD flags introduced a couple of months ago since they caused
more problems than they solved.
Thanks to Alexander Haderer <[email protected]> for the hint.
Affects: config/configure
config/configure.in
- Consistently use "large file support" for LFS instead of "long file support".
Affects: config/aclocal.m4
config/include/dcmtk/config/cfunix.h.in
- Added LFS configure options and other minor changes.
Affects: INSTALL
**** Changes from 2010.12.10 (riesmeier)
- Slightly revised wording after further proof-reading.
Affects: ANNOUNCE.360
**** Changes from 2010.12.09 (riesmeier)
- Updated content of anouncement file to be used for the official release.
However, this is only a first version that will certainly be updated again.
Affects: ANNOUNCE.360
- Fixed minor inconsistencies (mainly in comments).
Affects: CMake/GenerateDCMTKConfigure.cmake
- Consistently use "large file support" for LFS instead of "long file support".
Affects: config/configure
config/configure.in
- Fixed typo in checking message.
Affects: config/aclocal.m4
config/configure
config/configure.in
- Removed outdated note that wlmscpfs does not support multi-processing on
Windows systems.
Affects: INSTALL
**** Changes from 2010.12.08 (schlachter)
- Explicitely check for libtiff 3.7.0 or newer.
Affects: dcmimage/libsrc/dipitiff.cc
- Document libtiff 3.7.4 requirement on windows.
Affects: INSTALL
**** Changes from 2010.12.08 (riesmeier)
- Added note that libtiff releases prior to version 3.7.0 will not work.
Affects: INSTALL
- Fixed issue when linking "oflog" on Cygwin with CMake build system.
Affects: oflog/libsrc/CMakeLists.txt
- Disable currently unused wide character file I/O functions in order to avoid
problems with old compilers (e.g. gcc 2.95.3).
Affects: config/docs/macros.txt
ofstd/include/dcmtk/ofstd/offile.h
**** Changes from 2010.12.07 (riesmeier)
- Updated list of tested Windows systems and some other related sections.
Affects: INSTALL
**** Changes from 2010.12.06 (schlachter)
- Fixed crash in oflog on Mac OS X 10.4.1 with gcc 4.0.1 due to different order
of execution of global destructors.
Thanks to Bernd Kuemmerlen <[email protected]> for the report.
Affects: oflog/libsrc/oflog.cc
- Made the docs for the NDC clearer on how to avoid memleaks.
Affects: oflog/include/dcmtk/oflog/ndc.h
- Fixed a correct warning from Intel Compiler 11.1 for shifting a Uint8 by 8.
Affects: dcmdata/libi2d/i2dbmps.cc
- Fixed the i2dbmp test case for windows by opening files in binary mode.
Affects: dcmdata/tests/i2dbmp.cc
- Removed BufferSize option from FileAppender due to problems with gcc 2.95.3.
Affects: oflog/include/dcmtk/oflog/fileap.h
oflog/libsrc/fileap.cc
- Don't explicitely try to catch std::exception.
Affects: oflog/libsrc/appender.cc
oflog/libsrc/config.cc
oflog/libsrc/ndc.cc
oflog/libsrc/threads.cc
**** Changes from 2010.12.06 (riesmeier)
- Fixed issue when calling "make install-html" without "make html".
Thanks to Juergen Salk <[email protected]> for pointing this out.
Affects: doxygen/Makefile.in
- Added explicit default constructor to keep Intel Compiler 11.1 quiet.
Affects: dcmimgle/include/dcmtk/dcmimgle/dipxrept.h
- Moved option "-maxdepth" to beginning of find command to avoid warnings.
Affects: dcmwlm/data/Makefile.in
- Fixed issue with large file support for current Cygwin systems (1.7.7-1).
Affects: ofstd/include/dcmtk/ofstd/offile.h
- Restructured calculation of seek position in order to avoid warning messages.
Affects: ofstd/tests/toffile.cc
- Fixed little inconsistency regarding the libsndfile configure options.
Thanks to Juergen Salk <[email protected]> for the report and fix.
Affects: config/configure
config/configure.in
**** Changes from 2010.12.03 (riesmeier)
- Fixed regular expression for the detection of old Mac OS X versions (Darwin
8 and 9). Thanks to Bernd Kuemmerlen <[email protected]> for the
report and suggested fix.
Affects: config/configure
config/configure.in
**** Changes from 2010.12.02 (riesmeier)
- Added linker flags to a different CMake variable in order to avoid
auto-importing warnings on MinGW systems (previously, flags were ignored).
Affects: CMakeLists.txt
- Updated latest tested version number of LIBPNG.
Affects: INSTALL
**** Changes from 2010.12.01 (schlachter)
- Fixed build problem with MSC6 when zlib support is enabled.
Affects: dcmdata/libsrc/dcistrmz.cc
**** Changes from 2010.12.01 (riesmeier)
- Updated contents for DCMTK 3.6.0-RC1 (first release candidate).
Affects: CMakeLists.txt
VERSION
config/configure
config/configure.in
- Updated contents for upcoming DCMTK 3.6.0 release.
Added: ANNOUNCE.360
CHANGES.360
Removed: ANNOUNCE.355
CHANGES.355
Affects: INSTALL
- Added OFFIS copyright header (beginning with the year 1994).
Affects: dcmnet/include/dcmtk/dcmnet/assoc.h
dcmnet/include/dcmtk/dcmnet/dcompat.h
dcmnet/include/dcmtk/dcmnet/dicom.h
dcmnet/include/dcmtk/dcmnet/dimse.h
dcmnet/include/dcmtk/dcmnet/diutil.h
dcmnet/include/dcmtk/dcmnet/dul.h
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dcompat.cc
dcmnet/libsrc/dimcancl.cc
dcmnet/libsrc/dimcmd.cc
dcmnet/libsrc/dimcmd.h
dcmnet/libsrc/dimecho.cc
dcmnet/libsrc/dimfind.cc
dcmnet/libsrc/dimmove.cc
dcmnet/libsrc/dimse.cc
dcmnet/libsrc/dimstore.cc
dcmnet/libsrc/diutil.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulconst.cc
dcmnet/libsrc/dulextra.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulfsm.h
dcmnet/libsrc/dulparse.cc
dcmnet/libsrc/dulpres.cc
dcmnet/libsrc/dulpriv.h
dcmnet/libsrc/dulstruc.h
- Fixed wrong installation directory for HTML documentation and Manpages.
Affects: doxygen/CMakeLists.txt
- Added linker flags to avoid auto-importing warnings on MinGW systems.
Affects: CMakeLists.txt
- Removed extra token after #endif directive (reported on a MinGW system).
Affects: oflog/libsrc/winsock.cc
- Fixed syntax error introduced with yesterday's commit (flags for Mac OS X).
Affects: CMakeLists.txt
- Fixed wrong name of dcmqrti tool (was "ti" in previous DCMTK versions).
Affects: dcmqrdb/docs/dcmqrscp.man
dcmqrdb/docs/dcmqrti.man
- Updated man pages.
Affects: doxygen/manpages/man1/*
**** Changes from 2010.11.30 (onken)
- Set extra flags for compiling without problems on Mac OS X.
Affects: CMakeLists.txt
**** Changes from 2010.11.30 (riesmeier)
- Fixed incorrect variable name to be replaced in configuration file by "sed".
Affects: doxygen/Makefile.in
- Updated man pages.
Affects: doxygen/manpages/man1/*
- Updated latest tested CMake version to 2.8.3.
Affects: CMakeLists.txt
- Made sure that CMake installs the correct documentation files. Also added
created files to the "make clean" target (only works partly for CMake 2.4).
Finally, "make DOXYGEN" now works again (as it did previously).
Affects: doxygen/CMakeLists.txt
- Fixed minor typos.
Affects: CMake/3rdparty.cmake
**** Changes from 2010.11.29 (riesmeier)
- Fixed issue with CMake versions prior to 2.8 (or prior to 2.6?).
Affects: doxygen/CMakeLists.txt
**** Changes from 2010.11.29 (schlachter)
- Made CMake build the doxygen documentation in the binary dir and added new
targets "html" and "man" that only build parts of the available docs.
Affects: doxygen/CMakeLists.txt
doxygen/Makefile.in
doxygen/htmldocs.cfg
doxygen/manpages.cfg
- Fixed some new issues with doxygen and CMake.
Affects: doxygen/CMakeLists.txt
doxygen/htmldocs.cfg
doxygen/manpages.cfg
- Fixed stack overflow in libi2d with some JPEG data streams.
Thanks to Jargo Koster <[email protected]> for the report.
Affects: dcmdata/libi2d/i2djpgs.cc
- Correctly determine the remote address if only a socket fd is given.
Thanks to Alexander Haderer <[email protected]> for the patch.
Affects: dcmnet/libsrc/dul.cc
**** Changes from 2010.11.26 (riesmeier)
- Added definition of "DEBUG" to debug mode (since CMake does not do this
automatically). Also did some further clean-up of the main CMake file.
Affects: CMakeLists.txt
**** Changes from 2010.11.25 (riesmeier)
- Removed redundant include directories and installation commands. Also changed
the way version dependent documentation files are installed.
Affects: CMakeLists.txt
- Changed the way version dependent documentation files are installed.
Affects: Makefile
config/rootconf
- Minor changes, e.g. fixed inconsistent whitespaces and newlines.
Affects: CMake/3rdparty.cmake
dcmdata/apps/CMakeLists.txt
**** Changes from 2010.11.24 (riesmeier)
- Output a warning message when decompressing a JPEG compressed image with
YCbCr color model and BitsStored < BitsAllocated because this is currently
not handled properly (usually this only occurs for "true lossless" mode).
Affects: dcmjpeg/libsrc/djcodecd.cc
**** Changes from 2010.11.24 (schlachter)
- Fix CMake's strerror_r test. It was backwards.
Affects: CMake/GenerateDCMTKConfigure.cmake
CMake/dcmtkTestCharPStrerror.cc
- Hardcode the windows result of some socket-related tests.
Affects: CMake/GenerateDCMTKConfigure.cmake
- Reintroduce some MSC6 specific defines that were lost.
Affects: CMake/osconfig.h.in
- Add a previously missing include directive.
Affects: oflog/include/dcmtk/oflog/helpers/syncpwin.h
- Fix config/changext so that dcml2pnm compiles on windows.
Affects: config/changext
**** Changes from 2010.11.22 (schlachter)
- Add checks for cstdio, cstdarg, ENAMETOOLONG and strerror_r's return value.
Added: CMake/dcmtkTestCharPStrerror.cc
CMake/dcmtkTestNameTooLong.cc
Affects: CMake/GenerateDCMTKConfigure.cmake
CMake/osconfig.h.in
- Add checks for strerror_r, std::vsnprintf and variable length arrays to CMake.
Added: CMake/dcmtkTestVariableLengthArrays.cc
Affects: CMake/GenerateDCMTKConfigure.cmake
CMake/osconfig.h.in
- Use a macro instead of repeating the filename of the test file.
Affects: ofstd/tests/toffile.cc
- Add definition for delete (std::nothrow) and check for std::ios::nocreate.
Added: CMake/dcmtkTestStdIosNocreate.cc
Affects: CMake/GenerateDCMTKConfigure.cmake
CMake/osconfig.h.in
- Check whether accept(), getsockopt() and select() accept int* arguments.
Added: CMake/dcmtkTestSelectIntP.cc
CMake/dcmtkTestSocketIntP.cc
Affects: CMake/GenerateDCMTKConfigure.cmake
CMake/osconfig.h.in
- Made the new CMake checks work on Windows.
Affects: CMake/dcmtkTestSelectIntP.cc
CMake/dcmtkTestSocketIntP.cc
**** Changes from 2010.11.22 (riesmeier)
- Updated builtin dictionary (because of recently added private tags).
Affects: dcmdata/libsrc/dcdictzz.cc
- Added missing private tag from Philips to second spelling variant of the
private creator element (also see last commit).
Affects: dcmdata/data/private.dic
**** Changes from 2010.11.19 (eichelberg)
- Added several new private tags from Philips documented in a recent
conformance statement.
Thanks to Per Inge Mathisen <[email protected]> for the contribution.
Affects: dcmdata/data/private.dic
**** Changes from 2010.11.17 (eichelberg)
- Fixed issue with data dictionary causing private tags with group number
range and flexible element number not to be found in the dictionary. Thanks
to Peter Klotz <[email protected]> for the report and patch.
Affects: dcmdata/include/dcmtk/dcmdata/dcdicent.h
**** Changes from 2010.11.17 (schlachter)
- Removed some uses of "%s" with sscanf().
Affects: dcmnet/apps/movescu.cc
dcmwlm/tests/wltest.cc
**** Changes from 2010.11.15 (schlachter)
- Fixed some errors in doxygen comments.
Affects: dcmdata/include/dcmtk/dcmdata/dcdicdir.h
dcmdata/include/dcmtk/dcmdata/dcdirrec.h
dcmdata/include/dcmtk/dcmdata/libi2d/i2dbmps.h
- Removed a useless and potentially dangerous use of sscanf().
Affects: dcmdata/libsrc/dcddirif.cc
**** Changes from 2010.11.12 (riesmeier)
- Output ANSI escape codes at the beginnig of each line in order to make sure
that always the correct color is used in case of truncated multi-line output.
Affects: dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcmetinf.cc
**** Changes from 2010.11.10 (schlachter)
- Made DcmHashDictIterator::stepUp correctly stop at the end of the dict.
Affects: dcmdata/libsrc/dchashdi.cc
- Corrected DcmHashDictIterator::operator!=. Previously it ignored hindex.
Affects: dcmdata/include/dcmtk/dcmdata/dchashdi.h
**** Changes from 2010.11.09 (riesmeier)
- Added check whether all type 1 attributes are really present and have a
non-empty value; this check was missing for the following record types:
HANGING PROTOCOL, PALETTE, IMPLANT, IMPLANT GROUP, IMPLANT ASSY.
Affects: dcmdata/libsrc/dcddirif.cc
**** Changes from 2010.11.08 (schlachter)
- Fixed even more gcc warnings caused by additional compiler flags.
Affects: dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcddirif.cc
dcmdata/libsrc/dcistrmf.cc
dcmdata/libsrc/dcpath.cc
oflog/include/dcmtk/oflog/logger.h
oflog/include/dcmtk/oflog/helpers/strhelp.h
ofstd/include/dcmtk/ofstd/ofmap.h
- Made dcmjpls successfully read images with spurious padding bytes.
Affects: dcmjpls/libcharls/decodstr.h
- Made oflog use ofstd's cast macros.
Affects: oflog/include/dcmtk/oflog/helpers/strhelp.h
oflog/include/dcmtk/oflog/helpers/syncpwin.h
oflog/include/dcmtk/oflog/helpers/threadcf.h
oflog/include/dcmtk/oflog/spi/factory.h
oflog/libsrc/lloguser.cc
oflog/libsrc/loglevel.cc
oflog/libsrc/ndc.cc
oflog/libsrc/ntelogap.cc
oflog/libsrc/patlay.cc
oflog/libsrc/sockbuff.cc
oflog/libsrc/socket.cc
oflog/libsrc/socketap.cc
oflog/libsrc/threads.cc
oflog/libsrc/timehelp.cc
oflog/libsrc/unixsock.cc
oflog/libsrc/winconap.cc
oflog/libsrc/winsock.cc
**** Changes from 2010.11.08 (riesmeier)
- Fixed inconsistency in the list of attributes for the implant group directory
record (this has been corrected with the "FT2" version of Supplement 131).
Affects: dcmdata/libsrc/dcddirif.cc
- Replaced non-ASCII characters by their ASCII equivalents.
Affects: dcmtls/docs/ciphers.txt
**** Changes from 2010.11.05 (riesmeier)
- Added new SOP Class UIDs from Supplement 131 and 134 (Implant Templates).
Affects: dcmdata/include/dcmtk/dcmdata/dcuid.h
dcmdata/libsrc/dcuid.cc
dcmnet/docs/movescu.man
dcmnet/docs/storescp.man
dcmnet/etc/storescp.cfg
dcmnet/etc/storescu.cfg
dcmqrdb/docs/dcmqrscp.man
- Added support for new Implantation Plan SR Document Storage SOP Class.
Added: dcmsr/include/dcmtk/dcmsr/dsrimpcc.h
dcmsr/libsrc/dsrimpcc.cc
Affects: dcmdata/libsrc/dcddirif.cc
dcmqrdb/libsrc/dcmqrdbi.cc
dcmsr/docs/dsr2html.man
dcmsr/docs/dsr2xml.man
dcmsr/docs/dsrdump.man
dcmsr/docs/xml2dsr.man
dcmsr/include/dcmtk/dcmsr/dsrtypes.h
dcmsr/libsrc/CMakeLists.txt
dcmsr/libsrc/Makefile.in
dcmsr/libsrc/dsrtypes.cc
- Added support for Supplement 131 (Implant Templates) to data dictionary.
Affects: dcmdata/data/dicom.dic
dcmdata/include/dcmtk/dcmdata/dcdeftag.h
dcmdata/libsrc/dcdictzz.cc
- Added support for new directory record types IMPLANT, IMPLANT GROUP and
IMPLANT ASSY from Supplement 131 (Implant Templates).
Affects: dcmdata/include/dcmtk/dcmdata/dcddirif.h
dcmdata/include/dcmtk/dcmdata/dcdirrec.h
dcmdata/libsrc/dcddirif.cc
dcmdata/libsrc/dcdirrec.cc
- Added support for checking the value multiplicity "9" (see Supplement 131).
Affects: dcmdata/include/dcmtk/dcmdata/dcbytstr.h
dcmdata/include/dcmtk/dcmdata/dcelem.h
dcmdata/include/dcmtk/dcmdata/dcsequen.h
dcmdata/include/dcmtk/dcmdata/dcvrae.h
dcmdata/include/dcmtk/dcmdata/dcvras.h
dcmdata/include/dcmtk/dcmdata/dcvrat.h
dcmdata/include/dcmtk/dcmdata/dcvrcs.h
dcmdata/include/dcmtk/dcmdata/dcvrda.h
dcmdata/include/dcmtk/dcmdata/dcvrds.h
dcmdata/include/dcmtk/dcmdata/dcvrdt.h
dcmdata/include/dcmtk/dcmdata/dcvrfd.h
dcmdata/include/dcmtk/dcmdata/dcvrfl.h
dcmdata/include/dcmtk/dcmdata/dcvris.h
dcmdata/include/dcmtk/dcmdata/dcvrlo.h
dcmdata/include/dcmtk/dcmdata/dcvrpn.h
dcmdata/include/dcmtk/dcmdata/dcvrsh.h
dcmdata/include/dcmtk/dcmdata/dcvrsl.h
dcmdata/include/dcmtk/dcmdata/dcvrss.h
dcmdata/include/dcmtk/dcmdata/dcvrtm.h
dcmdata/include/dcmtk/dcmdata/dcvrui.h
dcmdata/include/dcmtk/dcmdata/dcvrul.h
dcmdata/include/dcmtk/dcmdata/dcvrus.h
dcmdata/libsrc/dcelem.cc
dcmsr/include/dcmtk/dcmsr/dsrtypes.h
- Rebuilt Makefile dependencies.
Affects: dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
dcmimgle/apps/Makefile.dep
dcmimgle/libsrc/Makefile.dep
dcmjpeg/apps/Makefile.dep
dcmjpeg/libsrc/Makefile.dep
dcmjpls/apps/Makefile.dep
dcmjpls/libsrc/Makefile.dep
dcmnet/libsrc/Makefile.dep
dcmpstat/apps/Makefile.dep
dcmpstat/libsrc/Makefile.dep
dcmpstat/tests/Makefile.dep
dcmqrdb/apps/Makefile.dep
dcmqrdb/libsrc/Makefile.dep
dcmsign/apps/Makefile.dep
dcmsign/libsrc/Makefile.dep
dcmsr/apps/Makefile.dep
dcmsr/libsrc/Makefile.dep
dcmsr/tests/Makefile.dep
dcmtls/libsrc/Makefile.dep
dcmwlm/apps/Makefile.dep
dcmwlm/libsrc/Makefile.dep
dcmwlm/tests/Makefile.dep
dcmwlm/wwwapps/Makefile.dep
oflog/libsrc/Makefile.dep
**** Changes from 2010.11.04 (riesmeier)
- Made sure that options --exec/rename-on-eostudy are never used with --fork on
Windows systems (since this does not work due to the current implementation).
Affects: dcmnet/apps/storescp.cc
- Changed mode of parameter dcmfile-in from multi-optional to multi-mandatory.
Affects: dcmpstat/apps/dcmpsprt.cc
dcmpstat/docs/dcmpsprt.man
- Use type cast macros (e.g. OFstatic_cast) where appropriate.
Affects: dcmpstat/apps/dcmpsprt.cc
- Moved settings for default configuration and support data directory, and
used same default values for non-Windows systems as for GNU autoconf.
Affects: CMake/GenerateDCMTKConfigure.cmake
CMakeLists.txt
- Removed superfluous path separator.
Affects: doxygen/CMakeLists.txt
**** Changes from 2010.11.03 (schlachter)
- Fixed some more warnings by gcc with by additional flags.
Affects: dcmjpeg/libijg12/jcdiffct.c
dcmjpeg/libijg12/jcmarker.c
dcmjpeg/libijg12/jdmarker.c
dcmjpeg/libijg12/jdscale.c
dcmjpeg/libijg16/jcdiffct.c
dcmjpeg/libijg16/jcmarker.c
dcmjpeg/libijg16/jdmarker.c
dcmjpeg/libijg16/jdscale.c
dcmjpeg/libijg8/jcdiffct.c
dcmjpeg/libijg8/jcmarker.c
dcmjpeg/libijg8/jdmarker.c
dcmjpeg/libijg8/jdscale.c
dcmjpls/libcharls/header.cc
dcmjpls/libsrc/djcparam.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/tests/msgserv.cc
dcmsign/apps/dcmsign.cc
**** Changes from 2010.11.03 (riesmeier)
- Since the pseudo-lossless encoder is not guaranteed to result in lossless
compression, the modifications to the DICOM header are treated in the same
way as for lossy compression (e.g Lossy Compression Flag is set to "01").
Affects: dcmjpeg/docs/dcmcjpeg.man
dcmjpeg/libsrc/djcodece.cc
dcmjpeg/libsrc/djenclol.cc
dcmjpeg/libsrc/djencsv1.cc
**** Changes from 2010.11.02 (riesmeier)
- Added special handling for data elements that are associated with different
VRs (according to the data dictionary) when read with an implicit transfer
syntax, e.g. PixelPaddingValue or WaveformData.
Affects: dcmdata/include/dcmtk/dcmdata/dcitem.h
dcmdata/libsrc/dcitem.cc
- Enhanced output to debug logger: Added more details in case of failures.
Affects: dcmimgle/libsrc/didocu.cc
**** Changes from 2010.11.01 (schlachter)
- Fixed some compiler warnings reported by gcc with additional flags.
Affects: dcmdata/apps/mdfdsman.cc
dcmdata/include/dcmtk/dcmdata/libi2d/i2doutpl.h
dcmdata/libi2d/i2d.cc
dcmdata/libsrc/dcpath.cc
dcmdata/libsrc/dcrleccd.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/tests/tstpread.cc
dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescu.cc
dcmnet/apps/termscu.cc
dcmnet/libsrc/dcuserid.cc
dcmnet/libsrc/dfindscu.cc
dcmqrdb/apps/dcmqridx.cc
dcmqrdb/apps/dcmqrti.cc
dcmqrdb/libsrc/dcmqrcbm.cc
dcmqrdb/libsrc/dcmqrdbi.cc
dcmqrdb/libsrc/dcmqrdbs.cc
dcmwlm/apps/wlcefs.cc
dcmwlm/tests/wltest.cc
dcmwlm/wwwapps/writwlst.cc
oflog/libsrc/patlay.cc
oflog/libsrc/unixsock.cc
ofstd/include/dcmtk/ofstd/ofaptr.h
- Moved variable declarations in front of their loop.
Affects: dcmimgle/libsrc/dcmimage.cc
dcmjpeg/libsrc/djutils.cc
ofstd/libsrc/ofstd.cc
**** Changes from 2010.10.29 (riesmeier)
- Removed new --print-color option for Windows system since the ANSI escape
codes are not supported by the standard command shell.
Affects: dcmdata/apps/dcmdump.cc
dcmdata/docs/dcmdump.man
- Fixed issue when sending a message with an empty dataset. Now, a warning
message is reported to the log and an error code is returned in such cases.
Thanks to Peter Klotz <[email protected]> for the report.
Affects: dcmnet/libsrc/dimse.cc
- Added new option for colored output of the textual dump.
Affects: dcmdata/apps/dcmdump.cc
dcmdata/docs/dcmdump.man
- Added support for colored output to the print() method.
Affects: dcmdata/include/dcmtk/dcmdata/dcobject.h
dcmdata/include/dcmtk/dcmdata/dctypes.h
dcmdata/libsrc/Makefile.dep
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dctypes.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrui.cc
**** Changes from 2010.10.28 (riesmeier)
- Implemented missing rendering code for sigmoid VOI LUT function.
Affects: dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
- Added more trace log messages which might be helpful for detailed debugging.
Affects: dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
**** Changes from 2010.10.27 (riesmeier)
- Added getFloat64Vector() method which allows for retrieving the stored
floating point values more efficiently (especially when there are many
values). Thanks to forum user "budric" for the original report.
Affects: dcmdata/include/dcmtk/dcmdata/dcvrds.h
dcmdata/libsrc/dcvrds.cc
- Rebuilt Makefile dependencies.
Affects: dcmdata/apps/Makefile.dep
dcmdata/libi2d/Makefile.dep
dcmdata/libsrc/Makefile.dep
dcmdata/tests/Makefile.dep
**** Changes from 2010.10.25 (onken)
- Removed superfluous NO_IOS_BASE_ASSIGN definition for MinGW since it is
always set if standard c++ includes are available on the system.
Affects: CMake/osconfig.h.in
**** Changes from 2010.10.21 (riesmeier)
- Replaced tab characters by spaces.
Affects: ofstd/libsrc/oflist.cc
- Added private undefined copy constructor and assignment operator in order to
avoid compiler warnings (reported by gcc with additional flags).
Affects: dcmimage/include/dcmtk/dcmimage/diargimg.h
dcmimage/include/dcmtk/dcmimage/dipalimg.h
- Removed redundant definition of logger variable for libxml.
Affects: dcmdata/apps/xml2dcm.cc
- Renamed variable to avoid warning reported by gcc with additional flags.
Affects: dcmdata/apps/dcm2pdf.cc
dcmsr/apps/dsr2html.cc
dcmsr/apps/dsr2xml.cc
- Use type cast macros (e.g. OFstatic_cast) where appropriate.
Affects: dcmdata/include/dcmtk/dcmdata/dcovlay.h
- Added missing API documentation and slightly reformatted source code.
Affects: dcmdata/include/dcmtk/dcmdata/dcovlay.h
- Added virtual destructor in order to avoid warnings reported by gcc with
additional flags.
Affects: dcmdata/include/dcmtk/dcmdata/dctagkey.h
dcmsr/include/dcmtk/dcmsr/dsrtypes.h
dcmsr/libsrc/dsrtypes.cc
**** Changes from 2010.10.20 (riesmeier)
- Use type cast macros (e.g. OFstatic_cast) where appropriate.
Affects: dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcchrstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcpixel.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcvrae.cc
dcmdata/libsrc/dcvras.cc
dcmdata/libsrc/dcvrat.cc
dcmdata/libsrc/dcvrcs.cc
dcmdata/libsrc/dcvrda.cc
dcmdata/libsrc/dcvrds.cc
dcmdata/libsrc/dcvrdt.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmdata/libsrc/dcvris.cc
dcmdata/libsrc/dcvrlo.cc
dcmdata/libsrc/dcvrlt.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrof.cc
dcmdata/libsrc/dcvrpn.cc
dcmdata/libsrc/dcvrpobw.cc
dcmdata/libsrc/dcvrsh.cc
dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrss.cc
dcmdata/libsrc/dcvrst.cc
dcmdata/libsrc/dcvrtm.cc
dcmdata/libsrc/dcvrui.cc
dcmdata/libsrc/dcvrul.cc
dcmdata/libsrc/dcvrulup.cc
dcmdata/libsrc/dcvrus.cc
dcmdata/libsrc/dcvrut.cc
- Renamed method to avoid warnings reported by gcc with additional flags.
Affects: dcmdata/include/dcmtk/dcmdata/dcfilefo.h
dcmdata/libsrc/dcfilefo.cc
- Added missing API documentation.
Affects: dcmdata/include/dcmtk/dcmdata/dcfilefo.h
**** Changes from 2010.10.20 (schlachter)
- Made sure isalpha() & friends are only called with valid arguments.
Affects: dcmdata/apps/dump2dcm.cc
dcmdata/libsrc/dcddirif.cc
dcmdata/libsrc/dcdict.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcvrcs.cc
dcmdata/libsrc/dcvrui.cc
dcmdata/libsrc/mkdeftag.cc
dcmimgle/apps/dcod2lum.cc
dcmimgle/apps/dconvlum.cc
dcmimgle/libsrc/dcmimage.cc
dcmimgle/libsrc/didispfn.cc
dcmjpeg/libsrc/djutils.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/libsrc/dcasccff.cc
dcmnet/libsrc/diutil.cc
dcmnet/libsrc/scp.cc
dcmnet/libsrc/scu.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmpsprt.cc
dcmqrdb/libsrc/dcmqrcnf.cc
dcmqrdb/libsrc/dcmqrdbi.cc
dcmsign/apps/dcmsign.cc
dcmsr/libsrc/dsrtypes.cc
oflog/libsrc/property.cc
ofstd/libsrc/ofdatime.cc
ofstd/libsrc/ofstd.cc
ofstd/libsrc/ofstring.cc
- Also made sure toupper() and tolower() get a valid argument.
Affects: dcmnet/libsrc/dcasccff.cc
dcmnet/libsrc/scp.cc
dcmpstat/libsrc/dvpscf.cc
ofstd/libsrc/ofconfig.cc
ofstd/libsrc/ofstd.cc
**** Changes from 2010.10.18 (schlachter)
- Correctly read bytestreams on 64-bit platforms.
Affects: dcmjpls/libcharls/util.h
- Fixed ABS() macro.
Affects: dcmjpls/libcharls/util.h
**** Changes from 2010.10.14 (riesmeier)
- Added support for "new" SR Storage SOP Classes to storeRequest().
Affects: dcmqrdb/libsrc/dcmqrdbi.cc
- Fixed wording on the use of variables.
Affects: oflog/etc/logger.cfg
- Added missing CVS log to end of file.
Affects: oflog/etc/filelog.cfg
- Removed the word "Kuratorium" from the name of the OFFIS institute.
Affects: dcmdata/docs/datadict.txt
- Updated copyright header. Added reference to COPYRIGHT file.
Affects: <all modules>/*.cc
<all modules>/*.h
dcmdata/data/dcm2xml.dtd
dcmdata/data/dicom.dic