forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.354
2262 lines (1824 loc) · 77.7 KB
/
CHANGES.354
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.5.4 (Public Release - 2005-12-20)
- Updated version name and implementation name to reflect release 3.5.4.
Affects: dcmdata/include/dcmtk/dcmdata/dcuid.h
- Created announcement file
Added: ANNOUNCE.354
**** Changes from 2005.12.20 (eichelberg)
- Added various typecasts needed to avoid warnings on MinGW.
Affects: dcmnet/libsrc/dul.cc
- Removed duplicate parameter
Affects: dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbm.h
dcmqrdb/libsrc/dcmqrcbm.cc
- Updated Makefile dependencies
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/tests/Makefile.dep
dcmqrdb/libsrc/Makefile.dep
dcmwlm/tests/Makefile.dep
- Updated man pages
Removed: doxygen/manpages/man1/dbregimg.1
doxygen/manpages/man1/imagectn.1
doxygen/manpages/man1/ti.1
Added: doxygen/manpages/man1/dcmqridx.1
doxygen/manpages/man1/dcmqrscp.1
doxygen/manpages/man1/dcmqrti.1
doxygen/manpages/man1/pdf2dcm.1
doxygen/manpages/man1/termscu.1
Affects: doxygen/manpages/man1/dcm2pnm.1
doxygen/manpages/man1/dcm2xml.1
doxygen/manpages/man1/dcmcjpeg.1
doxygen/manpages/man1/dcmconv.1
doxygen/manpages/man1/dcmcrle.1
doxygen/manpages/man1/dcmdjpeg.1
doxygen/manpages/man1/dcmdrle.1
doxygen/manpages/man1/dcmdspfn.1
doxygen/manpages/man1/dcmdump.1
doxygen/manpages/man1/dcmftest.1
doxygen/manpages/man1/dcmgpdir.1
doxygen/manpages/man1/dcmj2pnm.1
doxygen/manpages/man1/dcmmkcrv.1
doxygen/manpages/man1/dcmmkdir.1
doxygen/manpages/man1/dcmmklut.1
doxygen/manpages/man1/dcmodify.1
doxygen/manpages/man1/dcmp2pgm.1
doxygen/manpages/man1/dcmprscp.1
doxygen/manpages/man1/dcmprscu.1
doxygen/manpages/man1/dcmpschk.1
doxygen/manpages/man1/dcmpsmk.1
doxygen/manpages/man1/dcmpsprt.1
doxygen/manpages/man1/dcmpsrcv.1
doxygen/manpages/man1/dcmpssnd.1
doxygen/manpages/man1/dcmquant.1
doxygen/manpages/man1/dcmscale.1
doxygen/manpages/man1/dcmsign.1
doxygen/manpages/man1/dcod2lum.1
doxygen/manpages/man1/dconvlum.1
doxygen/manpages/man1/dsr2html.1
doxygen/manpages/man1/dsr2xml.1
doxygen/manpages/man1/dsrdump.1
doxygen/manpages/man1/dump2dcm.1
doxygen/manpages/man1/echoscu.1
doxygen/manpages/man1/findscu.1
doxygen/manpages/man1/movescu.1
doxygen/manpages/man1/storescp.1
doxygen/manpages/man1/storescu.1
doxygen/manpages/man1/wlmscpfs.1
doxygen/manpages/man1/xml2dcm.1
doxygen/manpages/man1/xml2dsr.1
- Updated installation instructions
Affects: INSTALL
**** Changes from 2005.12.19 (riesmeier)
- Changed include path to new directory schema.
Affects: config/Makefile.in
- Changed printf() type for return value of getpid() to "%ld" and added
explicit typecast, needed for Solaris.
Affects: dcmnet/apps/storescp.cc
**** Changes from 2005.12.16 (eichelberg)
- Added typecasts to avoid warnings on VS2005
Affects: dcmjpeg/libsrc/djcodece.cc
- Changed type to size_t to make code safe on 64bit platforms
Affects: dcmdata/apps/mdfconen.cc
dcmnet/apps/storescp.cc
- Added type safety code for 64bit platforms
Affects: dcmqrdb/libsrc/dcmqrcnf.cc
- Simplified overly clever code producing undefined behaviour
Affects: dcmqrdb/libsrc/dcmqrtis.cc
- Simplified code to avoid warning on Fedora Core 4
Affects: dcmsign/apps/dcmsign.cc
- Declared libxml2 callback functions as extern "C"
Affects: dcmdata/apps/xml2dcm.cc
dcmsr/libsrc/dsrxmld.cc
**** Changes from 2005.12.16 (riesmeier)
- Renamed file to avoid naming conflicts when linking on SunOS 5.5.1 with
Sun CC 2.0.1.
Added: dcmqrdb/include/dcmtk/dcmqrdb/dcmqrsrv.h
dcmqrdb/libsrc/dcmqrsrv.cc
Removed: dcmqrdb/include/dcmtk/dcmqrdb/dcmqrscp.h
dcmqrdb/libsrc/dcmqrscp.cc
Affects: dcmqrdb/apps/Makefile.dep
dcmqrdb/apps/dcmqrscp.cc
dcmqrdb/libsrc/CMakeLists.txt
dcmqrdb/libsrc/Makefile.dep
dcmqrdb/libsrc/Makefile.in
**** Changes from 2005.12.16 (onken)
- Added virtual (dummy) destructor to avoid compiler warnings
Affects: dcmdata/include/dcmtk/dcmdata/dcrleenc.h
dcmqrdb/include/dcmtk/dcmqrdb/dcmqrdba.h
- Added variable initializations to avoid compiler warnings
Affects: dcmdata/apps/dump2dcm.cc
dcmdata/apps/mdfdsman.cc
dcmqrdb/libsrc/dcmqrdbi.cc
- Removed doubled assignment (typo?) to avoid compiler warning
Affects: dcmsign/apps/dcmsign.cc
**** Changes from 2005.12.15 (riesmeier)
- Fixed issue with initialization of array member variables, reported by egcs
on Solaris. Fixed missing/wrong initialization of member variables.
Affects: dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbg.h
dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbm.h
- Replaced "true" by "OFTrue" and "false" by "OFFalse".
Affects: dcmdata/apps/mdfdsman.cc
- Added explicit type cast, required for Sun CC 4.2 on Solaris.
Affects: dcmnet/libsrc/dul.cc
- Removed naming conflicts.
Affects: dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbs.h
dcmqrdb/libsrc/dcmqrcbs.cc
- Removed unsused parameter.
Affects: dcmdata/include/dcmtk/dcmdata/dcddirif.h
dcmdata/libsrc/dcddirif.cc
- Added char* parameter cast to bzero() call.
Affects: dcmqrdb/libsrc/dcmqrtis.cc
- Added explicit type cast, required for Sun CC 2.0.1 on Solaris.
Affects: dcmsr/libsrc/dsrsoprf.cc
dcmjpeg/libsrc/djcodece.cc
- Changed type of local variable, reported by Sun CC 2.0.1 on Solaris.
Affects: dcmimage/apps/dcmscale.cc
- Removed unused variables on non-Windows systems, reported by Sun CC 2.0.1.
Affects: dcmnet/libsrc/dul.cc
**** Changes from 2005.12.14 (riesmeier)
- Added missing header file "fcntl.h", needed for Solaris.
Affects: dcmnet/apps/storescp.cc
- Replaced "string::npos" by "OFString_npos".
Affects: dcmnet/apps/storescp.cc
- Changed printf() type for return value of getpid() to "%d".
Affects: dcmnet/apps/storescp.cc
- Including ctype if present, needed for Solaris.
Affects: dcmqrdb/libsrc/dcmqrcnf.cc
dcmqrdb/libsrc/dcmqrdbi.cc
**** Changes from 2005.12.14 (eichelberg)
- Added configure test that checks for the presence of libjpeg. Both libjpeg
and libz are added to TIFFLIBS if present, because libtiff has dependencies
on both on some plat forms.
Affects: config/configure
config/configure.in
- Including csignal if present, needed on Solaris.
Affects: dcmnet/apps/storescp.cc
- Added code needed for compilation with TCP wrappers on OpenBSD
Affects: dcmqrdb/apps/dcmqridx.cc
- Changed order of include files to avoid warning on FreeBSD
Affects: dcmqrdb/libsrc/dcmqrdbi.cc
- Changed CFLAGS/CXXFLAGS for compilation on FreeBSD 5 and 6
and NetBSD 2.x
Affects: config/configure
config/configure.in
- Removed naming conflict
Affects: dcmqrdb/libsrc/dcmqrtis.cc
- Adapted code for compilation with TCP wrappers to NetBSD
Affects: dcmpstat/apps/dcmpschk.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/tests/msgserv.cc
dcmqrdb/apps/dcmqridx.cc
dcmwlm/tests/wltest.cc
**** Changes from 2005.12.12 (eichelberg)
- Added explicit references to parent template class, needed for
gcc 3.4.2 (MinGW port)
Affects: ofstd/include/dcmtk/ofstd/ofuoset.h
- Update for new include file structure
Affects: dcmdata/libsrc/dcdictbi.nul
- Removed DOS carriage returns, needed for BSD make
Affects: dcmqrdb/libsrc/Makefile.in
- Added code needed for compilation with TCP wrappers on OpenBSD
Affects: dcmpstat/apps/dcmpschk.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/tests/msgserv.cc
dcmwlm/tests/wltest.cc
- Added missing include dependency
Affects: dcmnet/include/dcmtk/dcmnet/dul.h
**** Changes from 2005.12.09 (eichelberg)
- Added missing include for dcdebug.h
Affects: dcmdata/apps/xml2dcm.cc
- Added missing virtual destructors.
Thanks to John A Meinel <[email protected]> for the report and patch
Affects: dcmdata/include/dcmtk/dcmdata/dccodec.h
dcmimgle/include/dcmtk/dcmimgle/dipxrept.h
dcmnet/include/dcmtk/dcmnet/dul.h
dcmpstat/include/dcmtk/dcmpstat/dvpspr.h
- Updated build system for dcdeftag/dcdictzz to reflect new directory structure
Affects: dcmdata/libsrc/Makefile.in
dcmdata/libsrc/mkdeftag.cc
dcmdata/libsrc/mkdictbi.cc
**** Changes from 2005.12.08 (eichelberg)
- Changed include path schema for all DCMTK header files.
Files are now always included as "dcmtk/module/file.h", reducing the
risk of file name collisions.
Removed: */include/*.h
Added: */include/dcmtk/*/*.h
Affects: */apps/*.cc
*/apps/*.h
*/libsrc/*.cc
*/tests/*.cc
dcmjpeg/libijg12/*.h
dcmjpeg/libijg16/*.h
dcmjpeg/libijg8/*.h
dcmnet/libsrc/*.h
- Updated Makefile dependencies
Affects: */*/Makefile.dep
- Updated Makefiles to correctly install header files
Affects: */include/Makefile.in
config/Makefile.in
- Updated configure system to reflect new header file structure
Affects: config/configure
config/configure.in
- Updated CMake project files
Removed: */include/CMakeLists.txt
Added: */include/dcmtk/*/CMakeLists.txt
Affects: */CMakeLists.txt
**** Changes from 2005.12.08 (riesmeier)
- Fixed wrong figure in man page.
Affects: dcmdata/docs/dcm2xml.man
dcmdata/docs/dcmdump.man
- Fixed problem with CMAKE_INSTALL_PREFIX.
Affects: CMakeLists.txt
**** Changes from 2005.12.07 (onken)
- Changed default and minimum value of --max-read-length to 4 KB
Affects: dcmdata/apps/dcmdump.cc
dcmdata/apps/dcm2xml.cc
dcmdata/docs/dcmdump.man
dcmdata/docs/dcm2xml.man
**** Changes from 2005.12.06 (riesmeier)
- Updated version number.
Affects: doxygen/htmldocs.cfg
doxygen/manpages.cfg
- Prepended escape character '\' to '@' sign in order to avoid a Doxygen
error message.
Affects: dcmjpeg/docs/dcmmkdir.man
**** Changes from 2005.12.05 (riesmeier)
- Removed option WITH_SHARED_LIBS.
Affects: CMakeLists.txt
**** Changes from 2005.12.02 (riesmeier)
- Removed superfluous local variable. Changed type of variable "maxReadLength".
Affects: dcmdata/apps/dcmdump.cc
dcmdata/apps/dcm2xml.cc
- Made description of option --max-read-length more consistent with the other
command line tools.
Affects: dcmdata/apps/dcmdump.cc
dcmdata/apps/dcm2xml.cc
dcmdata/docs/dcm2xml.man
dcmdata/docs/dcmdump.man
- Changed macro NO_XFER_DETECTION_FOR_DATASETS into a global option that can
be enabled and disabled at runtime.
Affects: config/docs/macros.txt
dcmdata/apps/dcm2xml.cc
dcmdata/include/dcobject.h
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcobject.cc
- Added new file read mode that makes it possible to distinguish between DICOM
files, datasets and other non-DICOM files. For this reason, the last
parameter of method loadFile() changed from OFBool to E_FileReadMode.
Affects: dcmdata/include/dcfilefo.h
dcmdata/include/dctypes.h
dcmdata/libsrc/dcfilefo.cc
dcmdata/apps/mdfdsman.cc
dcmdata/apps/mdfdsman.h
dcmpstat/apps/dcmpschk.cc
- Added new command line option that ignores the transfer syntax specified in
the meta header and tries to detect the transfer syntax automatically from
the dataset.
Affects: dcmdata/apps/dcm2xml.cc
dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmcrle.cc
dcmdata/apps/dcmdrle.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/mdfconen.cc
dcmdata/docs/dcm2xml.man
dcmdata/docs/dcmconv.man
dcmdata/docs/dcmcrle.man
dcmdata/docs/dcmdump.man
dcmdata/docs/dcmodify.man
dcmimage/apps/dcm2pnm.cc
dcmimage/apps/dcmquant.cc
dcmimage/apps/dcmscale.cc
dcmimage/docs/dcm2pnm.man
dcmimage/docs/dcmquant.man
dcmimage/docs/dcmscale.man
dcmjpeg/apps/dcmcjpeg.cc
dcmjpeg/docs/dcmcjpeg.man
dcmjpeg/docs/dcmj2pnm.man
dcmpstat/apps/dcmpsmk.cc
dcmpstat/docs/dcmpsmk.man
dcmsign/apps/dcmsign.cc
dcmsign/docs/dcmsign.man
dcmsr/apps/dsr2html.cc
dcmsr/apps/dsr2xml.cc
dcmsr/apps/dsrdump.cc
dcmsr/docs/dsr2html.man
dcmsr/docs/dsr2xml.man
dcmsr/docs/dsrdump.man
- Added new command line option that checks whether a given file starts with a
valid DICOM meta header.
Affects: dcmdata/apps/dcm2xml.cc
dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmcrle.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/mdfconen.cc
dcmdata/apps/mdfconen.h
dcmdata/docs/dcm2xml.man
dcmdata/docs/dcmconv.man
dcmdata/docs/dcmcrle.man
dcmdata/docs/dcmdrle.man
dcmdata/docs/dcmdump.man
dcmdata/docs/dcmodify.man
dcmimage/apps/dcm2pnm.cc
dcmimage/apps/dcmquant.cc
dcmimage/apps/dcmscale.cc
dcmimage/docs/dcm2pnm.man
dcmimage/docs/dcmquant.man
dcmimage/docs/dcmscale.man
dcmjpeg/apps/dcmcjpeg.cc
dcmjpeg/apps/dcmdjpeg.cc
dcmjpeg/docs/dcmcjpeg.man
dcmjpeg/docs/dcmdjpeg.man
dcmjpeg/docs/dcmj2pnm.man
dcmpstat/apps/dcmpsmk.cc
dcmpstat/docs/dcmpsmk.man
dcmsign/apps/dcmsign.cc
dcmsign/docs/dcmsign.man
dcmsr/apps/dsr2html.cc
dcmsr/apps/dsr2xml.cc
dcmsr/apps/dsrdump.cc
dcmsr/docs/dsr2html.man
dcmsr/docs/dsr2xml.man
dcmsr/docs/dsrdump.man
- Added experimental support for a "quiet" mode.
Affects: dcmdata/apps/dcmdump.cc
- Fixed minor layout and formatting issues.
Affects: dcmpstat/docs/dcmprscu.man
- Fixed minor bug.
Affects: dcmdata/libsrc/dcfilefo.cc
**** Changes from 2005.12.01 (riesmeier)
- Fixed bug in method matchUID (formerly known as DB_MatchUID).
Thanks to Erik Sanner <[email protected]> for the bug report and fix.
Affects: dcmqrdb/libsrc/dcmqrdbi.cc
- Added heuristics for images where the value of HighBit is 0.
Thanks to Michael Doppler <[email protected]> for the suggestion and
code.
Affects: dcmimgle/libsrc/diimage.cc
- Added support for DICOM objects where the dataset is stored with a different
transfer syntax than specified in the meta header. The new behaviour can be
disabled by compiling with the macro NO_XFER_DETECTION_FOR_DATASETS defined.
Thanks to Michael Doppler <[email protected]> for the suggestion and
code.
Affects: config/docs/macros.txt
dcmdata/libsrc/dcdatset.cc
**** Changes from 2005.11.30 (onken)
- Added check to decline automatic IJG color space conversion of signed pixel
data, because IJG lib only handles unsigned input for conversions.
Affects: dcmjpeg/include/djdecabs.h
dcmjpeg/include/djdijg8.h
dcmjpeg/include/djdijg12.h
dcmjpeg/include/djdijg16.h
dcmjpeg/libsrc/djdijg8.cc
dcmjpeg/libsrc/djdijg12.cc
dcmjpeg/libsrc/djdijg16.cc
dcmjpeg/include/djutils.h
dcmjpeg/libsrc/djutils.cc
dcmjpeg/libsrc/djcodecd.cc
- Added hint concerning --convert-never option when color conversion fails
Affects: dcmjpeg/apps/dcmdjpeg.cc
- Added standard parameter values for MdfDatasetManager::saveFile()
Affects: dcmdata/apps/mdfdsman.h
**** Changes from 2005.11.30 (riesmeier)
- Added support for X-Ray Radiation Dose SR documents.
Added: dcmsr/include/dsrxrdcc.h
dcmsr/libsrc/dsrxrdcc.cc
Affects: dcmsr/apps/dsr2xml.xsd
dcmsr/docs/dsr2html.man
dcmsr/docs/dsr2xml.man
dcmsr/docs/dsrdump.man
dcmsr/docs/xml2dsr.man
dcmsr/include/dsrdoc.h
dcmsr/include/dsrtypes.h
dcmsr/libsrc/CMakeLists.txt
dcmsr/libsrc/Makefile.dep
dcmsr/libsrc/Makefile.in
dcmsr/libsrc/dsrtypes.cc
- Added missing header file "dcdebug.h".
Affects: dcmdata/apps/xml2dcm.cc
**** Changes from 2005.11.30 (eichelberg)
- Removed references to OpenSSL header files from Makefile dependencies
Affects: dcmnet/apps/Makefile.dep
dcmpstat/apps/Makefile.dep
dcmpstat/libsrc/Makefile.dep
dcmqrdb/libsrc/Makefile.dep
dcmsign/apps/Makefile.dep
dcmsign/libsrc/Makefile.dep
dcmtls/libsrc/Makefile.dep
- Fixed bug in dcmjpeg module that caused the new lossless compressor
to be used for lossy processes
Affects: dcmjpeg/libsrc/djcodece.cc
- Fixed typo
Affects: dcmjpeg/docs/dcmcjpeg.man
**** Changes from 2005.11.29 (onken)
- Added commandline options --accept-acr-nema and --accept-palettes
(same as in dcm2pnm) to dcmcjpeg and extended dcmjpeg to support
these options. Thanks to Gilles Mevel for suggestion.
Affects: dcmjpeg/include/djcparam.h
dcmjpeg/include/djencode.h
dcmjpeg/libsrc/djcparam.cc
dcmjpeg/libsrc/djencode.cc
dcmjpeg/libsrc/djcodece.cc
dcmjpeg/apps/dcmcjpeg.cc
dcmjpeg/docs/dcmcjpeg.man
**** Changes from 2005.11.29 (eichelberg)
- Added minimal support for compressed transfer syntaxes to dcmqrscp.
No on-the-fly decompression is performed, but compressed images can
be stored and retrieved.
Thanks to A. M. Raportirenko <[email protected]> for the submission.
Affects: dcmqrdb/apps/dcmqrscp.cc
dcmqrdb/docs/dcmqrscp.man
dcmqrdb/include/dcmqropt.h
dcmqrdb/libsrc/dcmqrcbm.cc
dcmqrdb/libsrc/dcmqropt.cc
dcmqrdb/libsrc/dcmqrptb.cc
dcmqrdb/libsrc/dcmqrscp.cc
- Added new flag keepDBHandleDuringAssociation_ which allows to determine
whether a DB handle is kept open for a complete association or a single
DIMSE message only. Also improved error handling of file locking.
Affects: dcmqrdb/include/dcmqropt.h
dcmqrdb/libsrc/dcmqropt.cc
dcmqrdb/libsrc/dcmqrscp.cc
**** Changes from 2005.11.29 (onken)
- Added support for "true" lossless compression in dcmjpeg, that doesn't
use dcmimage classes, but compresses raw pixel data (8 and 16 bit) to
avoid losses in quality caused by color space conversions or modality
transformations etc.
Affects: dcmjpeg/include/djcodece.h
dcmjpeg/include/djcparam.h
dcmjpeg/include/djencode.h
dcmjpeg/libsrc/djcodece.cc
dcmjpeg/libsrc/djcparam.cc
dcmjpeg/libsrc/djencode.cc
- Corresponding commandline option in dcmcjpeg (new default)
Affects: dcmjpeg/apps/dcmcjpeg.cc
dcmjpeg/docs/dcmcjpeg.man
**** Changes from 2005.11.28 (eichelberg)
- Updated Makefile dependencies
Affects: */*/Makefile.dep
- File dcdebug.h is not included by any other header file in the toolkit
anymore, to minimize the risk of name clashes of macro debug().
Affects: dcmdata/apps/dcm2xml.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/pdf2dcm.cc
dcmdata/include/dctk.h
dcmpstat/apps/dcmmkcrv.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmprscu.cc
dcmpstat/apps/dcmpschk.cc
dcmpstat/apps/dcmpsprt.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
- Renamed macros in dcdebug.h
Affects: dcmdata/include/dcdebug.h
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdebug.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcsequen.cc
- Minor adaptations needed for Borland Builder 6
Affects: config/include/cfwin32.h
dcmdata/libsrc/dcdict.cc
- Fixed resource leak in Win32 command execution.
Added option --exec-sync that causes synchronous command execution on Windows.
Thanks to DCMTK forum user "eludias" for the patch.
Affects: dcmnet/apps/storescp.cc
dcmnet/docs/storescp.man
- Updated documentation
Affects: dcmdata/docs/datadict.txt
- Fixed bug affecting JPEG compression with 12 or 16 bits/pixel,
where Huffman table optimization is required but was not always enabled.
Thanks to Dennis Ballance <[email protected]> for the bug report.
Affects: dcmjpeg/libsrc/djeijg12.cc
dcmjpeg/libsrc/djeijg16.cc
**** Changes from 2005.11.25 (eichelberg)
- StoreSCP now supports multi-process mode both on Posix and Win32 platforms
where a separate client process is forked for each incoming association.
Thanks to Heiko Muench <[email protected]> for the implementation
and to Alain Runa <[email protected]> for the submission.
Affects: dcmnet/apps/storescp.cc
dcmnet/docs/storescp.man
dcmnet/include/cond.h
dcmnet/include/dul.h
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dul.cc
**** Changes from 2005.11.24 (eichelberg)
- Fixed bug in code that prepares a byte stream that is fed into the MAC
algorithm when creating or verifying a digital signature. The previous
implementation was non-conformant when signatures included compressed
(encapsulated) pixel data because the item length was included in the byte
stream, while it should not. The global variable dcmEnableOldSignatureFormat
and a corresponding command line option in dcmsign allow to re-enable the old
implementation.
Thanks to "Firas Haj-Husein" <[email protected]> for the bug report.
Affects: dcmdata/include/dcobject.h
dcmdata/include/dcpxitem.h
dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dcpxitem.cc
dcmsign/apps/dcmsign.cc
dcmsign/docs/dcmsign.man
**** Changes from 2005.11.23 (eichelberg)
- Added support for AES ciphersuites in TLS module. All TLS-enabled
tools now support the "AES TLS Secure Transport Connection Profile".
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmprscu.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/libsrc/dviface.cc
dcmtls/docs/ciphers.txt
dcmtls/libsrc/tlslayer.cc
- Changed names of OpenSSL DLLs for Win32 release build - there are
just too many tools that install "their" version of libeay32.dll and
ssleay32.dll in c:\windows\system32 and cause DLL conflicts. We now call our
versions of the OpenSSL DLLs dcmtkssl.dll and dcmtkeay.dll.
Affects: CMakeLists.txt
dcmnet/apps/CMakeLists.txt
**** Changes from 2005.11.22 (eichelberg)
- Added option to movescu that allows graceful handling of Move SCPs
that send illegal datasets following pending C-MOVE-RSP messages.
Affects: dcmnet/apps/movescu.cc
dcmnet/docs/movescu.man
dcmnet/include/dimse.h
dcmnet/libsrc/dimmove.cc
**** Changes from 2005.11.17 (eichelberg)
- When locating DICOM tags by name in DcmDataDictionary::findEntry,
public tags are now preferred over private tags of the same name.
Thanks to Bernd Kuemmerlen <[email protected]> for the suggestion
and the code.
Affects: dcmdata/libsrc/dcdict.cc
- Disabled warning C4996 ("function was declared deprecated") on VS2005
Affects: config/include/cfwin32.h
- Added command line options for DIMSE and ACSE timeouts
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/docs/echoscu.man
dcmnet/docs/findscu.man
dcmnet/docs/movescu.man
dcmnet/docs/storescp.man
dcmnet/docs/storescu.man
dcmqrdb/apps/dcmqrscp.cc
dcmqrdb/apps/dcmqrti.cc
dcmqrdb/docs/dcmqrscp.man
dcmqrdb/docs/dcmqrti.man
dcmqrdb/include/dcmqropt.h
dcmqrdb/include/dcmqrtis.h
dcmqrdb/libsrc/dcmqrcbg.cc
dcmqrdb/libsrc/dcmqrcbm.cc
dcmqrdb/libsrc/dcmqropt.cc
dcmqrdb/libsrc/dcmqrscp.cc
dcmqrdb/libsrc/dcmqrtis.cc
dcmwlm/apps/wlcefs.cc
dcmwlm/apps/wlcefs.h
dcmwlm/docs/wlmscpfs.man
dcmwlm/include/wlmactmg.h
dcmwlm/libsrc/wlmactmg.cc
- Fixed warnings reported by VS2005
Affects: dcmdata/libsrc/dcuid.cc
**** Changes from 2005.11.17 (onken)
- Option --max-read-length now uses OFCommandLine to check, whether
option value is in range
Affects: dcmdata/apps/dcmdump.cc
dcmdata/apps/dcm2xml.cc
**** Changes from 2005.11.16 (riesmeier)
- Added support for Procedure Log SR documents.
Affects: dcmsr/apps/dsr2xml.xsd
- Added support for X-Ray Radiation Dose SR SOP class.
Affects: dcmdata/include/dcuid.h
dcmdata/libsrc/dcuid.cc
dcmnet/docs/movescu.man
dcmnet/docs/storescp.man
dcmnet/docs/storescu.man
dcmnet/etc/storescp.cfg
dcmnet/etc/storescu.cfg
dcmqrdb/docs/dcmqrscp.man
- Synchronized list of supported SOP classes in source code and documentation.
Affects: dcmdata/libsrc/dcuid.cc
dcmnet/docs/movescu.man
dcmnet/docs/storescp.man
dcmnet/docs/storescu.man
dcmqrdb/docs/dcmqrscp.man
dcmqrdb/docs/dcmqrti.man
- Revised list of presentation contexts.
Affects: dcmnet/etc/storescp.cfg
dcmnet/etc/storescu.cfg
- Fixed some layout and formatting issues.
Affects: dcmnet/docs/storescp.man
dcmnet/docs/termscu.man
dcmqrdb/docs/dcmqrscp.man
dcmqrdb/docs/dcmqrti.man
**** Changes from 2005.11.16 (wilkens)
- The main CMakeLists.txt file now distinguishes between different Microsoft
C/C++ compilers when setting compiler options.
Affects: CMakeLists.txt
**** Changes from 2005.11.16 (eichelberg)
- Set association timeout in ASC_initializeNetwork to 30 seconds. This improves
the responsiveness of the tools if the peer blocks during assoc negotiation.
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/apps/termscu.cc
dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpspr.cc
dcmqrdb/apps/dcmqrscp.cc
dcmqrdb/apps/dcmqrti.cc
dcmwlm/libsrc/wlmactmg.cc
- Fixed bug in requestAssociationTCP that could result in association request
failures on systems with high CPU load if an association timout was specified
in dcmConnectionTimeout, because in this case the socket was not always
correctly reset to blocking mode.
Thanks to Kent Tse <[email protected]> for the bug report and bug fix.
Affects: dcmnet/libsrc/dulfsm.cc
**** Changes from 2005.11.16 (onken)
- Added "--max-read-length" option to dcmdump and dcm2xml to override
DCMTK-internal threshold (4096K) for long attribute values.
Affects: dcmdata/apps/dcmdump.cc
dcmdata/apps/dcm2xml.cc
dcmdata/docs/dcmdump.man
dcmdata/docs/dcm2xml.man
**** Changes from 2005.11.15 (eichelberg)
- Clarified description of PDU size reported by dump_pdu().
Affects: dcmnet/libsrc/dulfsm.cc
- Added new pseudo VR type EVR_lt that is used for LUT Data when read in
implicit VR, which may be US, SS or OW. DCMTK always treats EVR_lt like OW.
Affects: dcmdata/include/dcvr.h
dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcvr.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrpobw.cc
dcmdata/libsrc/dicom.dic
- Added new global flag dcmEnableUnknownVRConversion that enables the automatic
re-conversion of defined length UN elements read in an explicit VR transfer
syntax, if the real VR is defined in the data dictionary. Default is OFFalse,
i.e. to retain the previous behavior.
Affects: dcmdata/include/dcitem.h
dcmdata/include/dcvr.h
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcvr.cc
- Added new command line option --convert-un that enables the re-conversion of
defined length UN elements.
Affects: dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/docs/dcmconv.man
dcmdata/docs/dcmdump.man
**** Changes from 2005.11.15 (wilkens)
- Modified main CMakeLists.txt file to contain paths to new support libraries.
Affects: CMakeLists.txt
**** Changes from 2005.11.14 (eichelberg)
- Now checking OpenSSL version number to allow compilation both with
old and new versions due to incompatible API change in OpenSSL 0.9.8.
Affects: dcmsign/libsrc/sicert.cc
- Added configure tests for int64_t, uint64_t and stdint.h.
Tests for longlong and ulonglong now use AC_CHECK_TYPES.
Affects: config/configure
config/configure.in
config/include/cfunix.h.in
config/include/cfwin32.h
- Changed some function return types from int to ijg_boolean, to avoid
compilation errors if the ijg_boolean type is ever changed.
Suggested by Igor Okulist <[email protected]>
Affects: dcmjpeg/libsrc/djdijg12.cc
dcmjpeg/libsrc/djdijg16.cc
dcmjpeg/libsrc/djdijg8.cc
dcmjpeg/libsrc/djeijg12.cc
dcmjpeg/libsrc/djeijg16.cc
dcmjpeg/libsrc/djeijg8.cc
- Configure test AC_CHECK_INTP_SELECT now only includes header files
that have been successfully tested for presence before.
Affects: config/aclocal.m4
config/configure
- Included cstdlib, needed on HP/UX 10.
Affects: dcmpstat/tests/msgserv.cc
**** Changes from 2005.11.14 (riesmeier)
- Made method getFilename() const.
Affects: dcmdata/apps/mdfdsman.cc
dcmdata/apps/mdfdsman.h
**** Changes from 2005.11.14 (onken)
- Added data dictionary name support for "--key" option.
Affects: dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/docs/findscu.man
dcmnet/docs/movescu.man
**** Changes from 2005.11.11 (onken)
- Added options for JPEG2000 support (lossy and lossless).
Affects: dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/apps/movescu.cc
dcmnet/docs/storescp.man
dcmnet/docs/storescu.man
dcmnet/docs/movescu.man
**** Changes from 2005.11.11 (wilkens)
- Removed superfluous compiler option /GR- in CMakeLists.txt file to keep
MS Visual Studio 2003 compiler quiet.
Affects: CMakeLists.txt
**** Changes from 2005.11.11 (eichelberg)
- Added explicit DcmDataset::clear() implementation.
Affects: dcmdata/include/dcdatset.h
dcmdata/libsrc/dcdatset.cc
- Newer OpenSSL versions must be linked against libdl. Added configure test to
check for presence of this library, which is then added to OPENSSLLIBS in
config/Makefile.def by configure.
Affects: config/configure
config/configure.in
- Changed parameter to const to allow compilation with OpenSSL 0.9.8
Affects: dcmsign/libsrc/sicert.cc
**** Changes from 2005.11.10 (onken)
- Added option "--timenames" to support filenames based on timestamps.
Thanks to Dr. Michael Heber <[email protected]> for suggested code.
Affects: dcmnet/apps/storescp.cc
dcmnet/apps/storescp.man
- Added option "--file-extension", that allows to append a suffix to each
filename.
Affects: dcmnet/apps/storescp.cc
dcmnet/docs/storescp.man
**** Changes from 2005.11.09 (riesmeier)
- Updated script for new command line tool "dcmqrscq". Fixed wrong path for
tool "dcmmkdir".
Affects: config/changext
**** Changes from 2005.11.09 (wilkens)
- Changed typedefs for longlong and ulonglong to use __int64 instead of long
long.
Affects: config/include/cfwin32.h
- Added #ifdef environments around longlong/ulonglong typedefs.
Affects: config/include/cfwin32.h
**** Changes from 2005.11.08 (wilkens)
- Deleted superfluous CMake rule file.
Removed: ALL_BUILD_force_1.rule
- Updated class WlmDataSourceFileSystem: function StartFindRequest will return
an error in case SetReadlock returns an error.
Affects: dcmwlm/libsrc/wldsfs.cc
**** Changes from 2005.11.07 (eichelberg)
- Implemented DcmFileFormat::clear(). Now the loadFile methods in class
DcmFileFormat and class DcmDataset both make sure that clear() is called
before new data is read, allowing for a re-use of the object.
Affects: dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcfilefo.cc
- All tools that both read and write a DICOM file now call
loadAllDataIntoMemory() to make sure they do not destroy a file when
output = input.
Affects: dcmdata/apps/dcmcrle.cc
dcmdata/apps/dcmdrle.cc
dcmjpeg/apps/dcmcjpeg.cc
dcmjpeg/apps/dcmdjpeg.cc
dcmsign/apps/dcmsign.cc
- Cleaned up some copy constructors in the DcmObject hierarchy.
Affects: dcmdata/include/dcdicdir.h
dcmdata/include/dcmetinf.h
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcsequen.cc
- Replaced old AC_CHECK_TYPE macros by newly developed AC_TYPDEF macro.
Missing types are now declared by type definition and not as macros anymore.
Affects: config/aclocal.m4
config/configure
config/configure.in
config/include/cfunix.h.in
config/include/cfwin32.h
- Removed MSVC6 project files from CVS repository. These need to be generated
through CMake in the future.
Removed: */*/*.dsp
dcmtk.dsw
**** Changes from 2005.11.04 (eichelberg)
- Updated data dictionary for CP Pack 33 (final text)
Affects: dcmdata/include/dcdeftag.h
dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dicom.dic
**** Changes from 2005.11.03 (eichelberg)
- The movescu tool does not open any listen port by default anymore.
Affects: dcmnet/apps/movescu.cc
dcmnet/docs/movescu.man
dcmnet/libsrc/dul.cc
- Added transfer syntax selection options to findscu.