-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHANGES
executable file
·4525 lines (2664 loc) · 242 KB
/
CHANGES
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
211009: libsrc/include,src/dctool/ie.h,standard/condn.tpl,sopcl.tpl,iodcomp,module,strval/vl.tpl: Add Microscopy Bulk Simple Annotations (Sup 222)
211005: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Tomotherapeutic and Robotic-Arm Treatment Modalities (Sup 176)
211001: libsrc/include/dctool/attr.h,,attrlist.h,src/dctool/attrlist.cc,attrvrfy.cc,support/module.awk: Avoid seg fault in verify message when building full path to attribute when checking attribute value when attribute not present (000567)
210906: libsrc/standard/elmdict/dicom3.tpl: Data elements for RT Patient Setup and Delivery Instruction (Sup 160)
210903: libsrc/standard/elmdict/dicom3.tpl,iodcomp,module,strval/vl.tpl: Add Whole Slide Microscopy Image Flavor of THUMBNAIL and retire LOCALIZER (incl. retire Multi-Resolution Navigation Module and data elements) (CP 2102)
210831: libsrc/standard/condn.tpl,iodcomp,module,strval/softcopy.tpl: Add Extended Presentation States (Sup 120)
210830: libsrc/standard/module,strval/vl.tpl: Add calculation comments for intraocular lens calculations to Intraocular Lens Calculations IOD (CP 1812)
210830: libsrc/standard/condn.tpl,module,strval/vl.tpl: Add concept of Toric Intraocular Lenses to Intraocular Lens Calculations IOD (CP 1813)
210830: libsrc/standard/module/vl.tpl: Add corneal measurement values sequence to Intraocular Lens Calculations IOD (IOL) (CP 1814)
210830: libsrc/standard/condn.tpl,module/dx.tpl: Add Breast Biopsy Target functional group macro to Breast Tomo (CP 1709)
210830: libsrc/standard/module/xaxrf.tpl: Add PositionerPrimaryAngle, PositionerSecondaryAngle missing from PerProjectionAcquisitionSequence in XRay3DAngiographicAcquisition
210830: libsrc/standard/module/rt.tpl: Adding missing condition for DepthValueAveragingFlag in RTBeams
210830: libsrc/standard/module/xaxrf.tpl: Add Table Information to X-Ray 3D IODs (CP 1346)
210830: libsrc/standard/module/xaxrf.tpl: Add missing Filter Beam Path Length Minimum, Maximum to XRay3DAngiographicAcquisition (CP 837)
210830: libsrc/standard/condn.tpl,base.tpl: Use of Segmentation and Parametric Maps with Whole Slide Imaging (CP 1830), Add Slide Orientation and Total Pixel Matrix information to Segmentation and Parametric Maps for TILED_FULL (CP 1984)
210830: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,iodcomp,module/vl.tpl,strval/base.tpl,vl.tpl: Add Ophthalmic Optical Coherence Tomography for Angiographic Imaging Storage SOP Classes (Sup 197)
210830: libsrc/standard/module/vl.tpl: Add Attribute to convey OPT Scan Patterns in OPT IOD (CP 1663)
210830: libsrc/standard/module/ct.tpl: Correct Multi-energy Sequence Nesting (CP 1977)
210830: libsrc/standard/condn.tpl,module,strval/mr.tpl: Add Water Reference and Echo Top (Peak) Position to the Enhanced Spectroscopy object (CP 1294)
210830: libsrc/standard/condn.tpl,module/base.tpl,mr.tpl: Add settling phases information and Synch pulse for Functional MRI (includes adding Functional MR Functional Groups Macro) (CP 1476)
210830: libsrc/standard/module/dx.tpl: Add compression pressure to mammography, breast tomosynthesis and projection objects (CP 1679)
210830: libsrc/standard/module/dx.tpl: Remove redundant RecognizableVisualFeatures in DX Image Module that is not in standard
210829: libsrc/standard/condn.tpl,module,strval/rt.tpl: RT Ion Beams Scan Spot Ordering (CP 1013), also add missing ScanSpotTuneID, NumberOfScanSpotPositions
210829: libsrc/standard/module/rt.tpl: RT Ion Beams Correction for Scan Spot Size Record (CP 1971)
210829: libsrc/standard/module/rt.tpl: Add Ion Range and Modulation (CP 1460)
210829: libsrc/standard/module/rt.tpl: Add missing RangeShifterID to RT Ion Beams Session Record Module
210829: libsrc/standard/elmdict/dicom3.tpl,module,strval/rt.tpl: Additional Tags For Ion Eye Treatment (CP 1531)
210829: libsrc/standard/module/rt.tpl: PDR Pulse Details in RT Brachy Session Record (CP 1203)
210829: libsrc/standard/module/rt.tpl: Add BolusID to RTBeamsSessionRecord (CP 483)
210829: libsrc/standard/condn.tpl,module/rt.tpl: Consolidate Brachytherapy Applicator Geometry Definitions (CP 1657)
210829: libsrc/standard/module/rt.tpl: Additional SSD Information (CP 1434)
210829: libsrc/standard/module/rt.tpl: Move ApplicatorDescription position in RT Beams and Session Record Modules
210829: libsrc/standard/module/rt.tpl: Correct nesting of GeneralAccessorySequence in RT (and Ion) Beams and Session Record Modules
210829: libsrc/standard/module/rt.tpl: Add Compensator Type to RT Plan object (CP 135)
210829: libsrc/standard/module/rt.tpl: Add Effective Wedge Angle (CP 1399)
210829: libsrc/standard/module/rt.tpl: Referenced Dose Reference UID is missing from Referenced Brachy Application Setup Sequence (CP 2007)
210829: libsrc/standard/module/rt.tpl: Treatment Time in RT Plan (Add BeamDeliveryDurationLimit) (CP 1331)
210829: libsrc/standard/module/rt.tpl: Treatment Time in RT Plan (Add BeamDeliveryDurationLimit) (CP 1331)
210829: libsrc/standard/module/rt.tpl: Dose Reference Beam Dose Verification (CP 1658) and Fix Omitted Attribute in Verification Control Points (CP 1762)
210829: libsrc/standard/module/rt.tpl: Retire Beam Dose Specification Point (CP 1879)
210829: libsrc/standard/strval/rt.tpl: Dose Measurement Type in RTSTRUCT (Add DOSE_MEASUREMENT to RT ROI Interpreted Type) (CP 1660)
210829: libsrc/standard/strval/rt.tpl: Add OAR to RT ROI Interpreted Type (CP 2150)
210829: libsrc/standard/module/rt.tpl: Add Category Code Sequence to RT Structure Set (CP 1314)
210829: libsrc/standard/module/rt.tpl: Add Anatomic Region Sequence to RT Structure Set (CP 1864)
210829: libsrc/standard/iod/rt.tpl: Add FoR Module to RTSS IOD (CP 1398)
210829: libsrc/standard/module/rt.tpl: Deprecation of multiple FORs in Structure Set (Remove FrameOfReferenceRelationshipSequence from Structure Set Module) (CP 1249)
210829: libsrc/standard/module/rt.tpl: Additional Derivation Codes For Dose Composition (CP 1291)
210829: libsrc/standard/condn.tpl,module,strval/rt.tpl: Add Indication For Dose Of Delivery (Add DoseSummationType of RECORD and ReferencedTreatmentRecordSequence) (CP 1329)
210829: libsrc/standard/condn.tpl,module,strval/rt.tpl: RT Applicator Enhancements (CP 1010)
210829: libsrc/standard/module/rt.tpl: RT Image Attribute Completion (add AccessoryCode to ApplicatorSequence) (CP 1330)
210829: libsrc/standard/module/rt.tpl: Add Integrated RT Image Parameters (CP 1034)
210829: libsrc/standard/module/rt.tpl: Add XRayImageReceptorTranslation (CP 171)
210829: libsrc/standard/module/base.tpl: Add Document Class Code Sequence (to SC Image Module; already in Encapsulated Document Module per CP 1811) (CP 1078)
210829: libsrc/standard/iodcomp/base.tpl,module/base.tpl,strval/us.tpl: Active image region overlay (CP 1975)
210829: libsrc/standard/module/base.tpl,pet.tpl,strval/base.tpl: Add ScanProgressionDirection (CP 1347)
210829: libsrc/standard/module,strval/base.tpl: Add RTC functional group macros and modules (Sup 202)
210829: libsrc/standard/module/ct.tpl: Correct Type of Unassigned Shared and PerFrame ConvertedAttributesMacro to match Type 1C (with no condition, since real-world) not Type 2 in standard, unchanged since Sup 157
210829: libsrc/standard/condn.tpl: Correct condition on Slice Thickness in Pixel Measures Macro to match standard, unchanged since Sup 49
210829: libsrc/standard/module/base.tpl: Add Contrast Relaxivity (MR) information to Enhanced Contrast/Bolus module (CP 1325)
210829: libsrc/standard/module/base.tpl: Factor out Image Pixel Description Macro Attributes (to support documentation of STOW-RS media types) - affects messages (which Macro) but not semantics (CP 1582)
210829: libsrc/standard/condn.tpl,module/base.tpl: Add ExtendedOffsetTable (CP 1818)
210829: libsrc/standard/condn.tpl,module/base.tpl: Factor out Spacing Between Slices into Image Plane Module, and check for negative when not permitted by NM (CP 2061)
210829: libsrc/standard/condn.tpl,module/base.tpl: Do not revert to invocation of General Anatomy Optional macro in General Image Module (CP 1744) after cancellation of change to reconcile with Type 2 in DX Image (cancelled CP 1885), but do verify that if AnatomicRegionSequence is not overridden with Type 2 (i.e., not DX), an item should be present (may produce redundant messages with more specific modules that invoke Type 3 or Type 1 usage)
210829: libsrc/standard/module/base.tpl,xarf.tpl: Move Protocol Reference to Image Level for CT and XA/XRF (CP 2093)(Sup 212)
210829: libsrc/standard/strval/waveform.tpl: Add term for IEEE 1588 Precision Time Protocol (CP 1082)
210829: libsrc/standard/module/base.tpl: Add Reason for Visit (CP 1837)
210829: libsrc/standard/condn.tpl,module,strval/base.tpl: Add various macros to support RT C-Arm (Sup 175)
210828: libsrc/standard/condn.tpl,module/base.tpl: Add Conceptual Volume and related macros (Sup 147)
210828: libsrc/standard/base.tpl: Add Assertion Macro (Sup 192)
210828: libsrc/standard/condn.tpl,module,strval/base.tpl: Add Reference Location and Protocol Element Identification Macros (Sup 121)
210828: libsrc/include/dctool/attrseq.h,generic/listsimp.h,src/dctool/condn.cc,standard/condn.tpl,module,strval/base.tpl,support/condn.awk: Add Attribute Value and Constraint Macros (Sup 185)
210828: libsrc/standard/cond.tpl,module/base.tpl,rt.tpl,strval/rt.tpl: Add Device Motion Control Macro (CP 1430)
210828: libsrc/standard/module/base.tpl: Add Numeric Value Macro (Sup 152)
210828: libsrc/standard/module/base.tpl,vl.tpl: Replace DataSetIdentificationMacro with ExternallySourcedDataSetIdentificationMacro (CP 1817)
210828: libsrc/standard/module/base.tpl: Add PerformedProcedureStepEndDate and Time missing from PerformedProcedureStepSummaryMacro
210828: libsrc/standard/module/base.tpl: Add Enhanced and Extended Content Identification Macros (Sup 147)
210828: libsrc/standard/module/base.tpl: Allow multiple finding sites for segmentations (CP 1591)
210828: libsrc/standard/condn.tpl,module/base.tpl: Add Storage Macro (CP 1441)
210828: libsrc/standard/condn.tpl,module/acqctx.tpl,base.tpl,strval/base.tpl: Use Content Item with Modifier Macro in Acquisition Context (CP 2045)
210828: libsrc/standard/module/base.tpl: Add Telecom Addresses (CP 1321)
210828: appsrc/dcfile/dciodvfy.cc,libsrc/src/dctool/attrmxrd.cc,attrseq.cc,attrtypv.cc,attrvrfy.cc,locale/mesgtext.tpl,support/module.awk: Consistently use different delimiter ('=') to show value than separate message parts ('-') in new messages, show value number in path for all new messages (incl. ad hoc (template) and VR-related messages), and show the correct value number (from 1, not 0) in old and new VR-related messages (000564)(000565)(000566)
210828: libsrc/standard/module/acqctx.tpl,base.tpl,sr.tpl: change dciodvfy messages to say shall not rather than may not (old and new formats) (000563)
210828: libsrc/src/dctool/attrmxrd.cc: report explicit VR when unrecognized data element (not in dictionary), be consistent about delimiters around VR when shown (000561)(000562)
210802: libsrc/include/dctool/attr.h,attrlist.h,attrmxls.h,attrseq.h,attrtype.h,iodcomp.h,module.h,generic/strtype.h,txstream.h,locale/mesgtext.h,src/dctool/attr.cc,attrlist.cc,attrmxls.cc,libsrc/src/dctool/attrmxrd.cc,attrseq.cc,attrtypv.cc,attrvrfy.cc,modulev.cc,generic/txstream.cc,mesgtext.cc,support/iodcomp.awk,module.awk,appsrc/dcfile/dciodvfy.cc,*.cc: Add new format option for dciodvfy messages that includes full path to offending attribute, and uses standardized order of type of error or warning, path to attribute, message, value (if any) and additional information, which requires tracking of parent sequence attribute and enclosing attribute list to build full path, and passage of newformat option through many reading and parsing functions (000559) (000560)
210801: libsrc/standard/module,src/locale/mesgtext.tpl: Improve consistency of capitalization and use of keywords (no spaces) rather than descriptions in messages (000558)
210711: libsrc/standard/elmdict/dicom3.tpl: Add microscopy bulk annotation data elements (Sup 222)
210711: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Allow a Brachy Applicator to reference an ROI (CP 2079)
210621: libsrc/standard/elmdict/diconde.tpl: Add DICONDE Linearity and Beam Hardening Correction Technique data elements, correct DICONDE Image Quality related data element VM to 1-n
210527: appsrc/misc/jpegdump.cc: Improve description of extension markers and debugging of bad JPEG-LS bitstreams
210415: libsrc/standard/module/base.tpl: Add SpatialLocationsPreserved and PatientOrientation missing from SourceImageSequence in DerivationImageMacro (Sup 165)
210325: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl,ct.tpl: Retire Estimated Dose Saving (CP 1227)
210306: libsrc/standard/condn.tpl,iodcomp,module,strval/vl.tpl: Add Dermoscopic Photography Image (Sup 221)
210306: libsrc/standard/binval.tpl,iodcomp,module,strval/vl.tpl: Add Visible Light Photography Attributes corresponding to EXIF 2.31 and TIFF/EP (CP 1736)
210206: libsrc/standard/condn.tpl: Include SCT codes when determining Laterality Required, using 2021a as refernce, including some updated codes (000555)
210121: libsrc/standard/elmdict/dicom3.tpl: Add new data elements for XA Protocol (Sup 212)
210119: libsrc/standard/elmdict/dicom3.tpl: Add new data elements (CPACK 109)
210104: libsrc/standard/elmdict/other.tpl: Update PixelMed private WSI bulk annotation data elements with Annotation Group UID (sup222_08_WSIAnnotations)
210102: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Source Pixel Plane Characteristics for Contours (CP 2006); Extend RT Structure Set ROI Color (CP 1395)
201208: appsrc/dcfile/dciodvfy.cc: Check sanity of tile dimensions and number of frames in whole slide images (000553)
201208: libsrc/standard/elmdict/other.tpl: Add more observed 3DHISTECH private data elements
201208: libsrc/standard/condn.tpl: Do not report zero length ViewModifierCodeSequence error for non Mammo DX when ViewModifierCodeSequence not present (regression caused by 000549) (000552)
201208: libsrc/standard/condn.tpl: Do not complain about presence of ReferencedSeriesSequence or StudiesContainingOtherReferencedInstancesSequence (Common Instance Reference Module) if SegmentSurfaceSourceInstanceSequence is present (000551)
201208: libsrc/src/dctool/condn.cc,standard/condn.tpl,support/condn.awk: Do not complain about absence of ReferencedSeriesSequence and StudiesContainingOtherReferencedInstancesSequence (Common Instance Reference Module) when valid empty (no item) ReferencedImageSequence (000550)
201205: libsrc/standard/condn.tpl,module/dx.tpl: Do not report error on zero length ViewModifierCodeSequence if Mammo, since Type 2 specializes DX Positioning Module Type 3 (regression caused by change on 2013/06/26) (000549)
201117: libsrc/standard/elmdict/dicom3.tpl: Add OV, SV and UV Selector Attributes (CP 2042)
201117: libsrc/standard/elmdict/dicom3.tpl: SR Table data elements (CP 2041)
201115: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Dermoscopy data elements (Sup 221)
200920: libsrc/standard/module/base.tpl: Make Frame Anatomy in Parametric Map Optional (CP 2004)
200919: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module/base.tpl,us.tpl: Add ultrasound Probe ID in Transducer Identification Sequence (CP 1951); depended on adding Device Identification Sequence Macro (from Sup 147)
200915: libsrc/standard/elmdict/other.tpl: Update PixelMed private WSI bulk annotation data elements (supnnn_05_WSIAnnotations)
200829: libsrc/standard/condn.tpl,iodcomp,module/base.tpl: Check CommonInstanceReference Module presence conditional on references being present (000547) and attributes only present when references are present (000548)
200822: libsrc/standard/elmdict/dicom3.tpl: Render MakeNote as string even though OB
200806: standard/condn.tpl,module/base.tpl,mr.tpl,vl.tpl: Do not complain about YBR_RCT for .90 Transfer Syntax (000546)
200726: libsrc/standard/strval/vl.tpl: Correct NUMERIC value type in Acquisition Context (000545)
200724: libsrc/standard/module/mr.tpl: Fix incorrect condition for Real World Value Mapping Macro in Shared Functional Group Sequence for Legacy Converted MR (000544)
200719: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,diconde.tpl: Correct VRs, VMs and keywords to match 2020c (Peros)
200716: libsrc/standard/elmdict/siemens.tpl: Correct duplicate and incorrect private data elements (Vrinda, Conformance Statement)
200716: libsrc/standard/elmdict/gems.tpl: Correct duplicate and incorrect private data elements (Vrinda, Conformance Statement)
200716: libsrc/standard/elmdict/agfa.tpl: Correct duplicate and incorrect private data elements (Vrinda, Conformance Statement)
200716: libsrc/standard/condn.tpl: Correct KVP CT Image Module condition when multi-energy (000543)
200716: libsrc/standard/module/ct.tpl: Use ReferencedXRaySourceIndex not ReferencedPathIndex for multi-energy CT Exposure Sequence (000542)
200716: libsrc/standard/elmdict/dicom3.tpl: Add data elements and SOP Class UIDs for latest release (includng catching up on 2nd Gen RT UIDs) (2020c)
200622: libsrc/include,src/dctool/attrtypo.h,.cc: Allow insertion of strings in OB using addValues(), e.g., for dccp (000541)
200620: libsrc/src/dctool/dcopto.cc: Allow insertion of empty sequence during dccp (000540)
200610: libsrc/standard/elmdict/philips.tpl,siemens.tpl: Update observed private data elements, including OB rendered as string for some
200610: libsrc/include/dctool/ie.h,src/dctool/ie.cc,support/module.awk: Fix dcentvfy SeriesInstanceUID broken by addition of ReferencedInstancesAndAccessMacro for Patient Photo by overwriting IE for attribute set during module parsing when depth in the hierarchy is lower (000539)
200608: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module,strval/base.tpl: Update Encapsulated Document Module (CP 1811 and Sup 208, including new data elements)
200605: libsrc/standard/elmdict/other.tpl: Add Merge Unity PACS (DR Systems) data elements as described in DCS v11.2 and encountered
200605: libsrc/standard/elmdict/other.tpl: Add Philips/Stentor iSite data elements as encountered
200604: libsrc/standard/elmdict/other.tpl: Add Samsung CR private data elements as encountered, as UT
200604: libsrc/standard/elmdict/gems.tpl: More private GEMS_PARM_01 group 0043 GE MR data elements from DV26, PX26.0, SV25.1, PX26.1 DCS
200526: libsrc/standard/elmdict/elscint.tpl: Correct VR of (5001,0070) from SQ to US and other related elements based on observed GSPS - may be conflict with ELSCINT1 creator [fragile]
200520: libsrc/standard/elmdict/toshiba.tpl: Add more private data elements from CT Conformance Statements
200519: libsrc/standard/module/base.tpl: Add Series Date and Time to Encapsulated Document Series Module (CP 1932)
200512: libsrc/standard/module/base.tpl: Frame of Reference UID and Referenced Image Sequence may be present without condition satisfied in Spatial Fiducials (000538)
200512: libsrc/standard/condn.tpl,module/rt.tpl: PixelIntensityRelationship should be optional PixelIntensityRelationshipSign conditional in RT Image (000537)
200430: libsrc/src/standard/module/base.tpl,strval/base.tpl,xaxrf.tpl: Remove 99SDM for NM/PET including where code meaning is optional (CP 1850)
200418: libsrc/standard/condn.tpl,module/base.tpl,mr.tpl,vl.tpl,strval/base.tpl,xaxrf.tpl: Apply only PS3.5 constraints in ImagePixelMacro and move other CP 1653 related conditions to modality-specific modules; prevents dciodvfy incorrectly reporting RGB not allowed for J2K Secondary Capture (000536)
200417: libsrc/standard/elmdict/other.tpl: add observed Eigen private data elements
200414: libsrc/include/dctool/attrtype.h,attrtyps.h,src/dctool/attrtyps.cc: Do not treat backslash as value delimiter in ST attributes (000535)
200222: libsrc/standard/module/base.tpl: Add device identification attributes from Unique device identification consistency and de-identification (CP 1856) and Second Generation Radiotherapy C-Arm RT Treatment Modalities (Sup 175)
200222: libsrc/standard/module/base.tpl: Add attributes related to Patient Study and General Series Module from CT Protocol Storage (Sup 121)
200222: libsrc/standard/condn.tpl,module,strval/base.tpl: Add Referenced Instances and Access Macro Attributes (Sup 96) and Add Patient Photo to Patient Identification Modules (CP 1343)
200222: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module,strval/base.tpl: Alternative Calender and Archeological Patient (CP 1492)
200217: libsrc/standard/condn.tpl,strval/vl.tpl: add WSI OVERVIEW ImageType Value 3 (CP 1829), and require it to be single frame (cp_dac541_WSIOverviewSingleFrame)
200214: libsrc/standard/elmdict/other.tpl: add Eigen Artemis prostate biopsy system private data elements
200205: libsrc/src/dctool/attrmxls.cc: Do not warn about unused attributes in UnassignedSharedConvertedAttributesSequence or UnassignedPerFrameConvertedAttributesSequence (000534)
200124: libsrc/standard/elmdict/gems.tpl: add GE private data elements with encountered VR
200124: libsrc/standard/elmdict/elscint.tpl,philips.tpl: add Philips private GSPS-related data elements with encountered VR
200124: libsrc/standard/elmdict/gems.tpl: add GE private GSPS-related data elements with encountered VR
200124: libsrc/standard/elmdict/other.tpl: add/update IMS private data elements with encountered VR
200122: libsrc/standard/elmdict/other.tpl: add UIH private data elements with encountered VR
191225: libsrc/src/dctool/attrmxls.cc: Do not warn about unused attributes in ModifiedAttributesSequence (000533)
191210: libsrc/standard/condn.tpl,iodcomp,module,strval/base.tpl,ct.tpl: Add Multi-energy CT Images (Sup 188)
191110: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Add Laterality to Treatment Site Code (CP 1906)
191109: libsrc/standard/elmdict/dicom3.tpl,module/file.tpl: Add presentation address to file meta information for DULP and Web Services (CP 1895)
191108: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Clarification of Distances in Ion Beams (CP 1721)
191002: libsrc/standard/elmdict/dicom3.tpl: Add data elements (2019d including Sup 202)
190815: libsrc/standard/strval/file.tpl: Add missing RADIOTHERAPY directory record type that is required by other directory record related additions from Sup 147
190814: libsrc/standard/elmdict/dicom3.tpl: Correct element tag for Referenced RT Prescription Sequence (Sup 175 FT3)
190810: libsrc/standard/elmdict/dicom3.tpl: Correct element descriptions with "Date Time" to "DateTime" (2019d)
190715: libsrc/module/base.tpl: Add data elements for Second Generation Radiotherapy C-Arm RT Treatment Modalities (Sup 175)
190621: libsrc/standard/module/mr.tpl: Frame of Reference Module should be U not M in Raw data IOD (000530)
190616: libsrc/standard/condn.tpl: Add SRT to deprecated coding schemes (CP 1850)
190611: libsrc/standard/module/base.tpl: Restore VR of Referenced Frame Numbers inadvertently removed in initial CP 1842 application (CP 1842)
190509: libsrc/standard/module/base.tpl: Add length of encapsulated document when not even (CP 1851)
190430: libsrc/standard/elmdict/philips.tpl: Add/correct private data elements for Philips MR (encountered and DCS MR Release 5.6.0 Systems)
190412: libsrc/standard/condn.tpl: Detect valid MBPO OpticalPathIdentificationSequence in SharedFunctionalGroupSequence; since CP 1713 (000528)
190412: libsrc/standard/condn.tpl,module/base.tpl,vl.tpl: Remove Dimension Index Sequence requirement for WSI when Dimensions implicitly defined by TILED_FULL (CP 1822)
190405: libsrc/module/base.tpl: Correct Content Item Value type from defined terms to enumerated values (000527)
190327: libsrc/standard/elmdict/dicom3.tpl: Add data element for length of encapsulated document when not even (CP 1851)
190323: libsrc/standard/condn.tpl,module,strval/base.tpl: Allow compressed RGB for WSI (CP 1841)
190323: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module/acqctx.tpl: Referenced Frame Numbers used in Acquisition Context is limited by 16 bit VR (CP 1842)
190323: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module/base.tpl: Extend Original Attributes Sequence (CP 1766); depended on adding Selector Attribute Macro (Sup 74); also added Extended Selector Attribute Macro (Sup 185)
190317: libsrc/standard/elmdict/other.tpl,siemens.tpl: Add more encountered VRs for private data elements for Siemens and Intelerad
190211: ibsrc/standard/condn.tpl,module/base.tpl,rt.tpl,vl.tpl,xaxrf.tpl: Report errors when Pixel Spacing values are zero (000115), (000159), (000524)
190211: libsrc/module/vl.tpl: Make AcquisitionDuration optional for WSI (CP 1821)
190127: libsrc/support/elmietoxml.awk,libsrc/standard/Imakefile: Add utility to make XML of dictionary IEs and switch to using that and elmdict.xml for install.java
190127: libsrc/standard/condn.tpl,module/base.tpl,vl.tpl: Update VL Image Module with Image Laterality et al (CP 652, CP 1736, CP 1744) and General Image Module with Image Laterality and General Anatomy (CP 1744) but coping with Type 2 v. 3 conflict (cp_dac490)
190125: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Reason for Visit (CP 1837)
190124: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Extended Offset Table (CP 1818)
190124: libsrc/standard/elmdict/dicom3.tpl: Add data elements for corneal measurement values sequence (CP 1814)
190123: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Toric Intraocular Lenses (CP 1813)
190123: libsrc/standard/elmdict/dicom3.tpl: Add data elements for calculation comments for intraocular lens calculations (CP 1812)
190121: libsrc/standard/module/base.tpl: Add TypeOfPatientID to top level in Patient Module and BarcodeValue to SOP Common Module (CP 1828)
190118: libsrc/standard/elmdict/dicom3.tpl: Add EXIF mapped data elements (CP 1736)
190105: libsrc/standard/condn.tpl: do not require laterality if measurement laterality is present (CP 1385)
190102: libsrc/standard/elmdict/dicom3.tpl: Update name of Software Versions (0018,1020) (2019a)
181222: libsrc/standard/elmdict/dicom3.tpl: Correct keyword for Manufacturer's Model Version (3010,001A)
181220: libsrc/standard/elmdict/dicom3.tpl: Correct keyword for Effective Dose Calculation Method Description (3010,0005)
181129: libsrc/standard/elmdict/other.tpl: Add private DicomUtils data elements to dictionary
181129: libsrc/standard/elmdict/other.tpl: Add private pyramid data element to dictionary
181122: libsrc/standard/elmdict/dicom3.tpl: Add data elements for sup 147 FT2
181118: libsrc/standard/elmdict/dicom3.tpl: Add data elements for sup 147
181111: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl,rt.tpl,sr.tpl: Add Institutional Department Type Code Sequence (CP 1809)
181111: libsrc/standard/elmdict/dicom3.tpl,module/vl.tpl: Add Source of Data details for Corneal Size measurement values used in Intraocular Lens Calculations IOD (IOL) (CP 1803)
181110: libsrc/standard/elmdict/dicom3.tpl: Add Multi-energy CT data elements to dictionary (Sup 188)
181103: libsrc/standard/condn.tpl: Correct condition on TestPointNormalsDataFlag
181102: libsrc/standard/condn.tpl,module,strval/base.tpl: Add attributes describing safe or unsafe private elements (CP 1411)
181102: libsrc/standard/condn.tpl,iodcomp,module,strval/vl.tpl,module/base.tpl: Add validation of Ophthalmic Visual Field (OPV) Static Perimetry Measurements (Sup 146)
181018: libsrc/standard/module/vl.tpl: Correct name of WholeSlideMicroscopyImageFrameTypeMacro (000523)
180917: libsrc/standard/condn.tpl,module/base.tpl,rt.tpl: Constituent Mapping Macro (CP 1617)
180917: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Add Algorithm Identification Macro to RT Structure Set (CP 1784)
180917: libsrc/standard/elmdict/dicom3.tpl,module,strval/base.tpl: Add flag to segmentation object indicating segments are nonoverlapping (CP 1780)
180807: appsrc/acrnema/andump.cc: Add skipiftoolong flag for ancreate mode, rather than abort, and include value with ellipsis (000521)
180707: libsrc/standard/elmdict/gems.tpl: Correct missing opening parenthesis in GE private data element (3101,0010)
180627: libsrc/src/dctool/attrmxrd.cc: Report pixel data compressed fragment items have odd length during read (000514)
180626: libsrc/standard/elmdict/dicom3.tpl: Add Beam Dose Point Source to External Contour Distance data element (CP 1762)
180626: libsrc/standard/module,strval/base.tpl,elmdict/dicom3.tpl: Add flag to distinguish studies imported from outside (CP 1760)
180626: libsrc/standard/module/vl.tpl: RWVM functional group Real World Value Map only permitted for monochrome Whole Slide Images (CP 1759)
180626: libsrc/standard/iod/mr.tpl: Move Specimen Module to Image level in Tractography Results (CP 1753)
180626: libsrc/standard/strval/base.tpl: Update General Series modality values with OPTBSV and OPTENF (CP 1750)
180626: libsrc/standard/condn.tpl: Do not require Patient Orientation for Whole Slide Images (CP 1757)
180622: appsrc/dcfile/dciodvfy.cc,libsrc/src/locale/mesgtext.tpl: Report reference segment numbers that have no segment sequence item (000520)
180622: appsrc/dcfile/dciodvfy.cc,libsrc/src/locale/mesgtext.tpl: Check that SegmentNumber values start at 1 and increase by 1 (000439)
180603: libsrc/standard/elmdict/other.tpl: Add observed 3DHISTECH private data elements in REGIONLOCALIZER image type
180603: libsrc/standard/module/vl.tpl: Defined terms rather than enumerated values for WSI ImageType values 3 and 4 (000519)
180415: libsrc/standard/module/base.tpl: Add Consulting Physician (CP 1322)
180414: libsrc/standard/condn.tpl,module/base.tpl: Report if InConcatenationTotalNumber is less than or equal to one (000517), and use presence of any concatenation attribute as need for UID (000518)
180413: libsrc/standard/condn.tpl: Change condition in General Series for Laterality to not flag its absence when unpaired body part is implicit because it is a waveform SOP Class or Modality, i.e., cardiac, respiratory, voice audio (000308)
180413: libsrc/standard/strval/base.tpl: Update coding scheme list to include all in current standard including caDSR, DC, MDC, MSH, NBD, NBG, NEU, NICIP, PUBCHEM_CID (DICOM 2018b, includes CPs 1079, 1167, 1259, 1408, 1622)
180403: libsrc/standard/condn.tpl,sopcl.tpl,elmdict/dicom3.tpl,iodcomp,module,strval/base.tpl: Add DICOM Encapsulation of STL Models for 3D Manufacturing (Sup 205)
180401: libsrc/standard/module/base.tpl: Add Scheduled Procedure Step Expiration DateTime data element (CP 1224)
180328: libsrc/standard/module/base.tpl,vl.tpl: WSI is missing Frame Type (CP 1740)
180328: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module/base.tpl,vl.tpl,strval/base.tpl: More compact use of Per-Frame Functional Group Macros in Non-Sparse VL Whole Slide Microscopy Image IOD (CP 1713)
180313: libsrc/standard/elmdict/elscint.tpl: Update Philips CT data element descriptions from Revolution CT DCS 2015
180313: libsrc/standard/elmdict/gems.tpl: Update GE CT data element descriptions from Revolution CT DCS 2015
180222: libsrc/standard/elmdict/other.tpl: Update Intelerad private data elements
180204: libsrc/standard/elmdict/other.tpl: Add observed explicit VR for CureMetrix private data elements
180123: libsrc/standard/module/base.tpl: Data elements for Constituent Mapping Macro (CP 1617)
171230: libsrc/support/DicomDictionary_header.txt,elmtojava_TagFromName.awk: Update copyright in emitted Java dictionary and remove old toolkit keywords prior to CP 850 establishment of official keywords
171228: appsrc/dcfile/dciodvfy.cc,libsrc/src/locale/mesgtext.tpl: Warn if example ISO root used in UID since not valid in production objects (000516)
171221: libsrc/standard/elmdict/other.tpl: Add CTP StudyYear private data element used by NCI script
171209: libsrc/standard/elmdict/other.tpl: Add observed explicit VR of more Brainlab private data elements
171209: libsrc/standard/module/mr.tpl: Correct number of sequence items in ReferencedInstanceSequence in Tractography Module (000515)
171120: libsrc/standard/condn.tpl,module/ct.tpl,mr.tpl,pet.tpl,us.tpl: Add usage of Temporal Position Macro as needed for Enhanced MR, Enhanced CT, Enhanced PET and related Legacy objects (CP 1189)
171115: libsrc/include/dctool/ie.h,src/dctool/ie.cc,standard/condn.tpl,elmdict/dicom3.tpl,iodcomp,module/mr.tpl: Add Tractography Results Storage SOP Class (Sup 181) as well as missing IE descriptions
170919: libsrc/standard/module/base.tpl: Clarify condition for Repetition Time (0018,0080) (CP 1696)
170818: libsrc/standard/elmdict/dicom3.tpl: Flag data elements as retired for Retirement of Radiation Dose Module from Modality Performed Procedure Step (Sup 201)
170918: libsrc/standard/condn.tpl,,module,strval/base.tpl: Add study longitudinal temporal offset from event for clinical trials (CP 1693)
170917: libsrc/standard/module/base.tpl: Add Identical Documents Sequence to the Encapsulated Document Module (CP 1629)
170914: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Add study longitudinal temporal offset from event for clinical trials (CP 1693)
170914: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Query Key for Anatomic Regions in Study (CP 1690)
170914: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Add compression pressure to mammography, breast tomosynthesis and projection objects (CP 1679)
170914: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Progress Parameters in UPS Progress Module (CP 1664)
170914: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Dose Reference Beam Dose Verification (CP 1658)
170914: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Consolidate Brachytherapy Applicator Geometry Definitions (CP 1657)
170912: libsrc/src/dctool/attrtypv.cc: Detect illegal ACR-NEMA chars in DA and TM VR, forbidden since CP 714 (000513)
170811: libsrc/src/dctool/condn.cc,standard/condn.tpl,support/condn.awk,module.awk: Only check first item of PerFrameFunctionalGroups when evaluating conditions for mutually exclusive presence of functional groups to improve glacial performance if many frames (000509)
170811: libsrc/standard/strval/base.tpl: Use empty value flag in list for PatientSex since Type 2 but may be padded with spaces (000510)
170805: libsrc/standard/condn.tpl,iod/vl.tpl: Handle MPBO for Slide Label Module in WSI (000508)
170717: libsrc/standard/elmdict/other.tpl: Add observed group 0x0023 Emageon private data elements nested without creator inside group 0x0009 sequence and recognizes "inherited" creator even though different group and block
170709: libsrc/standard/condn.tpl,module/vl.tpl: Check IlluminationWaveLength value is valid (greater than zero) (000507)
170626: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Protocol Approval (Sup 192)
170621: libsrc/standard/elmdict/dicom3.tpl,module,strval/base.tpl: Enhance Coding Schemes Table (CP 1603)
170612: libsrc/standard/condn.tpl,module/base.tpl: Warn when rescale attributes unexpected in legacy MR images, error when window width is less than 1 without exact or sigmoid function, or zero when sigmoid function (000506)
170612: libsrc/standard/elmdict/gems.tpl: Add VR for private data element observed in GE MR diffusion images
170607: libsrc/standard/elmdict/dicom3.tpl: Mark Input Availability Flag (0040,4020) as retired, since no longer used in any IOD or service (PS3.6 editorial change)
170508: libsrc/standard/module/base.tpl,mr.tpl: Add Document Laterality to Encapsulated Document and Raw Data Module (CP 1039)
170421: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Add Volume Rendering Volumetric Presentation States data elements and SOP Classes (Sup 190 FT)
170418: libsrc/standard/module/acqctx.tpl,base.tpl: Add Observation DateTime to Acquisition Context (CP 1666)
170418: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Add Dose Reference UID To Fraction Scheme (CP 1659)
170418: libsrc/standard/module/rt.tpl: Add Content Date and Time to RT Dose Module (CP 1656)
170418: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl: Retire Other Patient IDs and Medical Record Locator per Clarify use of Other Patient IDs Sequence with Issuer and related Attributes as Query keys (CP 1649)
170418: libsrc/standard/condn.tpl,module/ct.tpl,mr.tpl,pet.tpl: Correct requirement for conversion source in legacy converted images and tractography results (CP 1648)
170418: libsrc/standard/condn.tpl,module/base.tpl: Add Unassigned Shared and Per-Frame Converted Attributes functional groups to Parametric Map (CP 1645)
170418: libsrc/standard/elmdict/module/vl.tpl: Change type of Signal Noise Ratio for Ophthalmic Axial Measurements Related Information Macro (CP 1643)
170418: libsrc/standard/elmdict/module/vl.tpl: Change multiplicity for Ophthalmic Axial Length Measurements Segmental Length Sequence (CP 1642)
170417: libsrc/standard/elmdict/module/softcopy.tpl: Add Tracking ID to Presentation State (CP 1627)
170417: libsrc/standard/elmdict/module/base.tpl: Fix Type of Dimension Organization UID (within the Dimension Index Sequence) (CP 1604)
170416: libsrc/standard/elmdict/dicom3.tpl,module,strval/dx.tpl: Add Entrance Dose Derivation data element and to modules (CP 1513)
170405: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Add Advanced Blending Presentation State Storage data elements and SOP Classes (Sup 189 FT)
170405: libsrc/standard/sopcl.tpl: Add Patient Radiation Dose Structured Report SOP Classes (Sup 191 FT)
170404: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Add Ophthalmic Optical Coherence Tomography for Angiographic Imaging data elements and SOP Classes (Sup 197 FT)
170403: libsrc/standard/elmdict/gems.tpl: Add more observed GE cardiac CT private data elements
170329: libsrc/standard/elmdict/philips.tpl: Add more observed Philips US private data elements
170325: libsrc/standard/elmdict/other.tpl: Expand and describe UCSF BIRP MR breast private data elements using dictionary at 'https://wiki.cancerimagingarchive.net/display/Public/I+SPY-1+DCE+MRI+Data+Sharing+DICOM+Dictionary'
170226: libsrc/standard/elmdict/other.tpl: Add EOS private data elements from conformance statement
170223: libsrc/standard/elmdict/elscint.tpl,other.tpl: Add encountered ELSCINT and MEDCON private elements
170222: libsrc/standard/elmdict/other.tpl,strval/base.tpl: Add NUMA R-RDSR private data elements and private coding scheme
170207: libsrc/standard/condn.tpl,module/base.tpl,iod/base.tpl: Add Palette Color LUT to IOD to finish applying Palette Color in Parametric Map (CP 1584)
170130: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl: Add genetic modifications to patient (CP 1619)
170130: libsrc/standard/condn.tpl,module/base.tpl,ct.tpl: Should warn if optional phantom type is missing for CTDIvol (000505)
170130: libsrc/standard/condn.tpl,module/base.tpl,ct.tpl: Add water equivalent diameter to CT (CP 1525)
170130: libsrc/standard/module/base.tpl,ct.tpl: Add Dose Area Product to CT (CP 1455)
170127: libsrc/standard/module/base.tpl: Correct TR condition in legacy MR image to match current standard, i.e., if SK rather than if no SK (per discussion of cp_wc09); not yet mbpo until CP approved (000504)
170118: libsrc/standard/module/vl.tpl: Move Horizontal Field of View in Ophthalmic Acquisition Parameters Macro to Ophthalmic Photography Acquisition Parameters Module (NB. was incorrectly omitted from Ophthalmic Photography Acquisition Parameters Module in 2011 when factoring out per Sup 110 but will be put back in 2017a)
170109: libsrc/standard/elmdict/other.tpl: Update Sound Eklin TruDR private data elements ... conflict in different statements (TruDR vs. VetPACS) whether owner is "Sound Eklin" or "Sound Technologies", and whether VR for acquisition elements is LO or CS ... assume longer VR, and duplicate all for both owner strings
170109: libsrc/standard/elmdict/other.tpl: Add Sound Eklin TruDR private data elements from conformance statement and sample
161206: libsrc/src/standard/iodcomp,module/sr.tpl: Add IHEXDSIManifest profile option for dciodvy to check for additional retrieve location attributes required by IHE XDS-I Profile Manifest (000501)
161129: libsrc/standard/module,strval/base.plt: Do not report YBR_FULL as illegal for lossless JPEG (000500)
161123: libsrc/standard/elmdict/dicom3.tpl: Correct VR of View Orientation Modifier, Component Type Code Sequence to SQ and name of View Orientation Modifier Code Sequence (were wrong in Sup 131)
161121: libsrc/standard/elmdict/siemens.tpl: Update Siemens raw data ultrasound with observed VR
161106: libsrc/standard/strval/pet.tpl: Additional SUV LBM types (CP 1535) (CP 1612)
161106: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl: Clarify Segmentation Algorithm Parameters (CP 1597)
161106: libsrc/standard/module/base.tpl,module/mr.tpl: Add Content Labels for Raw Data (CP 1595)
161105: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module/base.tpl,strval/base.tpl: Allow Palette Color in Parametric Map (CP 1584)
161105: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Add Selected Value To RT Treatment Overrides (CP 1611)
161105: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: RT Ion Beams Scan Spot Time Indicator (CP 1609)
161103: libsrc/standard/condn.tpl,module/dx.tpl: Check for ImageType values from CP 1342 for DBT profile per Rad TF Vol 2 Table 4.8.4.1.2.7-1 (000499)
161017: appsrc/dcfile/dcbzip2.script,dcunbzip2.script: No longer remove BZ prefix from bzip2 compressed stream (000498)
161008: libsrc/standard/elmdict/gems.tpl: Add more GE private mammo data elements
160929: libsrc/standard/elmdict/dicom3.tpl: Update data dictionary for release of 2016d to include TargetPositionReferenceIndicator
160920: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl: Add Category And Type Codes to Fiducials and Surface Scan Mesh (CP 1585) - Point Cloud IOD not yet done
160919: libsrc/standard/condn.tpl,iodcomp/base.tpl,dx.tpl,pet.tpl,rt.tpl,us.tpl,vl.tpl,xaxrf.tpl,module/base.tpl: Factor our General Reference Module from General Image Module and add to selected RT-related IODs (CP 1559); Add Purpose of Reference for Source Instance Sequence (CP 1575)
160910: libsrc/standard/module/base.tpl: Include MR image and frame type value 4 defined terms for parameteric map, not just common defined terms (000497)
160908: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Add Segmented Property Type Modifier Code Sequence to RT ROI Observations Module (CP1586)
160908: libsrc/standard/condn.tpl,module/base.tpl: Correct conditions in Referenced and Derivation Image Macros when legacy converted (CP 1562)
160908: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl: Add UDI (CP 1418)
160905: libsrc/standard/elmdict/dicom3.tpl: Add CT Protocol Storage data elements (Sup 121)
160826: libsrc/standard/elmdict/gems.tpl: Add more GE private mammo data elements
160819: include/dctool/attr.h,attrseq.h,elmdict.h,src/dctool/attrseq.cc,attrvrfy.cc,elmdict.cc,elmentry.h,elmtype.h,modulev.cc: Do not assume largest VM or number of sequence items fits in 16 bit unsigned; fixes check on number of per-frame functional group sequence items when number of frames more than 65535 (000496)
160721: libsrc/standard/elmdict/other.tpl: Add UCSF BIRP MR breast private data elements
160721: libsrc/standard/condn.tpl: Add more SOP Classes in General Image Module for which absent Patient Orientation should not be reported, such as Parameteric Map (000495)
160610: libsrc/standard/strval/base.tpl: Update language code RFC (CP 1567)
160610: libsrc/standard/module,strval/base.tpl: Factor out Enhanced Code Sequence Macro and use in Equivalent Code Sequence and add Context Group and Mapping Resource Identification Sequences to SOP Common (CP 1539), and correct MappingResourceUID defined terms for DCMR
160610: libsrc/standard/module/base.tpl: Allow more than one item in SegmentedPropertyTypeModifierCodeSequence (000494)
160529: libsrc/standard/module/base.tpl,ct.tpl,dx.tpl,mr.tpl,pet.tpl,us.tpl,vl.tpl,xaxrf.tpl: Report error if Lossy Image Compression Ratio is zero (000493)
160525: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Equivalent Scope Code (CP 1539)
160525: libsrc/standard/elmdict/dicom3.tpl: Add data elements for RT Ion Beams Scan Spot Ordering (CP 1013)
160515: appsrc/dcfile/dcunjpeg.script,dcunjls.script: Improve handling when elements past pixel data, remove icon image sequence (000491) (000492)"
160515: libsrc/standard/elmdict/gems.tpl: Add observed private GE CT data element VRs
160515: libsrc/standard/elmdict/toshiba.tpl: Add observed private Toshiba MR data element VRs
160515: libsrc/standard/elmdict/other.tpl: Add observed private Esaote MR data element VRs
160515: libsrc/standard/elmdict/elscint.tpl: Add observed private data element VRs
160515: libsrc/include/dctool/attrmxls.h,src/dctool/attrmxls.cc,attrmxrd.cc,attrmxvr.cc,locale/mesgtext.tpl: Use Pixel Representation from outer data set to set VR of nested XS (US/SS) data elements both when reading and preparing for writing, and do not give up if PixelRepresentation absent or incorrect (000490) (000491)
160506: libsrc/standard/elmdict/other.tpl: Add some VRs for more Brit Systems private elements encountered in instances
160413: libsrc/standard/elmdict/gems.tpl: Add observed GE IDI private data element VRs
160413: libsrc/standard/elmdict/gems.tpl: Add observed GE DBT private data element VR
160323: libsrc/standard/elmdict/toshiba.tpl: Add Toshiba CT private data element for Injector Elapsed Time
160323: libsrc/standard/elmdict/other.tpl: Add observed Nautilus Medical private data element VRs
160319: libsrc/standard/elmdict/dicom3.tpl: Content Assessment Results data elements (Sup 185)
160217: libsrc/standard/elmdict/dicom3.tpl: Correct inconsistent data element names found making draft 2016a
160210: libsrc/standard/elmdict/dicom3.tpl: Add data elements for settling phases information and Synch pulse for Functional MRI (CP 1476)
160202: libsrc/standard/libsrc/standard/module/base.tpl,xaxrf.tpl,strval/xaxrf.tpl: dciodvfy should allow TOMOSYNTHESIS for FrameType value 4 (000488)
160202: libsrc/standard/module/base.tpl: report when FrameAcquisitionDuration in FrameContentSequence has zero value (000487)
160202: libsrc/standard/elmdict/siemens.tpl: more encountered Siemens mammo tomo private data elements
160119: libsrc/standard/elmdict/dicom3.tpl,module/sr.tpl: Extend Identified Person or Device Macro (CP 1516)
160119: libsrc/standard/elmdict/dicom3.tpl,module/rt.tpl: Add Accessory Code To Trays (CP 1504)
160119: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl: Support of more than 16 bit in point index lists, then Fix CP 1365 setback with Long xxx Index List VR (CP 1365, CP 1499)
160119: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Ion Range and Modulation (CP 1460)
160119: libsrc/standard/condn.tpl,elmdict/dicom3.tpl,module/base.tpl: Add Tracking Identifier and UID to Segmentation Instances (CP 1495)
160118: libsrc/standard/condn.tpl,module/base.tpl: Detect missing date time attributes in Frame Content Sequence predicated on ORIGINAL frame type and not legacy converted SOP Class (000443)
160108: libsrc/standard/condn.tpl,module/ct.tpl: Remove ineffective conditions in CTAcquisitionDetailsMacro and CTTableDynamicsMacro since cannot check string values in sibling functional groups (000485)
160104: libsrc/standard/module/rt.tpl: Clarify RT Image Exposure Attributes in case of MPEG Encoding (CP 1488)
160104: libsrc/standard/module/mr.tpl: Allow multiple items in the MR Receive Coil Sequence (CP 1480)
160104: libsrc/standard/module/rt.tpl: Add Display Origin Coordinates To RT Plan (CP 1487)
160104: libsrc/standard/module/us.tpl: Clarify Enhanced US Volume Image and Frame Type Values 3 and 4 (CP 1463)
160104: libsrc/standard/module/base.tpl,mr.tpl: Add B1rms value to MR Enhanced and MR Objects (CP 1461)
160104: libsrc/standard/module/base.tpl,ct.tpl,mr.tpl,pet.tpl: Add Isocenter Position to MR/PET/Enhanced CT/MR/PET and RT Equipment Correlation to Enhanced CT (CP 1337)
160104: libsrc/standard/condn.tpl,module/base.tpl: Value representation of real world value first and last values mapped (CP 1458)
160104: libsrc/standard/module/rt.tpl: Add Operator Identification Sequence to RT modules (CP 1456)
151230: libsrc/standard/elmdict/other.tpl: Add private data elements for Mayo CT projection data (CT-PD)
151219: libsrc/standard/module/base.tpl,softcopy.tpl,us.tpl,vl.tpl,strval/softcopy.tpl: Add color space attribute (CP 1454)
151219: libsrc/condn.tpl,module/base.tpl: Prohibit circular Dimension Index references (CP 1446)
151219: libsrc/module/softcopy.tpl: Add hanging protocol identification to structured display module (CP 1444)
151219: libsrc/elmdict/dicom3.tpl: Unretire Destination AE (2100,0140) (CP 1441)
151219: libsrc/standard/condn.tpl,module,strval/rt.tpl: Add Support for Ion Therapy Scanning Modes (CP 1432)
151219: libsrc/standard/condn.tpl,module,strval/rt.tpl: Add Beam Effective Dose in RT Fraction Scheme Module (CP 1431)
151217: appsrc/dcfile/dctopgm8.cc: Report error rather than segmentation fault when input file does not contain PixelData (e.g., a presentation state) (000483)
151217: appsrc/dcfile/dckey.cc,dctable.cc: Exit cleanly rather than seg fault if no key supplied on command line (000482)
151212: libsrc/standard/condn.tpl,iodcomp/sr.tpl: Add Acquisition Context SR (Sup 187)
151207: libsrc/standard/condn.tpl,iodcomp/sr.tpl: Add Radiopharmaceutical RDSR (Sup 159)
151207: appsrc/dcfile/dcentvfy.cc,libsrc/src/locale/mesgtext.tpl: Check that UIDs are not reused in different parent entities (000481)
151206: libsrc/standard/condn.tpl,module/ct.tpl,mr.tpl,pet.tpl,xaxrf.tpl: Correct/implement condition on ReferencedImageEvidenceSequence and SourceImageEvidenceSequence to detect when required (000480)
151206: libsrc/standard/condn.tpl,module,strval/base.tpl: Small animal identification and change to homo sapiens code and conditions for human or animal using it (CPs 1457, 1470, 1472, 1473, 1478)
151206: libsrc/standard/elmdict/other.tpl: Add some Brainlab private data elements
151125: libsrc/standard/elmdict/philips.tpl: More Philips MR private data elements
151124: libsrc/standard/module,strval/base.tpl: Update SOP Common with legacy conversion attributes (Sup 157) and Content Qualification (CP 1356)
151124: libsrc/standard/condn.tpl,iodcomp/dx.tpl,module/dx.tpl,xaxrf.tpl,strval/dx.tpl: Add Breast Projection X-Ray IOD (Sup 165)
151120: libsrc/standard/condn.tpl,module/base.tpl,sr.tpl: Check for inappropriate ReferencedFrameNumber or ReferencedSegmentNumber using the ReferencedSOPClassUID (000479)
151120: libsrc/standard/sopcl.tpl: Add SOP Classes for Sup 173 Wide Field Ophthalmic Photography
151118: config/Configure: Add yet another place libX11 files hide on Linux (this time in /usr/lib/x86_64-linux-gnu for Ubuntu 14.04)
151116: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1432 final text
151116: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1487 final text
151116: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1431 final text
151116: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1364 final text
151115: appsrc/dcfile/dcmulti.cc: Do not partition dimension indices of lower rank at less then organization UID scope (i.e., number from one and increment by one for whole instance) (000475)
151115: appsrc/dcfile/dciodvfy.cc: Check that DimensionIndexValues match InStackPosition and TemporalPosition (000477)
151115: appsrc/acrnema/ancreate.cc: Correct writing of specified (usually undefined length) VL for SQ that was broken when refactoring to use vr.h (000478)
151115: libsrc/standard/condn.tpl,module/base.tpl: Check that TemporalPositionIndex is not zero (000476)
151115: libsrc/standard/elmdict/philips.tpl: More Philips MR private data elements
151111: libsrc/standard/sopcl.tpl: Add SOP Class for Sup 187 final text
151110: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1478 final text
151110: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1457 final text
151110: libsrc/standard/elmdict/dicom3.tpl: Add data elements assigned for Sup 184 final text
150926: libsrc/include/pixeldat/srcsink.h: Supply virtual destructor with default empty implementation to silence compiler warning
150926: appsrc/acrnema/ancp.cc: Check for bad zero bytes for explicit VR in same manner as andump.cc, attrmxrd.cc (000471)
150926: appsrc/acrnema/ancp.cc: Check for implicit VR attribute even though explicit transfer syntax in same manner as andump.cc, attrmxrd.cc (000470)
150926: libsrc/include/dctool/vr.h: Use strncmp rather than strcmp for VR comparisons throughout, because might have passed fixed length array of 2 characters that is not null terminated
150925: appsrc/acrnema/ancp.cc: Reset endianness after backing up to re-read tag when starting after metaheader (000469)
150925: appsrc/acrnema/ancp.cc,ancreate.cc,andump.cc,dcfile/dcfile.cc,libsrc/include/dctool/attr.h,attrmxls.h,vr.h,src/dctool/attrlsln.cc,attrmxrd.cc: Factor out all VR check methods into separate header file, check for known short rather than known long value length VRs to cope with future additions, automatically, and use it when computing offsets for DICOMDIR as well (was not handled in last update for OD and OL)
150925: appsrc/acrnema/ancp.cc,ancreate.cc,andump.cc,libsrc/include/dctool/attrmxls.h,attrtype.h,attrtypo.h,src/dctool/attr.cc,attrmxrd.cc,attrtypo.cc: Add support for reading, writing and copying OD and OL VRs
150918: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Add UIDs and data elements for Sup 181 (note that new OL VR is not yet supported by rest of code)
150916: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1458
150915: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Add UIDs and data elements for Sup 156
150910: libsrc/standard/elmdict/dicom3.tpl: Add data elements assigned for CPs 1441, 1454 and 1461
150904: libsrc/standard/elmdict/other.tpl: Add Mediso private elements from samples
150904: config/Configure: On Darwin since Mavericks and/or Yosemite and/or Xcode6, handle missing makedepend by checking XQuartz /opt/X11 location
150902: config/Configure: On Darwin since Mavericks and/or Yosemite, handle missing X11 library and include by looking for MacPorts versions (first)
150805: libsrc/standard/elmdict/other.tpl: Add MDDX PX private elements moved to 7fe1 group
150804: libsrc/src/dctool/attrmxrd.cc: Show actual tag in error message about PixelData VR since it may be private pixel data
150722: libsrc/standard/elmdict/diconde.tpl: Add more DICONDE data elements (E2339 update)
150717: libsrc/include/dctool/ie.h,standard/condn.tpl,iodcomp/sr.tpl,iodcomp,module,strval/vl.tpl: Add Ophthalmic Refractive Measurements IODs and Modules (Sup 130)
150717: libsrc/standard/strval/base.tpl: Synchronize Modality defined terms with 2015c release (was missing ophthalmic measurements from Sup 130, also PLAN, RESP, STAIN)
150713: libsrc/standard/elmdict/philips.tpl: Yet more Philips US private data elements from samples
150712: libsrc/standard/elmdict/philips.tpl: More Philips US private data elements from samples
150705: libsrc/standard/elmdict/other.tpl: Add PixelMed private data elements for group of patients identification
150705: libsrc/standard/elmdict/other.tpl: Update PixelMed private data elements for cell line
150704: libsrc/standard/module/ct.tpl: Do not report error when AcquisitionDateTime or AcquisitionDuration are present in EnhancedCTImage module since mbpo (000463)
150704: libsrc/standard/strval/base.tpl: Add 99IPCMR coding scheme to MiscellaneousCodingSchemeDesignators
150704: libsrc/standard/elmdict/other.tpl: Add PixelMed private data elements for cell line
150630: libsrc/standard/elmdict/gems.tpl: Update GE private data element that is (sometimes ?) noise index (varies between conformance statements)
150623: libsrc/standard/elmdict/gems.tpl: Update GE DBT private data elements
150615: libsrc/standard/elmdict/other.tpl: Add PixelMed private data elements for mouse strain (per CP 1457 draft)
150615: libsrc/standard/transyn.tpl,elmdict/dicom3.tpl,module/base.tpl: Add MPEG 4.2 Transfer Syntax UIDs and Stereo Pairs Present to IODs (Sup 180)
150615: libsrc/standard/sopcl.tpl: Add Extensible SR SOP Class (Sup 186)
150602: libsrc/standard/elmdict/dicom3.tpl: Add data elements from CP packet 81 (CPs 1321,1322,1402,1411,1438)
150531: appsrc/dcfile/dciodvfy.cc: Do not warn about UCUM used in non Units Code Sequence when found in Coding Scheme Identification Sequence (000462)
150531: libsrc/standard/strval/base.tpl: Add 99IPCMR coding scheme
150514: libsrc/standard/elmdict/siemens.tpl: Add some Philips US private element descriptions (not 100% sure of private creator match :() from iE33 1.1 DCS
150502: libsrc/standard/elmdict/siemens.tpl: Add private elements from Siemens Inveon Research Workplace 4.2 DICOM Conformance Statement
150502: libsrc/standard/elmdict/other.tpl: Mediso NanoSPECT private data elements observed in samples, including those from Scivis GmbH PET recon
150430: libsrc/standard/strval/us.tpl: Update experimental QT Ultrasound profile with revised impedance mismatch LUT Label that fits in SH
150428: libsrc/src/dctool/condn.cc: remove dependence of US IOD detection on Instance Number, since curves have been retired (000461)
150424: libsrc/standard/condn.tpl,module/mr.tpl: Improve condition on Diffusion Anisotropy Type (000460)
150424: libsrc/src/dctool/condn.cc,standard/condn.tpl,support/condn.awk: Add wildcard or specific value support to binary values in conditions, to be able to check for any DimensionIndexValue not starting at one, not just first one (000459)
150324: libsrc/standard/elmdict/dicom3.tpl: Add data elements for Sup 173
150324: libsrc/standard/module/us.tpl,strval/base.tpl,us.tpl: Update experimental QT Ultrasound profile
150324: libsrc/standard/module/mr.tpl: Move Spacing Between Slices to Pixel Measures Macro and remove from Enhanced MR Image Module (CP 1427)
150324: libsrc/standard/module/us.tpl: Use Pixel Measures in Enhanced US Volume (CP 1428)
150320: libsrc/standard/strval/base.tpl: Add 99KINETDX coding scheme
150319: libsrc/standard/condn.tpl,module/base.tpl: Add condition to Pixel Measures, Plane Position and Orientation Functional Groups for Segmentation objects with Frame of Reference UID (CP 1426)
150319: libsrc/standard/condn.tpl: Add ethics committee and consent elements to conditions for presence of clinical trials modules (CP 942), and add Clinical Trial Series ID and Description to conditions (000457)
150319: libsrc/standard/strval/base.tpl: Add NCIt coding scheme (CP 1372)
150318: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CP 1420, CP 1430, CP 1434
150314: libsrc/standard/tagval.tpl,module/us.tpl,strval/base.tpl,us.tpl: Update experimental QT Ultrasound profile for Enhanced US Volume to check Dimension Index pointers, use Temporal Position Sequence, and check RWVM LUT text and units
150314: libsrc/support/tagval.awk: recognize uppercase as well as lower case hex characters in tag numbers in templates
150302: appsrc/dcfile/dcsrdump.cc: Fix missing segment number (000455)
150227: libsrc/standard/binval.tpl,condn.tpl,iodcomp,module/us.tpl,strval/base.tpl,charset.tpl,us.tpl,waveform.tpl: Add experimental QT Ultrasound profile for Enhanced US Volume
150227: libsrc/standard/elmdict/other.tpl: Add QT Ultrasound private element
150227: libsrc/standard/module,strval/us.tpl: Add missing VolumeToTransducerRelationship to Enhanced US Volume (000454)
150225: libsrc/standard/condn.tpl,iodcomp,module/pet.tpl: Add final text of legacy converted enhanced PET (Sup 157)
150213: libsrc/standard/elmdict/other.tpl: Add MDDX Allup private elements
150209: libsrc/standard/strval/base.tpl: Use empty value flag in list for EmptyValue, otherwise empty values in Image and Frame Type values 3 and 4 in Enhanced US Volume are incorrectly flagged as errors (000453)
150203: libsrc/standard/elmdict/other.tpl: Add DR Systems private element encountered
150127: appsrc/acrnema/andump.cc,dcfile/dcdirdmp.cc,dcsrdump.cc,libsrc/include/dctool/dcstream.h,libsrc/src/dctool/attrmxrd.cc,dcstream.cc,locale/mesgtext.tpl: Do not give up when empty or missing Transfer Syntax UID in meta information header, but guess and continue (000450)
150127: libsrc/standard/module,strval/dx.tpl: Add Positioner Primary Angle Direction (CP 1032)
150127: libsrc/standard/iodcomp/dx.tpl,module/dx.tpl: Add IHE DBT profile (IHE DBT TI 4.8.4.1.2.7 Storage of Digital Breast Tomosynthesis Images)
150127: libsrc/standard/module/dx.tpl,xaxrf.tpl,vstrval/dx.tpl: Update defined terms and enumerated values for breast tomo biopsy, contrast, dual energy, projections (CP 1342)
150121: Imakefile: Add dctoraw and dcdiff and dccmp scripts to windows and mac exe release
150117: appsrc/acrnema/ancreate.cc,andump.cc,dcfile/dciodvfy.cc,libsrc/include/dctool/attrmxls.h,attrtype.h,src/dctool/attrmxrd.cc,attrnew.cc,attrtypv.cc,locale/mesgtext.tpl,standard/condn.tpl,module/base.tpl,strval/base.tpl: Add validation and UC VR support for long codes (CP 1031)
150116: libsrc/standard/elmdict/dicom3.tpl: Add data elements for long codes (CP 1031)
150106: libsrc/standard/elmdict/dicom3.tpl,module/base.tpl,sr.tpl,strval/base.tpl: Add Mapping Resource UID (CP 1417)
150106: libsrc/standard/condn.tpl: Update list of functional groups used as DimensionIndexPointer for check that FunctionalGroupPointer is not needed in DimensionIndexSequence to include those from PET, Ophthalmic and IV OCT, WSI, SEG, Parametric Map and additional MR stuff
150106: module/dx.tpl,us.tpl,vl.tpl: Make Shared Functional Group Sequence Type 1 again per Type 1 SQ Empty Items in Functional Groups (missed a few first time this CP was applied) (CP 1274)
150106: appsrc/dcfile/dciodvfy.cc,libsrc/src/locale/mesgtext.tpl: check that number of items in PerFrameFunctionalGroupsSequence matches number of frames (000449)
141202: libsrc/standard/elmdict/other.tpl: Add RamSoft binary document in text SR related private data elements
141124: libsrc/standard/elmdict/philips.tpl: Add more ultrasound private data elements encountered
141119: libsrc/standard/module/file.tpl: Add Sending and Receiving AETs to file meta information for dciodvfy (CP-1297)
141114: libsrc/standard/elmdict/dicom3.tpl: Change Sup 172 data elements to FT2, using 08 and 09 to avoid conflict with old ACR-NEMA PS3.2 data compression
141113: ibsrc/standard/binval.tpl,condn.tpl,iodcomp,module,strval/base.tpl: Add Sup 172 Parametric Map
141113: libsrc/standard/condn.tpl,module/base.tpl,sr.tpl: Add CP 1387 Quantity Definition Sequence to RWVM, cleanup numeric condition handling in Content Item macro
141110: libsrc/standard/elmdict/dicom3.tpl: Add data elements CPs 1350, 1383, 1399
141110: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Add Sup 172 FT data elements and SOP Class
141104: libsrc/standard/elmdict/diconde.tpl: Add new DICONDE data elements for E2663-11
141025: libsrc/standard/condn.tpl,support/condn.awk: Add StringValueFromRootAttribute mechanism for conditions and test with RT ScanMode (000447)
141019: libsrc/standard/elmdict/dicom3.tpl: ScheduledProcedureStepStartDateTime is not retired after all:
140917: appsrc/dcfile/dciodvfy.cc,libsrc/include/dctool/attrmxls.h,src/dctool/attrmxls.cc,attrmxrd.cc: Add parameter to read() methods to control whether or not to fix bit-depth related attributes during reading, make it on by default, and turn it off just for dciodvfy (000445)
140917: libsrc/standard/binval.tpl,module/base.tpl: Use correct enumerated values for CT Image BitsStored of 12 to 16, not 12 or 16 (000444)
140909: libsrc/include/dctool/attrmxls.h,attrtype.h,src/dctool/attr.cc,attrmxrd.cc,attrnew.cc,attrtypv.cc,standard/elmdict/dicom3.tpl: Add UR VR (CP 1324)
140903: libsrc/standard/elmdict/acuson.tpl,siemens.tpl: Siemens ultrasound private data element updates from conformance statements
140902: libsrc/standard/elmdict/gems.tpl: Update private data elements related to archive
140828: libsrc/standard/module/base.tpl: Add check for single item to Frame Content Sequence
140828: libsrc/standard/module/base.tpl,dx.tpl: Support IEC 62494 Exposure Index of Digital X-ray Imaging Systems (CP1024)
140828: libsrc/standard/module/dx.tpl,xaxrf.tpl: Add Irradiation Event UID to X-Ray 3D IODs (CP1285)
140826: libsrc/standard/elmdict/gems.tpl: Private data element VRs encountered in DBTs
140826: libsrc/src/dctool/attrmxrd.cc: Handle skipping over pixel data value larger than 2GB when reading attribute list (use Uint32 not long) (000440)
140826: config/Configure: detect and warn about any bad Apple LLVM version 5.x, not just version 5.0
140729: libsrc/standard/elmdict/gems.tpl: Private data elements from echo images
140703: libsrc/standard/elmdict/gems.tpl,siemens.tpl: Private data elements from echo SRs
140630: libsrc/standard/elmdict/dicom3.tpl: Remove element (3006,00BA) that was not used in CP 1287 FT after all
140626: libsrc/standard/elmdict/siemens.tpl: Add VR for another KINETDX private data element
140624: libsrc/standard/elmdict/philips.tpl: more labels for Philips data elements
140624: libsrc/standard/elmdict/dicom3.tpl: Add data elements for CPs 1203, 1331, 1343, 1347
140611: libsrc/standard/elmdict/philips.tpl: label Philips private scale slope and intercept data elements
140527: libsrc/standard/strval/base.tpl: add QIICR coding scheme UID
140527: libsrc/src/locale/mesgtext.tpl,appsrc/dcfile/dciodvfy.cc: check appropriate use of UCUM as CSD (000438)
140516: appsrc/dcfile/dcj2k.sh: Make default (no option) reversible as described in documentation
140508: libsrc/standard/elmdict/acuson.tpl,philips.tpl: More Acuson private element VRs encountered in samples; move elements to Acuson template
140506: libsrc/standard/elmdict/other.tpl: Remove spurious trailing characters in element dictionary
140428: libsrc/standard/elmdict/other.tpl: Add Carestream private data elements encountered in sample
140428: appsrc/dcfile/dciodvfy.cc,libsrc/include/dctool/attrmxls.h,attrtag.h,src/dctool/attrmxls.cc,locale/mesgtext.tpl: Do not report bad private group 0xffff as bad standard element, but check specifically for bad groups (000437)
140420: libsrc/standard/elmdict/dicom3.tpl: Add Sup 124 data element tags
140419: libsrc/standard/sopcl.tpl,elmdict/dicom3.tpl: Sup 159 SOP Class UID and data element
140417: libsrc/standard/elmdict/gems.tpl: Add GE FUNCTOOL private data elements
140411: libsrc/standard/elmdict/other.tpl: Add private element encountered in sample
140411: libsrc/standard/condn.tpl: correct condition for inclusion of Specimen Module when user optional (Sup 122)
140410: libsrc/standard/elmdict/agfa.tpl: Add private elements enountered in GSPS samples
140409: libsrc/src/locale/mesgtext.tpl: Clarify leading zeroes in UID message (000436)