-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangeLog
19790 lines (12576 loc) · 582 KB
/
ChangeLog
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
commit 4904c23c48a9175cb1f5de8092625b96ac06d7eb
Author: bert <[email protected]>
Date: Fri Jul 17 07:50:39 2015 +0200
HATCH: do some basic checks in dxf_hatch_pattern_def_line_init().
Signed-off-by: bert <[email protected]>
commit d65a4876ace70e28d8c9772e623a15a849053567
Author: bert <[email protected]>
Date: Fri Jul 17 07:45:48 2015 +0200
HATCH: do some basic checks in dxf_hatch_pattern_init().
Signed-off-by: bert <[email protected]>
commit d3e489ddf66772acabd1e7d690221612c7fba0c6
Author: bert <[email protected]>
Date: Thu Jul 16 19:29:15 2015 +0200
HEADER: added dxf_header_free().
Signed-off-by: bert <[email protected]>
commit 4badce461c6df27616a3191b6384424a889fb5e8
Author: bert <[email protected]>
Date: Thu Jul 16 06:02:30 2015 +0200
HEADER: clean up before return in dxf_header_write().
Signed-off-by: bert <[email protected]>
commit f0b82d2b585de46565f83f620902fd5fe9ab1ef6
Author: bert <[email protected]>
Date: Thu Jul 16 00:31:52 2015 +0200
HEADER: added basic tests to dxf_header_read() and changed the return type.
Signed-off-by: bert <[email protected]>
commit 6cf537f9c1915120a8519b364316660ad622c07b
Author: bert <[email protected]>
Date: Wed Jul 15 23:44:20 2015 +0200
HEADER: added basic tests to dxf_header_read_parser().
Signed-off-by: bert <[email protected]>
commit 7b0574ffe9aaed54143aea3238d9efad3af5abd3
Author: bert <[email protected]>
Date: Wed Jul 15 23:38:09 2015 +0200
HEADER: added basic tests to dxf_header_read_parse_n_double().
Signed-off-by: bert <[email protected]>
commit f1d2698b548fa7290cf01672a8bb5a8fc2161795
Author: bert <[email protected]>
Date: Wed Jul 15 23:35:48 2015 +0200
HEADER: added basic tests to dxf_header_read_parse_int().
Signed-off-by: bert <[email protected]>
commit 7c828e36f00343602ad15516786234478f004b76
Author: bert <[email protected]>
Date: Wed Jul 15 22:39:53 2015 +0200
HEADER: added basic tests to dxf_header_write().
Signed-off-by: bert <[email protected]>
commit 0369207f50721dba77f9d899d96095fa3b7cb92b
Author: bert <[email protected]>
Date: Wed Jul 15 22:35:32 2015 +0200
HEADER: test for a NULL pointer in dxf_header_write_metric_new().
Signed-off-by: bert <[email protected]>
commit 5fdca44ec7ff8d662e72b939ddbf55c9ed75fa77
Author: bert <[email protected]>
Date: Wed Jul 15 22:15:20 2015 +0200
HEADER: added basic tests to dxf_header_init() and changed the return type.
Signed-off-by: bert <[email protected]>
commit a824e77c028208eefe133023d468e101e362cce2
Author: bert <[email protected]>
Date: Wed Jul 15 21:18:17 2015 +0200
HEADER: test for a NULL pointer in dxf_header_acad_version_from_string().
Signed-off-by: bert <[email protected]>
commit 36aa8381e8ebb0885cd9cbece3e02bdad4d6f0ec
Author: bert <[email protected]>
Date: Wed Jul 15 08:20:48 2015 +0200
COLOR: added dxf_RGB_color_free_chain().
Signed-off-by: bert <[email protected]>
commit 10c86d075af85dc43d480b5d1bfee68103a47e69
Author: bert <[email protected]>
Date: Tue Jul 14 23:01:36 2015 +0200
COLOR: added a "next" member to the DxfRGBColor struct.
Signed-off-by: bert <[email protected]>
commit 98653239e516e7b900ecbff9ddb65e88ef67d1d2
Author: bert <[email protected]>
Date: Tue Jul 14 22:53:36 2015 +0200
COMMENT: correction in the Doxygen header.
Signed-off-by: bert <[email protected]>
commit c591686cc5bc61c5868fe5787bb48e1cffa5f238
Author: bert <[email protected]>
Date: Tue Jul 14 22:51:10 2015 +0200
COMMENT: added dxf_comment_get_value().
Signed-off-by: bert <[email protected]>
commit 8246d32cc2d02416877b33c907e76dec5b9a67b9
Author: bert <[email protected]>
Date: Tue Jul 14 00:04:36 2015 +0200
COMMENT: added dxf_comment_set_value().
Signed-off-by: bert <[email protected]>
commit cea790429923b7fc92e63647694b5995c81c0c4a
Author: bert <[email protected]>
Date: Mon Jul 13 20:36:11 2015 +0200
COMMENT: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 74dd2b1486bca87e83dc192b36be1f36118c4f58
Author: bert <[email protected]>
Date: Mon Jul 13 08:01:12 2015 +0200
COMMENT: added dxf_comment_free_chain().
Signed-off-by: bert <[email protected]>
commit 74927c6c606922ab5fd34d156f3fe4de76923f06
Author: bert <[email protected]>
Date: Sun Jul 12 23:36:33 2015 +0200
XRECORD: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 208ec2e56c6808dc119b434ef8d51426e8a6e78c
Author: bert <[email protected]>
Date: Sun Jul 12 22:51:48 2015 +0200
XRECORD: added dxf_xrecord_free_chain().
Signed-off-by: bert <[email protected]>
commit b304aa212db6260e2f2d248213518b11a473d70c
Author: bert <[email protected]>
Date: Sun Jul 12 22:08:51 2015 +0200
XLINE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit dbc1d27da131d958896c30a78bea217553608d17
Author: bert <[email protected]>
Date: Sun Jul 12 18:01:35 2015 +0200
XLINE: added dxf_xline_free_chain().
Signed-off-by: bert <[email protected]>
commit 60055483b4026bb05adb90d4171e39557488c6e9
Author: bert <[email protected]>
Date: Sun Jul 12 08:55:28 2015 +0200
VPORT: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 26539949b24da074a6332067c3715b59547d612f
Author: bert <[email protected]>
Date: Sat Jul 11 23:43:50 2015 +0200
VPORT: added dxf_vport_free_chain().
Signed-off-by: bert <[email protected]>
commit 97cf84a2e4d92b8051c2423c7cf83ac945b90003
Author: bert <[email protected]>
Date: Sat Jul 11 23:39:39 2015 +0200
VIEWPORT: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 9d235957440d7c3d4f6b7947b4f7852db165fec6
Author: bert <[email protected]>
Date: Sat Jul 11 22:11:49 2015 +0200
VIEWPORT: added dxf_viewport_free_chain().
Signed-off-by: bert <[email protected]>
commit 0f01fae926ef2e2716348fe2dac748100a9d28ef
Author: bert <[email protected]>
Date: Sat Jul 11 12:43:05 2015 +0200
VIEW: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 77108d7d5d475ad89143dcacd676c3a8011ebf85
Author: bert <[email protected]>
Date: Fri Jul 10 00:54:27 2015 +0200
VIEW: added dxf_view_free_chain().
Signed-off-by: bert <[email protected]>
commit e5019e34e63145963b3b34775bcdbc00db4eb5e4
Author: bert <[email protected]>
Date: Fri Jul 10 00:24:45 2015 +0200
VERTEX: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 80dde62028f6104bb1483e35988b01db2f491bfb
Author: bert <[email protected]>
Date: Fri Jul 10 00:22:16 2015 +0200
VERTEX: added dxf_vertex_free_chain().
Signed-off-by: bert <[email protected]>
commit b9b7d80ae7c93aa9383d6a73c4129419ea979ef2
Author: bert <[email protected]>
Date: Fri Jul 10 00:18:00 2015 +0200
UCS: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit b1af8b8b42262712cfd5481f071e8ddd4161c642
Author: bert <[email protected]>
Date: Thu Jul 9 22:15:30 2015 +0200
UCS: added dxf_ucs_free_chain().
Signed-off-by: bert <[email protected]>
commit e60140b1460353d022e5951710b444bcf06dad8f
Author: bert <[email protected]>
Date: Thu Jul 9 07:20:39 2015 +0200
TRACE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit eb036f258a080f1dec5d7135504628b85cafbbcd
Author: bert <[email protected]>
Date: Wed Jul 8 23:07:58 2015 +0200
TRACE: added dxf_trace_free_chain().
Signed-off-by: bert <[email protected]>
commit d52f77f093d90df6f2adbc7f054717444d63b19e
Author: bert <[email protected]>
Date: Wed Jul 8 16:40:21 2015 +0200
TOLERANCE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 5d4fae7e9d5e566d2f99c24eb69b990e1fdf3dd1
Author: bert <[email protected]>
Date: Tue Jul 7 22:35:56 2015 +0200
TOLERANCE: added dxf_tolerance_free_chain().
Signed-off-by: bert <[email protected]>
commit 9d526a9b5381ee61c38651c21767ac701d037785
Author: bert <[email protected]>
Date: Tue Jul 7 21:22:55 2015 +0200
TEXT: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit d48c3e5cd8ef42962f4ee2e47d1a938f202e60dc
Author: bert <[email protected]>
Date: Tue Jul 7 20:10:08 2015 +0200
CONTRIBUTING: added section on C header files.
Signed-off-by: bert <[email protected]>
commit 7d0ba4b06d31b5960ed501a8e370400f8112b6a5
Author: bert <[email protected]>
Date: Tue Jul 7 19:53:24 2015 +0200
TEXT: added dxf_text_free_chain().
Signed-off-by: bert <[email protected]>
commit c1787aa83418ee854c1cdd22d7f9a36951cf615e
Author: bert <[email protected]>
Date: Tue Jul 7 19:47:07 2015 +0200
TABLES: uncommented tables->block_records in dxf_tables_free() and dxf_tables_init().
Signed-off-by: bert <[email protected]>
commit 2701ee616172c7fa9a28613556d1eebdb68591d3
Author: bert <[email protected]>
Date: Tue Jul 7 07:50:13 2015 +0200
STYLE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit b02ad113fcef2d23df674a2176381f6b360ae2e5
Author: bert <[email protected]>
Date: Tue Jul 7 07:46:58 2015 +0200
LTYPE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 74f5a27d9e00a38ca44226f69bfe7d0252a6af5c
Author: bert <[email protected]>
Date: Tue Jul 7 07:44:40 2015 +0200
LTYPE: reordering dxf_ltype_free_chain() for documentation sake.
Minor correction in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 2ef6e5f7d5225c7fd2856796bebb9667975bb248
Author: bert <[email protected]>
Date: Tue Jul 7 07:39:19 2015 +0200
STYLE: added dxf_style_free_chain().
Signed-off-by: bert <[email protected]>
commit 3b3cc99c49daab817c4357856623a1a073bab943
Author: bert <[email protected]>
Date: Tue Jul 7 00:24:39 2015 +0200
SPLINE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 64f73ce0fed35cc929e09a6d51c1e8f597b27f91
Author: bert <[email protected]>
Date: Mon Jul 6 23:54:19 2015 +0200
SPLINE: added dxf_spline_free_chain().
Signed-off-by: bert <[email protected]>
commit 113c0411c1a95ec642e1e88275eab8b2987e080b
Author: bert <[email protected]>
Date: Mon Jul 6 23:52:00 2015 +0200
ARC: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 3aee54b566968177b8e6433c80a5a6f3f0b98a61
Author: bert <[email protected]>
Date: Mon Jul 6 23:46:52 2015 +0200
SPATIAL_INDEX: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 2e9b1a42d57d0b1b52a0343cdfd20809ee1ac8ff
Author: bert <[email protected]>
Date: Mon Jul 6 23:45:12 2015 +0200
SPATIAL_INDEX: added dxf_spatial_index_free_chain().
Signed-off-by: bert <[email protected]>
commit b2e73ed3504db9ebfdb384153290cb77413c0a54
Author: bert <[email protected]>
Date: Mon Jul 6 20:29:42 2015 +0200
DICTIONARY: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit c4648941794099434c47a433468a4b7a4299bd26
Author: bert <[email protected]>
Date: Mon Jul 6 20:27:46 2015 +0200
SPATIAL_FILTER: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit cec4108ef8299a7bb67c5895f24670b5823e49e9
Author: bert <[email protected]>
Date: Mon Jul 6 07:32:30 2015 +0200
SPATIAL_FILTER: added dxf_spatial_filter_free_chain().
Signed-off-by: bert <[email protected]>
commit d8f60e10cbbf244918eb05bedc0868375e185926
Author: bert <[email protected]>
Date: Sun Jul 5 21:42:39 2015 +0200
SORTENTSTABLE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 6a8818416ff3337782f672fae4427f1ad29f3a4e
Author: bert <[email protected]>
Date: Sun Jul 5 20:40:10 2015 +0200
SORTENTSTABLE: added dxf_sortentstable_free_chain().
Signed-off-by: bert <[email protected]>
commit 4c64e46fc74f7a6ee7586238f7c5686dcc1aee35
Author: bert <[email protected]>
Date: Sun Jul 5 06:46:33 2015 +0200
SOLID: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit ec5187eba4cc413df32c80e61b35d0bafcb0a030
Author: bert <[email protected]>
Date: Sat Jul 4 20:59:33 2015 +0200
SOLID: added dxf_solid_free_chain().
Signed-off-by: bert <[email protected]>
commit 8a9f3e5cd541b009e5d66c3bb3626865eac164ec
Author: bert <[email protected]>
Date: Sat Jul 4 13:46:00 2015 +0200
SHAPE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit ed2e9cacba925d76ee4aea66fb9f25437bbfef74
Author: bert <[email protected]>
Date: Sat Jul 4 13:44:00 2015 +0200
SHAPE: added dxf_shape_free_chain().
Signed-off-by: bert <[email protected]>
commit bbd3466b375354186dabd949cc95941575e52d37
Author: bert <[email protected]>
Date: Sat Jul 4 11:50:15 2015 +0200
SEQEND: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit de8c55abead944f5bd000698d8cd53e8f18e1798
Author: bert <[email protected]>
Date: Fri Jul 3 23:29:08 2015 +0200
REGION: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 32dba91475ae345c8fdc26701cfd7d97861078ab
Author: bert <[email protected]>
Date: Fri Jul 3 07:48:25 2015 +0200
REGION: added dxf_region_free_chain().
Signed-off-by: bert <[email protected]>
commit bad23a78f5d03c9f8d172f3e163a45ffaf1301fa
Author: bert <[email protected]>
Date: Fri Jul 3 07:29:26 2015 +0200
RAY: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit b96115c7ccb600fde4ba2978510754e1e89a2f26
Author: bert <[email protected]>
Date: Thu Jul 2 07:22:14 2015 +0200
RAY: added dxf_ray_free_chain().
Signed-off-by: bert <[email protected]>
commit 401cbf37f960bb79494b179a57abda7f851d3425
Author: bert <[email protected]>
Date: Thu Jul 2 06:50:41 2015 +0200
RASTERVARIABLES: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit c9218da1a83354b4c146644cbb6ce5abc7de8718
Author: bert <[email protected]>
Date: Wed Jul 1 19:56:07 2015 +0200
RASTERVARIABLES: added dxf_rastervariables_free_chain().
Signed-off-by: bert <[email protected]>
commit f11660611e5c20257b08b2309d3f35df126cdcb8
Author: bert <[email protected]>
Date: Wed Jul 1 07:55:10 2015 +0200
POLYLINE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit d824aa2aa4d72383edbed2e6dd0a2acd3a584f59
Author: bert <[email protected]>
Date: Tue Jun 30 23:11:30 2015 +0200
POLYLINE: added dxf_polyline_free_chain().
Signed-off-by: bert <[email protected]>
commit 485e7b3bba13acc39e36356dcf9352baaf308f47
Author: bert <[email protected]>
Date: Tue Jun 30 00:51:35 2015 +0200
POINT: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 802d4be0d6f9220a9736f8f77659a421ce302e8f
Author: bert <[email protected]>
Date: Mon Jun 29 20:01:27 2015 +0200
POINT: added dxf_point_free_chain().
Signed-off-by: bert <[email protected]>
commit 76258afc9e59a780b482c4f957b166f85e705b1b
Author: bert <[email protected]>
Date: Mon Jun 29 19:56:52 2015 +0200
OLE2FRAME: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 796a724bef216b794b3d27bbaaae37c1547ffaf7
Author: bert <[email protected]>
Date: Mon Jun 29 07:07:38 2015 +0200
OLE2FRAME: added dxf_ole2frame_free_chain().
Signed-off-by: bert <[email protected]>
commit 0968479e504341008e0773c72f8f336316506d7a
Author: bert <[email protected]>
Date: Sun Jun 28 19:03:40 2015 +0200
OLEFRAME: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 525c02562f447e4e1ef4f1fcc401c1cd7aac5b8f
Author: bert <[email protected]>
Date: Sun Jun 28 00:17:43 2015 +0200
OLEFRAME: added dxf_oleframe_free_chain().
Signed-off-by: bert <[email protected]>
commit 7ca36aed9e299775b72a71657606dd7d21d82f26
Author: bert <[email protected]>
Date: Sun Jun 28 00:12:18 2015 +0200
OBJECT_PTR: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit a08e2f9b22e916716bcefcdda5253be05b9079e8
Author: bert <[email protected]>
Date: Sat Jun 27 09:21:59 2015 +0200
OBJECT_PTR: added dxf_object_ptr_free_chain().
Signed-off-by: bert <[email protected]>
commit 4df783176f8dcaca924ab7f95c8ce38d4b64b89c
Author: bert <[email protected]>
Date: Sat Jun 27 08:59:54 2015 +0200
MTEXT: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 0764bd2d051eda258fa48a5b8de71e0d1078fd26
Author: bert <[email protected]>
Date: Fri Jun 26 22:09:36 2015 +0200
MTEXT: test for the follow_strict_version_rules flag when writing to file.
Signed-off-by: bert <[email protected]>
commit 59a8359cefd37a28a8bfed9b0f3385c945d2e0f1
Author: bert <[email protected]>
Date: Fri Jun 26 22:07:05 2015 +0200
MTEXT: added dxf_mtext_free_chain().
Signed-off-by: bert <[email protected]>
commit 42f4d59f48b514bb02c52a05abb9875df298396c
Author: bert <[email protected]>
Date: Fri Jun 26 07:51:47 2015 +0200
MLINESTYLE: test for the follow_strict_version_rules flag when writing to file.
Signed-off-by: bert <[email protected]>
commit 84bc5de1372ed9ec9f6b3d240aa2ccc163383d46
Author: bert <[email protected]>
Date: Fri Jun 26 07:45:53 2015 +0200
MLINESTYLE: added dxf_mlinestyle_free_chain().
Signed-off-by: bert <[email protected]>
commit 0287319d30f7359f75d2a20aafff91bbee9f7cd8
Author: bert <[email protected]>
Date: Fri Jun 26 06:26:14 2015 +0200
MLINE: test for the follow_strict_version_rules flag when writing to file.
Signed-off-by: bert <[email protected]>
commit 1d785ed60d8174a517e852c80ac6b494f8caf800
Author: bert <[email protected]>
Date: Thu Jun 25 23:25:59 2015 +0200
LWPOLYLINE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 4fb2c0f51efd211f3631aa47031f03f1e1d95d70
Author: bert <[email protected]>
Date: Thu Jun 25 23:20:06 2015 +0200
MLINE: added dxf_mline_free_chain().
Signed-off-by: bert <[email protected]>
commit 9a6eebbbc163df5db6009bf8902607584ae1d94f
Author: bert <[email protected]>
Date: Thu Jun 25 23:15:04 2015 +0200
LWPOLYLINE: test for the follow_strict_version_rules flag when writing to file.
Signed-off-by: bert <[email protected]>
commit 5a62f3685f7020a352ca250498517b891da5275e
Author: bert <[email protected]>
Date: Thu Jun 25 23:14:26 2015 +0200
global.h: added a follow_strict_version_rules flag to the DxfFile struct.
Signed-off-by: bert <[email protected]>
commit abf82eea8995bb4ed59311c74f98cf51ae2dbde8
Author: bert <[email protected]>
Date: Thu Jun 25 08:03:34 2015 +0200
LWPOLYLINE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit f10f79bd41fe392a662997b4f45a6f3e76c18fbb
Author: bert <[email protected]>
Date: Wed Jun 24 22:15:20 2015 +0200
LWPOLYLINE: added dxf_lwpolyline_free_chain().
Signed-off-by: bert <[email protected]>
commit dd223ae672dbc2a44ae9941c0092cc6c9fb639a0
Author: bert <[email protected]>
Date: Wed Jun 24 21:52:21 2015 +0200
APPID: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit bf3d718e8ded832f55a74c6c62dcab5beb55f565
Author: bert <[email protected]>
Date: Wed Jun 24 21:46:47 2015 +0200
LTYPE: added dxf_ltype_free_chain().
Signed-off-by: bert <[email protected]>
commit 8e0afe3f2ca9e9ea08842a122dc725cba6d1fd63
Author: bert <[email protected]>
Date: Wed Jun 24 07:24:41 2015 +0200
LTYPE: corrections in Doxygen comments.
Signed-off-by: bert <[email protected]>
commit 965999662a50a21de1b46fac8e0283ec3e326ff6
Author: bert <[email protected]>
Date: Tue Jun 23 22:40:26 2015 +0200
LINE: added dxf_line_free_chain().
Signed-off-by: bert <[email protected]>
commit 99d2957c33e294538290217716e05b7ab5a3f227
Author: bert <[email protected]>
Date: Tue Jun 23 07:50:46 2015 +0200
LEADER: added dxf_leader_free_chain().
Signed-off-by: bert <[email protected]>
commit 5e88890abfed7253e9299ce7be9136fa5447d95e
Author: bert <[email protected]>
Date: Tue Jun 23 06:29:53 2015 +0200
LAYER_INDEX: added dxf_layer_index_free_chain().
Signed-off-by: bert <[email protected]>
commit 35d40616b17792abe12433cc249ca3bb22d69c3b
Author: bert <[email protected]>
Date: Mon Jun 22 07:53:17 2015 +0200
LAYER: corrections in Doxygen header.
Signed-off-by: bert <[email protected]>
commit 7f2b279d31c8e344d480decf8b03a14b2e668231
Author: bert <[email protected]>
Date: Mon Jun 22 07:43:30 2015 +0200
LAYER: added dxf_layer_free_chain().
Signed-off-by: bert <[email protected]>
commit 9e8847a3db40fd670addb605365ac62aaf290739
Author: bert <[email protected]>
Date: Mon Jun 22 00:04:56 2015 +0200
INSERT: added dxf_insert_free_chain().
Signed-off-by: bert <[email protected]>
commit 5fcc462e8e68800e3d33678114a976cd8b348e65
Author: bert <[email protected]>
Date: Sun Jun 21 23:57:54 2015 +0200
IMAGEDEF_REACTOR: added dxf_imagedef_reactor_free_chain().
Signed-off-by: bert <[email protected]>
commit 21898225a66a80ca0d9680b0820a53c74f969fd6
Author: bert <[email protected]>
Date: Sun Jun 21 23:54:10 2015 +0200
IMAGEDEF: added dxf_imagedef_free_chain().
Signed-off-by: bert <[email protected]>
commit 37cff4e97ad43ffd706e326f1eb9fc23607edf2f
Author: bert <[email protected]>
Date: Sun Jun 21 23:45:01 2015 +0200
IMAGE: added dxf_image_free_chain().
Signed-off-by: bert <[email protected]>
commit 0932eaee807978bc427c3e3ea99d40c9941beb50
Author: bert <[email protected]>
Date: Sun Jun 21 23:39:40 2015 +0200
IDBUFFER: added dxf_idbuffer_free_chain().
Signed-off-by: bert <[email protected]>
commit 8146981e4bbeefd7c11f3447c9e459894b469f71
Author: bert <[email protected]>
Date: Sun Jun 21 23:31:56 2015 +0200
HELIX: added dxf_helix_free_chain().
Signed-off-by: bert <[email protected]>
commit 0272c19ce60dbb87c9f341da5e96c71f81516bb5
Author: bert <[email protected]>
Date: Sun Jun 21 22:56:05 2015 +0200
HATCH: added dxf_hatch_boundary_path_edge_spline_control_point_free_chain().
Signed-off-by: bert <[email protected]>
commit 279d62dd5f3497eceacfdfebef5fce6ed228a582
Author: bert <[email protected]>
Date: Sun Jun 21 22:51:08 2015 +0200
HATCH: added dxf_hatch_boundary_path_edge_spline_free_chain().
Signed-off-by: bert <[email protected]>
commit 6ac5cc39ced4cd59f40fb2eaca8be572c666d0b3
Author: bert <[email protected]>
Date: Sun Jun 21 21:05:43 2015 +0200
HATCH: added dxf_hatch_boundary_path_edge_line_free_chain().
Signed-off-by: bert <[email protected]>
commit d7e956f2dfa8d77b6b111da56af5b2f48a77f06b
Author: bert <[email protected]>
Date: Sun Jun 21 20:41:13 2015 +0200
HATCH: added dxf_hatch_boundary_path_edge_ellipse_free_chain().
Signed-off-by: bert <[email protected]>
commit 466c65c6bb599f8b5906f29854cc090e784dda4c
Author: bert <[email protected]>
Date: Sun Jun 21 20:37:25 2015 +0200
HATCH: added dxf_hatch_boundary_path_edge_arc_free_chain().
Signed-off-by: bert <[email protected]>
commit cb07c7301d88f86b50717f0bfa7fd678010ab9ef
Author: bert <[email protected]>
Date: Sun Jun 21 19:53:47 2015 +0200
HATCH: added dxf_hatch_boundary_path_edge_free_chain().
Signed-off-by: bert <[email protected]>
commit 20a662584abcc2b7e72eabc391e4f39ce8babc40
Author: bert <[email protected]>
Date: Sun Jun 21 15:15:36 2015 +0200
HATCH: added dxf_hatch_boundary_path_polyline_vertex_free_chain().
Signed-off-by: bert <[email protected]>
commit 62914447ed0ca2e7d04894ffd6a821ecf21fd3a4
Author: bert <[email protected]>
Date: Sun Jun 21 10:45:28 2015 +0200
HATCH: added dxf_hatch_boundary_path_polyline_free_chain().
Signed-off-by: bert <[email protected]>
commit ba93d31f52522532713be1b10e207af33e4119a4
Author: bert <[email protected]>
Date: Sun Jun 21 10:27:44 2015 +0200
HATCH: added dxf_hatch_boundary_path_free_chain().
Signed-off-by: bert <[email protected]>
commit 2188c7e63e4b5dd2d97048c7ddaefaeb926ba426
Author: bert <[email protected]>
Date: Sun Jun 21 10:23:20 2015 +0200
HATCH: added dxf_hatch_pattern_seedpoint_free_chain().
Signed-off-by: bert <[email protected]>
commit bb094c698ec853e986e727eaf79b5cae03e2e14d
Author: bert <[email protected]>
Date: Sun Jun 21 10:16:58 2015 +0200
HATCH: added dxf_hatch_pattern_def_line_free_chain().
Signed-off-by: bert <[email protected]>
commit 435e36d469d056e9f8711049e4d554c3826c26ad
Author: bert <[email protected]>
Date: Sun Jun 21 07:28:08 2015 +0200
HATCH: added dxf_hatch_pattern_free_chain().
Signed-off-by: bert <[email protected]>
commit e39a7778f0fc4e7a73c4cf3eb7db8d1a161f55ad
Author: bert <[email protected]>
Date: Sun Jun 21 00:05:34 2015 +0200
HATCH: added dxf_hatch_free_chain().
Signed-off-by: bert <[email protected]>
commit a68b30e279e046bb5596d9962a150f558818f197
Author: bert <[email protected]>
Date: Sat Jun 20 23:18:47 2015 +0200
GROUP: added dxf_group_free_chain().
Signed-off-by: bert <[email protected]>
commit 8adb16c1825b962997fdf17d8dd888dd2e19671c
Author: bert <[email protected]>
Date: Sat Jun 20 08:59:53 2015 +0200
ELLIPSE: added dxf_ellipse_free_chain().
Signed-off-by: bert <[email protected]>
commit f1a602d9df0d7ac69c0765c51d7d3440551855e5
Author: bert <[email protected]>
Date: Sat Jun 20 08:59:29 2015 +0200
TABLES: include block records.
Signed-off-by: bert <[email protected]>
commit bf0d7515ddc9bf6e5d8bea68e3e6f5037f3995d0
Author: bert <[email protected]>
Date: Sat Jun 20 08:27:19 2015 +0200
DONUT: added dxf_donut_free_chain().
Signed-off-by: bert <[email protected]>
commit fe010ff29683f8d1833bf9405f5d4f55109fb4ec
Author: bert <[email protected]>
Date: Sat Jun 20 07:53:37 2015 +0200
DIMSTYLE: added dxf_dimstyle_free_chain().
Signed-off-by: bert <[email protected]>
commit f211d417de38480295edb47f06909fd02d5ca321
Author: bert <[email protected]>
Date: Fri Jun 19 22:48:46 2015 +0200
DIMENSION: added dxf_dimension_free_chain().
Signed-off-by: bert <[email protected]>
commit c01e3ee8fbc509d49f8c929ba8627ae9be9909b7
Author: bert <[email protected]>
Date: Fri Jun 19 06:20:13 2015 +0200
DICTIONARYVAR: added dxf_dictionaryvar_free_chain().
Signed-off-by: bert <[email protected]>
commit 2e64c2b10b2f9313f3a67dacc72fd028fec63d32
Author: bert <[email protected]>
Date: Fri Jun 19 06:09:05 2015 +0200
DICTIONARY: added dxf_dictionary_free_chain().
Signed-off-by: bert <[email protected]>
commit 10e6dc1e298a33240c492fe8ebab7e88a017ca17
Author: bert <[email protected]>
Date: Thu Jun 18 23:08:53 2015 +0200
Do not free *->next member in loop, first pass pointer.
Signed-off-by: bert <[email protected]>
commit a88a8a17c0365cd59341f6845574908062d80bdc
Author: bert <[email protected]>
Date: Thu Jun 18 07:23:25 2015 +0200
global.h: set INTER_ACTIVE_PROMPT to 0 (default value).