-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHANGES.360
12212 lines (10063 loc) · 442 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
Changes between releases are documented here.
**** 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 <bernd.kuemmerlen@mevis.de> 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 <jargo@innovaatik.ee> for the report.
Affects: dcmdata/libi2d/i2djpgs.cc
- Correctly determine the remote address if only a socket fd is given.
Thanks to Alexander Haderer <alexander.haderer@charite.de> 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 <perim@sonowand.com> 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 <Peter.Klotz@ith-icoserve.com> 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 <Peter.Klotz@ith-icoserve.com> 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
dcmdata/data/diconde.dic
dcmdata/data/private.dic
dcmdata/libsrc/dcdictbi.nul
dcmdata/libsrc/vrscanl.l
dcmdata/libsrc/vrscanl.c
dcmnet/etc/storescp.cfg
dcmnet/etc/storescu.cfg
dcmpstat/etc/dcmpstat.cfg
dcmpstat/etc/printers.cfg
dcmsr/data/dsr2xml.xsd
dcmsr/data/report.css
dcmsr/data/reportx.css
dcmtls/tests/dcmtk_ca.pl
dcmwlm/perl/*.ph
dcmwlm/perl/*.pl
oflog/etc/filelog.cfg
oflog/etc/logger.cfg
- Updated man pages.
Affects: doxygen/manpages/man1/*
- Updated copyright date.
Affects: dcmdata/docs/dcm2pdf.man
dcmdata/docs/dcm2xml.man
dcmdata/docs/dcmconv.man
dcmdata/docs/dcmcrle.man
dcmdata/docs/dcmdrle.man
dcmdata/docs/dcmdump.man
dcmdata/docs/dcmftest.man
dcmdata/docs/dcmgpdir.man
dcmdata/docs/dump2dcm.man
dcmdata/docs/pdf2dcm.man
dcmdata/docs/xml2dcm.man
dcmimage/docs/dcm2pnm.man
dcmimage/docs/dcmquant.man
dcmimage/docs/dcmscale.man
dcmimgle/docs/dcmdspfn.man
dcmimgle/docs/dcod2lum.man
dcmimgle/docs/dconvlum.man
dcmnet/docs/echoscu.man
dcmnet/docs/termscu.man
dcmpstat/docs/dcmmkcrv.man
dcmpstat/docs/dcmmklut.man
dcmpstat/docs/dcmp2pgm.man
dcmpstat/docs/dcmprscp.man
dcmpstat/docs/dcmpschk.man
dcmpstat/docs/dcmpsmk.man
dcmpstat/docs/dcmpsprt.man
dcmpstat/docs/dcmpsrcv.man
dcmpstat/docs/dcmpssnd.man
dcmpstat/docs/dcmpsrcv.man
dcmpstat/docs/dcmpssnd.man
dcmqrdb/docs/dcmqridx.man
dcmsign/docs/dcmsign.man
**** Changes from 2010.10.13 (riesmeier)
- Added introducing sentence on Log4cplus library used for oflog.
Affects: oflog/docs/LICENSE
- Separated license text of the CharLS library from general "readme" text.
Added: dcmjpls/docs/License.txt
dcmjpls/docs/readme.txt
Removed: dcmjpls/docs/charls-readme.txt
- Added explaining sentence on modules that are not part of the free toolkit.
Affects: COPYRIGHT
- Removed text for "dcmjp2k" module which is not part of the free toolkit.
Affects: COPYRIGHT
- Revised copyright text to make clear that the DCMTK uses the BSD License.
Affects: COPYRIGHT
- Replaced copyright header since source code has been rewritten completely.
Previously: "Copyright (C) 1993/1994, OFFIS, Oldenburg University and CERIUM"
Affects: dcmnet/libsrc/dimdump.cc
**** Changes from 2010.10.12 (riesmeier)
- Added man page file for the new command line tool "dcml2pnm".
Added: doxygen/manpages/man1/dcml2pnm.1
- Removed wrong reference to JPEG output format.
Affects: dcmjpls/docs/dcml2pnm.man
**** Changes from 2010.10.12 (schlachter)
- Make dcml2pnm build correctly with cmake.
Affects: dcmjpls/apps/CMakeLists.txt
- Added dcml2pnm which is a dcmjpls-enabled dcm2pnm.
Added: dcmjpls/apps/dcml2pnm.cc
dcmjpls/docs/dcml2pnm.man
Affects: dcmimage/apps/dcm2pnm.cc
dcmjpls/apps/CMakeLists.txt
dcmjpls/apps/Makefile.dep
dcmjpls/apps/Makefile.in
dcmjpls/docs/dcmjpls.dox
dcmjpls/libcharls/Makefile.dep
dcmjpls/libsrc/Makefile.dep
- Added working implementation of DJLSDecoderBase::decodeFrame().
Affects: dcmjpls/libsrc/djcodecd.cc
- Avoid redundant findAndGet*() calls.
Affects: dcmjpls/include/dcmtk/dcmjpls/djcodecd.h
dcmjpls/libsrc/djcodecd.cc
**** Changes from 2010.10.08 (schlachter)
- Fixed an invalid copyright date.
Affects: ofstd/tests/tvec.cc
- Documented that we now have our own OFVector class.
Affects: config/docs/macros.txt
- Use OFVector instead of using std::vector directly.
Affects: dcmjpls/libcharls/context.h
dcmjpls/libcharls/header.cc
dcmjpls/libcharls/intrface.cc
dcmjpls/libcharls/jpegls.cc
dcmjpls/libcharls/procline.h
dcmjpls/libcharls/scan.h
dcmjpls/libcharls/streams.h
- Implement OFVector.
Added: ofstd/tests/tvec.cc
Affects: ofstd/include/dcmtk/ofstd/ofvector.h
ofstd/tests/Makefile.dep
ofstd/tests/Makefile.in
- Updated documentation for HAVE_STL macro.
Affects: config/docs/macros.txt
- Removed an invalid function which isn't part of std::auto_ptr.
Affects: ofstd/include/dcmtk/ofstd/ofaptr.h
- Fixed an invalid use of OFauto_ptr.
Affects: oflog/libsrc/oflog.cc
- Added macro HAVE_STL_AUTO_PTR which defines OFauto_ptr to std::auto_ptr.
Affects: config/docs/macros.txt
ofstd/include/dcmtk/ofstd/ofaptr.h
- Fixed all doxygen warnings for OFPair and OFauto_ptr.
Affects: ofstd/include/dcmtk/ofstd/ofaptr.h
ofstd/include/dcmtk/ofstd/ofmap.h
- Make OFString(NULL) construct an empty string. Previously, this was the
default, but it was changed to match the behavior of std::string.
This adds a new define USE_NULL_SAFE_OFSTRING which is always defined by
our Makefiles. Passing NULL to OFString now also generates a warning in
DEBUG builds.
Affects: CMakeLists.txt
config/Makefile.def.in
config/docs/macros.txt
ofstd/libsrc/ofstring.cc
- Don't directly include system header files.
Affects: dcmjpls/libcharls/config.h
dcmjpls/libcharls/context.h
dcmjpls/libcharls/deftrait.h
dcmjpls/libcharls/header.cc
dcmjpls/libcharls/intrface.h
dcmjpls/libcharls/jpegls.cc
dcmjpls/libcharls/procline.h
dcmjpls/libcharls/scan.h
dcmjpls/libcharls/streams.h
dcmjpls/libcharls/util.h
**** Changes from 2010.10.08 (riesmeier)
- Enhanced documentation on pixel-related parameters.
Affects: dcmdata/include/dcmtk/dcmdata/dcdatset.h
dcmdata/include/dcmtk/dcmdata/dcfilefo.h
**** Changes from 2010.10.07 (riesmeier)
- Fixed minor Doxygen API documentation issues (added backslash in order to
avoid that the short description ends at the first period).
Affects: dcmnet/include/dcmtk/dcmnet/scp.h
dcmnet/include/dcmtk/dcmnet/scu.h
- Removed leading underscore characters from preprocessor symbols (reserved).
Affects: dcmpstat/include/dcmtk/dcmpstat/dcmpstat.h
dcmpstat/include/dcmtk/dcmpstat/dvcache.h
dcmpstat/include/dcmtk/dcmpstat/dvpsab.h
dcmpstat/include/dcmtk/dcmpstat/dvpsabl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsal.h
dcmpstat/include/dcmtk/dcmpstat/dvpsall.h
dcmpstat/include/dcmtk/dcmpstat/dvpscu.h
dcmpstat/include/dcmtk/dcmpstat/dvpscul.h
dcmpstat/include/dcmtk/dcmpstat/dvpsda.h
dcmpstat/include/dcmtk/dcmpstat/dvpsdal.h
dcmpstat/include/dcmtk/dcmpstat/dvpsdef.h
dcmpstat/include/dcmtk/dcmpstat/dvpsfs.h
dcmpstat/include/dcmtk/dcmpstat/dvpsga.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgal.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgll.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgr.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgrl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsib.h
dcmpstat/include/dcmtk/dcmpstat/dvpsibl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsmsg.h
dcmpstat/include/dcmtk/dcmpstat/dvpsov.h
dcmpstat/include/dcmtk/dcmpstat/dvpsovl.h
dcmpstat/include/dcmtk/dcmpstat/dvpspl.h
dcmpstat/include/dcmtk/dcmpstat/dvpspll.h
dcmpstat/include/dcmtk/dcmpstat/dvpspr.h
dcmpstat/include/dcmtk/dcmpstat/dvpsri.h
dcmpstat/include/dcmtk/dcmpstat/dvpsril.h
dcmpstat/include/dcmtk/dcmpstat/dvpsrs.h
dcmpstat/include/dcmtk/dcmpstat/dvpsrsl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsspl.h
dcmpstat/include/dcmtk/dcmpstat/dvpssv.h
dcmpstat/include/dcmtk/dcmpstat/dvpssvl.h
dcmpstat/include/dcmtk/dcmpstat/dvpstx.h
dcmpstat/include/dcmtk/dcmpstat/dvpstxl.h
dcmpstat/include/dcmtk/dcmpstat/dvpstyp.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvll.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvw.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvwl.h
**** Changes from 2010.10.06 (riesmeier)
- Replaced numeric tags by pre-defined tag names for old ACR/NEMA palettes.
Affects: dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dipalimg.cc
- Use DCM_UndefinedTagKey if no explanation tag can be specified for a LUT.
Affects: dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dipalimg.cc
dcmimgle/libsrc/diluptab.cc
- Removed definition of HAVE_STD_STRING for non-Windows systems.
Affects: CMake/osconfig.h.in
- Added text on the fact that the --key option also supports attribute paths.
Affects: dcmdata/apps/img2dcm.cc
dcmdata/docs/img2dcm.man
- Introduced meaningful sub groups for the processing command line options.
Affects: dcmdata/apps/img2dcm.cc
dcmdata/docs/img2dcm.man
**** Changes from 2010.10.05 (riesmeier)
- Added preliminary support for VOI LUT function. Please note, however, that
the sigmoid transformation is not yet implemented.
Affects: dcmimage/apps/dcm2pnm.cc
dcmimage/docs/dcm2pnm.man
dcmimgle/include/dcmtk/dcmimgle/dcmimage.h
dcmimgle/include/dcmtk/dcmimgle/dimoimg.h
dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
dcmimgle/include/dcmtk/dcmimgle/diutils.h
dcmimgle/libsrc/dimoimg.cc
dcmimgle/libsrc/dimoimg3.cc
dcmimgle/libsrc/dimoimg4.cc
dcmimgle/libsrc/dimoimg5.cc
dcmjpeg/docs/dcmj2pnm.man
- Output more information on the image, e.g. value of PresentationLUTShape.
Also slightly changed the error handling for some image transformations.
Affects: dcmimage/apps/dcm2pnm.cc
- In debug mode, output more details on overlay plane to the logger.
Affects: dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
- Output information on conversion process to the logger (debug mode).
Affects: dcmimage/include/dcmtk/dcmimage/dicoopxt.h
- Added section listing the supported input transfer syntaxes.
Affects: dcmimage/docs/dcm2pnm.man
dcmjpeg/docs/dcmj2pnm.man
- Also remove PixelPaddingRangeLimit element from the dataset (if required).
Affects: dcmimage/libsrc/diquant.cc
dcmimgle/libsrc/diimage.cc
- Fixed various Doxygen API documentation issues.
Affecs: dcmdata/include/dcmtk/dcmdata/dcdatset.h
dcmimage/include/dcmtk/dcmimage/dicoopxt.h
dcmimgle/include/dcmtk/dcmimgle/dibaslut.h
dcmimgle/include/dcmtk/dcmimgle/diimage.h
ofstd/include/dcmtk/ofstd/ofset.h
ofstd/include/dcmtk/ofstd/ofsetit.h
**** Changes from 2010.10.05 (schlachter)
- Removed a unused copy-constructor and a unused operator=.
Affects: dcmnet/include/dcmtk/dcmnet/dcuserid.h