forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.340
2932 lines (2383 loc) · 101 KB
/
CHANGES.340
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.4.0 (Public Release - 1999-05-06)
- Updated Version Number and Implementation Version Name to reflect the
current public release (3.4.0)
Affects: dcmdata/include/dcuid.h
- Updated documentation to reflect changes in 3.4.0
Affects: ANNOUNCE
HISTORY
INSTALL
config/docs/dirstruc.txt
**** Changes from 1999.05.05 (riesmeier)
- Modified parameter of CreateProcess call to avoid creation of new command
line window under Windows.
Affects: dcmpstat/apps/dcmpsrcv.cc
dcmpstat/libsrc/dviface.cc
- Added optional parameter to method loadPState (from database) to change
instance reviewed flag for pstate and image.
Affects: dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
**** Changes from 1999.05.04 (riesmeier)
- Added DOC++ comments to header file.
Affects: ofstd/include/ofcmdln.h
- Minor changes to support Cygwin B20.1 (check __CYGWIN__ to distinguish from
MSVC which also defines _WIN32).
Affects: dcmdata/libsrc/cmdlnarg.cc
dcmnet/include/dcompat.h
dcmnet/libsrc/dcompat.cc
- Added releaseDatabase to savePState to avoid deadlocks.
Affects: dcmpstat/libsrc/dviface.cc
- Change status of variable imageInDatabase in savePState to avoid unnecessary
saving of (probabaly large) image files.
Affects: dcmpstat/libsrc/dviface.cc
**** Changes from 1999.05.04 (eichelberg)
- Updated installation instructions
Affects: INSTALL
- Updated Windows 95/NT makefiles and make instructions.
Affects: config/systems/win32/README
Added: config/systems/win32/msvc5.zip
Removed: config/systems/win32/msvc4.mak
- Linking -lm to dcmimgle/apps, required on OSF1.
Affects: dcmimgle/apps/Makefile.in
- Minor code purifications to keep IBM xlC quiet
Affects: dcmimgle/include/diinpxt.h
- Added test for struct utimbuf declaration,
absent on some platforms like NeXTStep 3.3
Affects: config/acconfig.h
config/configure
config/configure.in
config/include/cfwin32.h
config/include/config.h.in
dcmpstat/libsrc/dviface.cc
- Removed carriage returns
Affects: dcmpstat/include/dvpstat.h
- Including ofstring.h in ctndisp.cc to avoid prototype conflicts
on HP-UX 9 with gcc.
Affects: ctndisp/apps/ctndisp.cc
- Minor code purifications to keep gcc on OSF1 quiet.
Affects: dcmpstat/apps/dcmmklut.cc
dcmpstat/libsrc/dvpsgl.cc
dcmpstat/libsrc/dvpstat.cc
- Corrected dcmpstat Makefile.in for make install.
Affects: dcmpstat/Makefile.in
**** Changes from 1999.05.03 (riesmeier)
- Minor code purifications to keep Sun CC 2.0.1 quiet.
Affects: ctndisp/libsrc/dispuser.cc
dcmdata/apps/dump2dcm.cc
dcmimgle/include/dcmimage.h
dcmimgle/include/dibaslut.h
dcmimgle/include/diflipt.h
dcmimgle/include/diluptab.h
dcmimgle/include/dimoipxt.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/diovlay.h
dcmimgle/include/diovpln.h
dcmimgle/include/displint.h
dcmimgle/include/ditranst.h
dcmimgle/libsrc/dibarlut.cc
dcmimgle/libsrc/didispfn.cc
dcmimgle/libsrc/diluptab.cc
dcmimgle/libsrc/dimoimg.cc
dcmnet/apps/echoscu.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulparse.cc
dcmpstat/apps/dcmmkcrv.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/include/dvcache.h
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpsov.cc
dcmpstat/libsrc/dvpstat.cc
ofstd/libsrc/ofconapp.cc
wlistctn/apps/scefind.cc
wlistctn/libsrc/wlistctn.cc
- Enhanced check in savePState() method whether image file is already stored
in database.
Affects: dcmpstat/libsrc/dviface.cc
- Replaced method applyOptimizationLUT by its contents (method body) to avoid
warnings (and possible errors) on Sun CC 2.0.1 :-/
Affects: dcmimgle/include/dimoipxt.h
dcmimgle/include/dimoopxt.h
**** Changes from 1999.04.30 (eichelberg)
- Minor code purifications to keep IBM xlC quiet
Affects: dcmimgle/include/diinpxt.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/dimopxt.h
- Minor code purifications to keep Sun CC 2.0.1 quiet
Affects: dcmdata/apps/dcmgpdir.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescu.cc
dcmpstat/apps/dcmp2pgm.cc
dcmpstat/include/dvpsconf.h
dcmpstat/libsrc/dvpsconf.cc
dcmpstat/libsrc/dvpsgal.cc
dcmpstat/libsrc/dvpsgll.cc
dcmpstat/libsrc/dvpsvwl.cc
ofstd/libsrc/ofconapp.cc
- Renamed all flock calls to dcmtk_flock to avoid name clash
between flock() emulation based on fcntl() and a constructor
for struct flock.
Affects: dcmnet/include/dcompat.h
dcmnet/libsrc/dcompat.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
imagectn/apps/scemove.cc
imagectn/apps/scestore.cc
imagectn/apps/tinet.cc
imagectn/libsrc/dbstore.cc
imagectn/libsrc/dbutils.cc
wlistctn/libsrc/wrklstdb.cc
- Added provision for systems which have bzero() but no prototype, e.g. SunOS
Affects: ofstd/include/ofbmanip.h
- Now including stdio.h in diutils.h, required on SunOS
Affects: dcmimgle/include/diutils.h
**** Changes from 1999.04.29 (eichelberg)
- Minor code purifications to keep DEC cxx 6 quiet.
Affects: dcmimgle/include/dimoipxt.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/diovlay.h
dcmimgle/include/diovpln.h
- Changed first parameter in bzero() call to char *, required on OSF1.
Affects: ofstd/include/ofbmanip.h
- Linking all tools that use dcmimgle with -lm, required on OSF1.
Affects: dcmpstat/apps/Makefile.in
**** Changes from 1999.04.29 (riesmeier)
- Removed color related image files from public toolkit part.
Affects: dcmimgle/include/dimoopxt.h
dcmimgle/libsrc/Makefile.dep
dcmimgle/libsrc/Makefile.in
Removed: dcmimgle/include/dicoopx.h
dcmimgle/include/dicoopxt.h
dcmimgle/include/dicopx.h
dcmimgle/libsrc/dicoopx.cc
- Added DOC++ comments.
Affects: ofstd/include/ofcmdln.h
ofstd/include/oftimer.h
- Added checks whether an option which should be added already exists.
Affects: ofstd/libsrc/ofcmdln.cc
- Renamed class CubicSpline to DiCubicSpline.
Affects: dcmimgle/include/displint.h
dcmimgle/libsrc/dibarlut.cc
dcmimgle/libsrc/didispfn.cc
- Removed debug code.
Affects: ofstd/include/ofcmdln.h
- Added PresentationLabel to index file.
Affects: dcmpstat/include/dvicache.h
dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
imagectn/include/dbpriv.h
imagectn/libsrc/dbindex.cc
- Rebuild Makefile dependencies.
Affects: dcmnet/apps/Makefile.dep
**** Changes from 1999.04.28 (riesmeier)
- Added item PresentationDescription to index record.
Affects: imagectn/include/dbpriv.h
imagectn/libsrc/dbindex.cc
- Rebuild Makefile dependencies.
Affects: dcmimage/libsrc/Makefile.dep
imagectn/apps/Makefile.dep
imagectn/libsrc/Makefile.dep
imagectn/tests/Makefile.dep
- Merged change log for module dcmimgle into main change log (there is
still a separate change file for module dcmimage).
Affects: CHANGES
- Removed some '#ifdef DEBUG' statements from header files to avoid
problems with inconsistent compilations.
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Removed warning when adding optional parameter direct after another
optional parameter.
Affects: ofstd/libsrc/ofcmdln.cc
- Changed comments/formatting.
Affects: dcmimgle/apps/dcmgsdf.cc
dcmimgle/include/dimocpt.h
- Added newline to error output.
Affects: dcmimgle/apps/dconvlum.cc
- Added experimental support to use pastel colors (currently not public!).
Affects: dcmimgle/include/dcmimage.h
dcmimgle/include/diimage.h
dcmimgle/include/dimoimg.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/diutils.h
dcmimgle/libsrc/dimoimg1.cc
dcmimgle/libsrc/dimoimg2.cc
dcmimgle/libsrc/dimoimg.cc
- Removed debug code.
Affects: dcmimgle/include/diflipt.h
- Introduced new scheme for the debug level variable: now each level can be
set separately (there is no "include" relationship).
Affects: dcmimgle/include/diinpxt.h
dcmimgle/include/dimoipxt.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/dimopxt.h
dcmimgle/include/discalet.h
dcmimgle/libsrc/dcmimage.cc
dcmimgle/libsrc/dibarlut.cc
dcmimgle/libsrc/didispfn.cc
dcmimgle/libsrc/didocu.cc
dcmimgle/libsrc/diimage.cc
dcmimgle/libsrc/diluptab.cc
dcmimgle/libsrc/dimoimg.cc
dcmimgle/libsrc/dimomod.cc
dcmimgle/libsrc/diovlay.cc
dcmimgle/libsrc/diovlimg.cc
dcmimgle/libsrc/diovpln.cc
dcmimgle/libsrc/diutils.cc
- Added "template<>" to specialized template functions/methods to avoid
compiler warnings reported by gcc version egcs-2.91.66 (conforms with new
C++ standard).
Affects: dcmimgle/include/dipxrept.h
- Moved files from dcmimage module to dcmimgle to support new pastel color
output format.
Affects: dcmimgle/libsrc/Makefile.in
Added: dcmimgle/include/dicoopx.h
dcmimgle/include/dicoopxt.h
dcmimgle/include/dicopx.h
dcmimgle/libsrc/dicoopx.cc
- Added modules dcmimgle and dcmpstat to the readme file.
Affects: README
- Added documentation for console applications.
Added: dcmimgle/docs
dcmimgle/docs/dconclum.txt
dcmimgle/docs/dcmgsdf.txt
dcmimgle/docs/Makefile.in
- Removed additional declaration of local variable (hides first declaration)
to avoid compiler warnings reported by gcc 2.7.2.1 (Linux).
Affects: dcmpstat/libsrc/dviface.cc
- Added type casts to NULL pointers returned as 'const char *' to avoid
compiler warnings reported by gcc 2.7.2.1 (Linux).
Affects: dcmimgle/include/dimoimg.h
dcmimgle/include/dimomod.h
dcmimgle/include/dimopx.h
- Added test whether the compiler supports the new explicit template
specialization syntax (see below).
Affects: dcmimgle/include/dipxrept.h
**** Changes from 1999.04.28 (eichelberg)
- Added test whether the compiler supports the new explicit template
specialization syntax, e.g. template<> int a_class<int>::a_method()
Affects: config/acconfig.h
config/aclocal.m4
config/configure
config/configure.in
config/include/cfwin32.h
config/include/config.h.in
- Modules dcmpstat and dcmimgle now configured and compiled by default.
Affects: config/modules
- Merged change log for module dcmpstat into main change log.
Affects: CHANGES
Removed: dcmpstat/CHANGES
- When creating a presentation state for an image, modality rescale/slope
without rescale type is handled now in a more lenient way.
Affects: dcmpstat/libsrc/dvpstat.cc
- Cleaned up module dcmpstat apps, adapted to new command line class
and added short documentation.
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/apps/Makefile.in
dcmpstat/apps/dcmmkcrv.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
Added: dcmpstat/docs/dcmmkcrv.txt
dcmpstat/docs/dcmmklut.txt
dcmpstat/docs/dcmp2pgm.txt
dcmpstat/docs/dcmpsmk.txt
dcmpstat/docs/dcmpsrcv.txt
dcmpstat/docs/dcmpssnd.txt
Removed: dcmpstat/apps/dcmpsrw.cc
dcmpstat/apps/dcmpstst.cc
dcmpstat/apps/listdb.cc
dcmpstat/apps/runsend.cc
**** Changes from 1999.04.27 (riesmeier)
- Added some useful debugging checks.
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Introduced list of valid parameters used for syntax output and error
checking.
Affects: ofstd/include/ofcmdln.h
ofstd/include/ofconapp.h
ofstd/libsrc/ofcmdln.cc
ofstd/libsrc/ofconapp.cc
- Added method to check for conflicts between two options (incl. error
output).
Affects: ofstd/include/ofconapp.h
ofstd/libsrc/ofconapp.cc
- Added some comments (DOC++ style).
Affects: ofstd/include/ofcmdln.h
- Corrected bug: option '--help' could not be used when mandatory parameters
were missing.
Affects: ofstd/libsrc/ofcmdln.cc
ofstd/libsrc/ofconapp.cc
- Changed output of usage text (moved some newlines to support output when
parameters and/or options are absent).
Affects: ofstd/libsrc/ofconapp.cc
- Adapted console applications to new OFCommandLine and OFConsoleApplication
functionality.
Affects: dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/dcmftest.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
**** Changes from 1999.04.27 (eichelberg)
- Adapted storescu to new command line option scheme.
Added support for transmission of compressed images and on-the-fly
creation of new UIDs for test scenarios.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/apps/storescu.cc
- Adapted storescp to new command line option scheme.
Added support for transmission of compressed images.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/apps/storescp.cc
- Prevented dcmdata applications from opening a file with empty filename,
leads to application crash on Win32.
Affects: dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmftest.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
- Updated echoscu copyright header
Affects: dcmnet/apps/echoscu.cc
- Updated storescu and storescp for minor changes is command line class.
Affects: dcmnet/apps/storescu.cc
dcmnet/apps/echoscu.cc
**** Changes from 1999.04.26 (riesmeier)
- Changed comments.
Affects: ofstd/include/ofbmanip.h
- Added support to define minimum width of short and long option columns.
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Removed bug: empty parameters have always been interpreted as options.
Affects: dcmdata/apps/dcmdump.cc
ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Enhanced support of wildcard expansion under Windows (now very similar
to Unix shells).
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Added support to check dependences between different options and report
error messages if necessary.
Affects: dcmdata/apps/dcmdump.cc
ofstd/include/ofconapp.h
ofstd/libsrc/ofconapp.cc
**** Changes from 1999.04.26 (eichelberg)
- Added new "transfer syntax aware" variant of the dcmnet function
ASC_findAcceptedPresentationContextID. This variant tries to find an
accepted presentation context that matches both abstract and transfer syntax.
Affects: dcmnet/include/assoc.h
dcmnet/libsrc/assoc.cc
- Updated dcmdata docs for new command line options.
Affects: dcmdata/docs/dcmconv.txt
dcmdata/docs/dcmdump.txt
dcmdata/docs/dcmgpdir.txt
dcmdata/docs/dump2dcm.txt
Added: dcmdata/docs/dcmftest.txt
- Ported Worklist CTN to Win32 environment.
Contribution from Andy Hewett <[email protected]>
Affects: wlistctn/apps/sce.cc
wlistctn/apps/sceecho.cc
wlistctn/apps/scefind.cc
wlistctn/apps/wlistctn.cc
wlistctn/apps/wlistctn.h
wlistctn/include/wrklstdb.h
wlistctn/libsrc/wrklstdb.cc
wlistctn/libsrc/Makefile.in
wlistctn/tests/Makefile.in
- Updated copyright headers in module wlistctn
and makefile dependencies.
Affects: wlistctn/apps/Makefile.dep
wlistctn/apps/sce.h
wlistctn/apps/sceecho.h
wlistctn/apps/scefind.h
wlistctn/libsrc/Makefile.dep
wlistctn/tests/Makefile.dep
wlistctn/tests/wltest.cc
wlistctn/wwwapps/Makefile.dep
wlistctn/wwwapps/preplock.cc
wlistctn/wwwapps/readoviw.cc
wlistctn/wwwapps/readwlst.cc
wlistctn/wwwapps/writwlst.cc
**** Changes from 1999.04.22 (eichelberg)
- Corrected bug (buffer overflow) in DICOM upper layer module causing
application crash when large A-ASSOCIATE-RSP PDUs were assembled.
Affects: dcmnet/libsrc/dulfsm.cc
- Corrected Win32 API version of expandFileNames routine in dcmgpdir
Affects: dcmdata/apps/dcmgpdir.cc
- Corrected Win32 API version of flock emulation
Affects: dcmnet/libsrc/dcompat.cc
**** Changes from 1999.04.21 (eichelberg)
- Added method OFConsoleApplication::checkParam()
Affects: ofstd/include/ofconapp.h
ofstd/libsrc/ofconapp.cc
- Now always including <windows.h> instead of <winsock.h> on Win32 platforms.
This makes sure that <winsock2.h> is used if available.
Affects: ofstd/include/oftimer.h
dcmdata/libsrc/cmdlnarg.cc
dcmdata/libsrc/dcuid.cc
dcmdata/libsrc/mkdeftag.cc
dcmdata/libsrc/mkdictbi.cc
dcmnet/include/dcompat.h
dcmnet/libsrc/dcompat.cc
- Increased max. number of transfer syntaxes that
can be managed in an A-ASSOCIATE packet from 25 to 50.
Affects: dcmnet/include/assoc.h
- Updated copyright file
Affects: COPYRIGHT
- Corrected a few typos in ctndisp
Affects: ctndisp/libsrc/dispuser.cc
- Fixed bug in DcmPixelData::findConformingEncapsulatedRepresentation
leading to an assertion failure when working with compressed data.
Bug reported by Andy Hewett <[email protected]>
Affects: dcmdata/libsrc/dcpixel.cc
- Fixed use of OFBitmanipTemplate<>::zeroMem in sendAssociationRQTCP()
Affects: dcmnet/libsrc/dulfsm.cc
- Adapted echoscu command line options to new scheme.
Merged assctest functionality into echoscu (--propose-ts and --propose-pc).
Affects: dcmnet/apps/echoscu.cc
dcmnet/Makefile.in
Removed: dcmnet/tests/assctest.cc
dcmnet/tests/Makefile.dep
dcmnet/tests/Makefile.in
**** Changes from 1999.04.19 (eichelberg)
- Added new option to findscu which allows to extract all
C-FIND-RSP messages to file as received over network.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/apps/findscu.cc
- Implemented locking for Win95/98 and Win32s using
LockFile() instead of LockFileEx() which is only supported on NT.
Affects: dcmnet/libsrc/dcompat.cc
- Added constants for access() on Win32.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/include/dcompat.h
- Added experimental support for extended SOP class negotiation.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/apps/Makefile.dep
dcmnet/include/assoc.h
dcmnet/include/dul.h
dcmnet/libsrc/Makefile.dep
dcmnet/libsrc/Makefile.in
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulconst.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulparse.cc
dcmnet/libsrc/dulstruc.h
dcmnet/tests/Makefile.dep
Added: dcmnet/include/extneg.h
dcmnet/libsrc/extneg.cc
- Added experimental support for C-GET.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/include/dimse.h
Added: dcmnet/libsrc/dimget.cc
- Added support for C-FIND-CANCEL/C-MOVE-CANCEL in DIMSE_storeUser().
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/include/dimse.h
dcmnet/libsrc/dimstore.cc
- Added basic support for sending/receiving in encapsulated transfer syntaxes.
Based on a contribution from Andy Hewett <[email protected]>
Affects: dcmnet/libsrc/dimse.cc
- Fixed bug in getAndDeleteAttributeList() that caused
problems when an N-GET-RQ with an empty attribute list was sent.
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/libsrc/dimcmd.cc
**** Changes from 1999.04.13 (eichelberg)
- Fixed bug in DcmUnsignedLongOffset::print that caused an application crash
when very large DICOMDIRs were printed (i.e. with dcmdump).
Thanks to Andy Hewett <[email protected]> for the bug report and fix.
Affects: dcmdata/libsrc/dcvrulup.cc
**** Changes from 1999.03.31 (eichelberg)
- Updated copyright header in module dcmdata
and makefile dependencies.
Affects: dcmdata/*/*
**** Changes from 1999.03.29 (eichelberg)
- Adapted command line options of dcmdata applications to new scheme.
Affects: dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/dcmftest.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
dcmdata/apps/.cc
- Corrected list of image SOP classes
Affects: dcmdata/libsrc/dcuid.cc
- Updated list of SOP class name prefixes and estimated sizes
Affects: dcmnet/libsrc/diutil.cc
- Cleaned up dcmnet code for char* to const char* assignments.
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/include/dul.h
dcmnet/include/lst.h
dcmnet/libsrc/asccond.cc
dcmnet/libsrc/asccond.h
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dimecho.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulfsm.h
dcmnet/libsrc/dulparse.cc
dcmnet/libsrc/dulpres.cc
dcmnet/libsrc/lstcond.cc
dcmnet/tests/assctest.cc
**** Changes from 1999.03.27 (riesmeier)
- Rebuild Makefile dependencies.
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/libsrc/Makefile.dep
- Added new entry to index file: Presentation Description.
Affects: dcmpstat/apps/listdb.cc
dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
- Add remaining member variables to member initialization list to avoid
compiler warnings.
Affects: dcmpstat/include/dvcache.h
- Enhanced savePState() method: now image file is also added to index file
and stored in image directory (if not already there).
Affects: dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
- Added method to check whether current image is inverse or not.
Affects: dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dvpstat.cc
**** Changes from 1999.03.24 (riesmeier)
- Added optional parameters to define minimum width of columns for short and
long options in syntax output.
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Changed optional integer parameter in method findOption to enum type.
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
- Modified output of usage string: "[options]" are only printed if valid
options exist.
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofconapp.cc
- Removed debug code.
Affects: dcmimgle/include/dirotat.h
- Added/Modified comments and formatting.
Affects: dcmimgle/include/dcmimage.h
dcmimgle/include/dibarlut.h
dcmimgle/include/dibaslut.h
dcmimgle/include/didispfn.h
dcmimgle/include/didocu.h
dcmimgle/include/diflipt.h
dcmimgle/include/diimage.h
dcmimgle/include/diinpx.h
dcmimgle/include/diinpxt.h
dcmimgle/include/diluptab.h
dcmimgle/include/dimo1img.h
dcmimgle/include/dimo2img.h
dcmimgle/include/dimocpt.h
dcmimgle/include/dimoflt.h
dcmimgle/include/dimoimg.h
dcmimgle/include/dimoipxt.h
dcmimgle/include/dimomod.h
dcmimgle/include/dimoopx.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/dimopx.h
dcmimgle/include/dimopxt.h
dcmimgle/include/dimorot.h
dcmimgle/include/dimosct.h
dcmimgle/include/diobjcou.h
dcmimgle/include/diovlay.h
dcmimgle/include/diovlimg.h
dcmimgle/include/diovpln.h
dcmimgle/include/dipixel.h
dcmimgle/include/dipxrept.h
dcmimgle/include/diregbas.h
dcmimgle/include/dirotat.h
dcmimgle/include/discalet.h
dcmimgle/include/displint.h
dcmimgle/include/ditranst.h
dcmimgle/include/diutils.h
dcmimgle/libsrc/dimoimg.cc
- Added support for Barten transformation from 2 to 7 bits input (now: 2-16).
Affects: dcmimgle/include/didispfn.h
dcmimgle/libsrc/didispfn.cc
- Removed bug in routines rotating and flipping overlay planes in clipped
images.
Affects: dcmimgle/libsrc/diovlay.cc
dcmimgle/libsrc/diovpln.cc
- Removed bug when scaling and clipping images where the clipping area exceeds
the original images.
Affects: dcmimgle/libsrc/dcmimage.cc
**** Changes from 1999.03.22 (eichelberg)
- Reworked data dictionary based on the 1998 DICOM edition and the latest
supplement versions. Corrected dcmtk applications for minor changes
in attribute name constants.
Affects: ctndisp/apps/ctnddico.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/include/dcdeftag.h
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dicom.dic
dcmdata/libsrc/dcdicdir.cc
dcmimgle/libsrc/diovpln.cc
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpstat.cc
imagectn/apps/tiquery.cc
imagectn/libsrc/dbindex.cc
imagectn/libsrc/dbutils.cc
wlistctn/libsrc/wrklstdb.cc
wlistctn/wwwapps/readoviw.cc
wlistctn/wwwapps/readwlst.cc
wlistctn/wwwapps/writwlst.cc
- Reworked UID list based on the 1998 DICOM edition and the latest
supplement versions.
Affects: dcmdata/include/dcuid.h
dcmdata/libsrc/dcuid.cc
- Fixed bug in data dictionary causing a segmentation fault
if dictionary was cleared and a smaller version reloaded.
Affects: dcmdata/libsrc/dchashdi.cc
- Added support for Structured Reports to dcmgpdir.
Added preliminary support for including sequences into a DICOMDIR.
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/apps/dcmgpdir.cc
dcmdata/include/dcdirrec.h
dcmdata/libsrc/dcdirrec.cc
- Implemented getUserName() on Win32 using the NetWkstaUserGetInfo()
API function. Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/libsrc/mkdeftag.cc
dcmdata/libsrc/mkdictbi.cc
- Now printing explicit error message when DICOM file is too short.
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/libsrc/dcelem.cc
- Added -d <debuglevel> flag to dcmdump.
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/apps/dcmdump.cc
- dump2dcm now allows to include the contents of binary files
as OB/OW values while converting a dump to a DICOM file.
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/apps/dump2dcm.cc
dcmdata/docs/dump2dcm.txt
- New handling of unknown (unsupported) VRs encountered when reading explicit
VR data. If the VR string consists of uppercase letters, we assume a
"future DICOM VR" and decode it expecting an extended length field
(4 bytes). Otherwise, we assume an illegal VR string created by some old
equipment (i.e.) "??" and decode without extended length (2 bytes).
Affects: dcmdata/include/dcvr.h
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcvr.cc
**** Changes from 1999.03.22 (riesmeier)
- Added parameter to get value of (transparent) background color for method
getOverlayData.
Affects: dcmpstat/apps/dcmp2pgm.cc
dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dvpstat.cc
- Rebuild Makefile dependencies.
Affects: dcmimgle/libsrc/Makefile.dep
dcmpstat/apps/Makefile.dep
dcmpstat/libsrc/Makefile.dep
- Added/Changed comments.
Affects: ofstd/include/ofconapp.h
ofstd/include/offname.h
dcmimgle/include/dcmimage.h
dcmimgle/include/displint.h
dcmimgle/libsrc/didispfn.cc
- Added parameter to specify (transparent) background color for method
getOverlayData().
Affects: dcmimgle/include/dcmimage.h
dcmimgle/include/dimoimg.h
dcmimgle/include/diovlay.h
dcmimgle/include/diovpln.h
dcmimgle/libsrc/dimoimg.cc
dcmimgle/libsrc/diovlay.cc
dcmimgle/libsrc/diovpln.cc
- Removed bug concerning the rotation and flipping of additional overlay
planes (NumberOfFrames has not always been determined correctly).
Affects: dcmimgle/libsrc/diovlay.cc
**** Changes from 1999.03.17 (eichelberg)
- Updated Win32 config header: access() and getpid() exists.
Contribution from Andy Hewett <[email protected]>
Affects: config/include/cfwin32.h
- Added UIDs for Supplement 32 (DX)
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/include/dcuid.h
- Added method DcmTagKey::toString()
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/include/dctagkey.h
dcmdata/libsrc/dctagkey.cc
- Added code to prepareCmdLineArgs() to redirect stderr, cout,
cerr to stdout on Windows and make output unbuffered.
This allows to redirect the output of DCMTK tools to file on Windows.
Contribution from Andy Hewett <[email protected]>
Affects: dcmdata/libsrc/cmdlnarg.cc
**** Changes from 1999.03.05 (eichelberg)
- Added tests for <strstream.h> and <strstrea.h> to configure.
Affects: config/configure
config/configure.in
config/include/cfwin32.h
config/include/config.h.in
**** Changes from 1999.03.04 (riesmeier)
- Barten LUT is now be re-created when ambient light value has changed.
Affects: dcmimgle/include/dibarlut.h
dcmimgle/libsrc/dibarlut.cc
dcmimgle/libsrc/didispfn.cc
- Removed const specifier (for pointer variable) to avoid warnings on SunCC.
Affects: dcmimgle/libsrc/didispfn.cc
**** Changes from 1999.03.03 (eichelberg)
- Implemented new class for automatically creating filenames.
Added: ofstd/include/offname.h
ofstd/libsrc/offname.cc
Affects: ofstd/libsrc/Makefile.in
ofstd/libsrc/Makefile.dep
- Changed imagectn database to use new code to create
filenames instead of tempnam() which seems to be
unreliable on Windows.
Affects: imagectn/libsrc/dbutils.cc
imagectn/libsrc/Makefile.dep
**** Changes from 1999.03.03 (riesmeier)
- Added support to specify ambient light value (re: Barten transformation).
Affects: dcmimgle/apps/dconvlum.cc
dcmimgle/include/dibarlut.h
dcmimgle/include/didispfn.h
dcmimgle/libsrc/dibarlut.cc
dcmimgle/libsrc/didispfn.cc
- Changed comments.
Affects: dcmimgle/include/dcmimage.h
dcmimgle/libsrc/dimoimg.cc
- Added method to invert lookup table data (used for presentation state LUTs).
Affects: dcmimgle/include/dibaslut.h
dcmimgle/libsrc/dibaslut.cc
**** Changes from 1999.03.02 (riesmeier)
- Added methods to get and set ambient light value (re: Barten transformation).
Affects: dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
- Moved method 'isBartenTransformPossible()' from presentation state class to
interface class.
Affects: dcmpstat/include/dviface.h
dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dviface.cc
- Added method to invert an image by changing the presentation state LUT or
shape.
Affects: dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dvpstat.cc
- Changed implementation of method 'getOverlayData()': now conversion from
P-value to DDL is implictly performed and the correct P-value for the related
layer is used.
Affects: dcmpstat/libsrc/dvpstat.cc
- Added parameter to selectPState() specifying whether to change the review
status of the loaded presentation state.
Affects: dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
- Added method to presentation state class that checks whether Barten
transformation is possible or not.
Affects:dcmpstat/include/dvpstat.h
- Corrected bug: when determine minimum and maximum pixel value (external)
modality LUTs were ignored.
Affects: dcmimgle/include/dimoipxt.h
- Corrected bug in output routine of monochrome pixel data (wrong scaling when
Barten transformation and windowing are active).
Affects: dcmimgle/include/dimoopxt.h
**** Changes from 1999.02.28 (riesmeier)
- Corrected bug: the output bits for bitmaps shutters were inverted (this was
done due to an error in the used test images).
Affects: dcmimgle/include/dimoopxt.h
- Corrected bug: the bit position for bitmap shutters was 1 instead of 0 (i.e.
the first bit was always been skipped and the all following bits were wrong).
Affects: dcmimgle/libsrc/diovpln.cc
**** Changes from 1999.02.27 (riesmeier)
- Changed implementation of deleteImageFile (imagectn method doesn't function
under Window NT).
Affects: dcmpstat/libsrc/dviface.cc
- Removed bug in createPStateCache (cache was reported invalid on second call).
Affects: dcmpstat/libsrc/dviface.cc
- Modified method selectPState (image file is now implicitly loaded if
necessary).
Affects: dcmpstat/libsrc/dviface.cc
**** Changes from 1999.02.25 (riesmeier)
- Added debug code (explicitly delete data dictionary).
Affects: dcmpstat/apps/dcmpssnd.cc
dcmpstat/apps/dcmpsrcv.cc
- Added setting of debug level in DicomImageClass (avoids compiler warnings).
Affects: dcmpstat/apps/listdb.cc
- Changed formatting of some comments.
Affects: dcmpstat/apps/dcmp2pgm.cc
- Added some comments.
Affects: dcmpstat/include/dviface.h
- Renamed methods enable/disablePState().
Affects: dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
- Added method to fill pixel data into an externally handled storage area.
Affects: dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dvpstat.cc
- Added initialization of local variable to avoid compiler warnings (reported
by gcc 2.7.2.1 on Linux).
Affects: dcmpstat/libsrc/dvpstat.cc