-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
4194 lines (2465 loc) · 105 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
2016-01-17 11:52 'Arnaud BERCEGEAY'
* gemlib.spec.in:
updated for gemlib 0.44.0
2016-01-15 22:26 'Arnaud BERCEGEAY'
* SRCFILES, files.mak, n_v_bez_fill.c:
removed empty source file n_v_bez_fill.c
2016-01-14 21:56 'Olivier Landemarre'
* mt_gem.h.in:
Add some documentation on cicon
2016-01-11 23:08 'Olivier Landemarre'
* a_wind_get.c, a_wind_set.c:
add documentation
2016-01-11 21:26 'Arnaud BERCEGEAY'
* cvs2cl.pl:
update of cvs2cl (version 2.73) used to generate the gemlib ChangeLog
2016-01-11 21:23 'Arnaud BERCEGEAY'
* users:
update list of users for gemlib ChangeLog
2016-01-10 18:51 'Olivier Landemarre'
* mt_gem.h.in:
fix tabulation
2016-01-10 14:57 'Olivier Landemarre'
* vdi_str2array.c:
add parameter documentation for vdi_str2array_n
2016-01-10 12:55 'Arnaud BERCEGEAY'
* Doxyfile.in, gem.h, gemx.h, mt_gem.h.in:
Add of non-mt version of AES functions in documentation (by adding gem.h
and gemx.h in doxygen configuration).
Now standard AES function without "mt_" prefix are listed in gemlib
documentation generated by doxygen.
2016-01-10 10:48 'Olivier Landemarre'
* a_appl_getcicon.c:
Fix documentation typo
2016-01-10 01:44 'Arnaud BERCEGEAY'
* Doxyfile.in, doxydoc.c, mt_gem.h.in, mt_gemx.h,
n_v_create_driver_info.c, n_vqt_char_index.c, n_vst_charmap.c,
u_v_alpha_text.c, u_v_bez.c, u_v_bit_image.c, u_v_curtext.c,
u_v_ftext.c, u_v_ftext_offset.c, u_v_ftext_offset16.c,
u_v_ftext_offset16n.c, u_v_gtext.c, u_v_justified.c,
u_v_loadcache.c, u_v_savecache.c, u_vm_filename.c,
u_vq_devinfo.c, u_vq_hilite_color.c, u_vqt_extent.c,
u_vqt_f_extent.c, u_vqt_fontheader.c, u_vqt_name_and_id.c,
u_vqt_real_extent.c, u_vrq_string.c, u_vs_document_info.c,
u_vsm_string.c, u_vst_error.c, u_vst_name.c, userdef.txt,
vdi_userdef.c, vdi_userdef.h:
big rework on documentation generated by doxygen
- big enhancement of first page with description of UDEF
- remove userdef.txt
- add doxygen group for UDEF specific functions in VDI group
and rework of all UDEF documentation.
- add doxygen group for NVDI functions (defined in gemx.h)
(yes, it was missing in gemlib 0.43)
2016-01-09 17:31 'Arnaud BERCEGEAY'
* SRCFILES, u_v_alpha_text.c, u_v_bez.c, u_v_bit_image.c,
u_v_curtext.c, u_v_ftext.c, u_v_ftext_offset.c,
u_v_ftext_offset16.c, u_v_ftext_offset16n.c, u_v_gtext.c,
u_v_justified.c, u_v_loadcache.c, u_v_savecache.c,
u_vm_filename.c, u_vq_devinfo.c, u_vq_hilite_color.c,
u_vqt_extent.c, u_vqt_f_extent.c, u_vqt_fontheader.c,
u_vqt_name_and_id.c, u_vqt_real_extent.c, u_vrq_string.c,
u_vs_document_info.c, u_vsm_string.c, u_vst_error.c,
u_vst_name.c, vdi_userdef.c, vdi_userdef.h:
add of new internal header vdi_userdef.h and move of all udef private stuff
to this new header file.
2016-01-09 16:37 'Arnaud BERCEGEAY'
* mt_gem.h.in, mt_gemx.h, userdef.txt:
rename VDI_USERDEF_COMPAT to FORCE_GEMLIB_UDEF
2016-01-02 22:18 'Olivier Landemarre'
* u_v_alpha_text.c, u_v_bez.c, u_v_bit_image.c, u_v_curtext.c,
u_v_ftext.c, u_v_ftext_offset.c, u_v_ftext_offset16.c,
u_v_ftext_offset16n.c, u_v_gtext.c, u_v_justified.c,
u_v_loadcache.c, u_v_savecache.c, u_vm_filename.c,
u_vq_devinfo.c, u_vq_hilite_color.c, u_vqt_extent.c,
u_vqt_f_extent.c, u_vqt_fontheader.c, u_vqt_name_and_id.c,
u_vqt_real_extent.c, u_vrq_string.c, u_vs_document_info.c,
u_vsm_string.c, u_vst_error.c, u_vst_name.c:
fix gemlib documentation
2016-01-02 21:22 'Olivier Landemarre'
* n_v_bez.c, u_v_bez.c:
fix PureC compilation
2016-01-02 18:46 'Olivier Landemarre'
* mt_gem.h.in, u_v_alpha_text.c, u_v_bez.c, u_v_bit_image.c,
u_v_curtext.c, u_v_ftext.c, u_v_ftext_offset.c,
u_v_ftext_offset16.c, u_v_ftext_offset16n.c, u_v_gtext.c,
u_v_justified.c, u_v_loadcache.c, u_v_savecache.c,
u_vm_filename.c, u_vq_devinfo.c, u_vq_hilite_color.c,
u_vqt_extent.c, u_vqt_f_extent.c, u_vqt_fontheader.c,
u_vqt_name_and_id.c, u_vqt_real_extent.c, u_vrq_string.c,
u_vs_document_info.c, u_vsm_string.c, u_vst_error.c,
u_vst_name.c, vdi_userdef.c:
VDIPARBLK is internal structure only remove from mt_gem.h and define localy for userdef need
2015-12-29 20:01 'Olivier Landemarre'
* mt_gem.h.in:
fix udef_v_escape2000 define
2015-12-27 20:35 'Olivier Landemarre'
* mt_gem.h.in, mt_gemx.h, userdef.txt:
Add compilation option VDI_USERDEF_COMPAT
2015-12-14 23:38 'Olivier Landemarre'
* mt_gem.h.in, mt_gemx.h:
define most udef_xxxx function as standard function
2015-12-14 22:06 'Olivier Landemarre'
* gem.h:
add forgot definition for appl_getcicon()
2015-12-14 22:03 'Olivier Landemarre'
* files.mak:
add forgot a_appl_getcicon.o in lib
2015-12-13 20:40 'Olivier Landemarre'
* SRCFILES, files.mak, gcc.mak, gem_vdiP.h, mt_gem.h.in, mt_gemx.h,
u_v_alpha_text.c, u_v_bez.c, u_v_bit_image.c, u_v_curtext.c,
u_v_ftext.c, u_v_ftext_offset.c, u_v_ftext_offset16.c,
u_v_ftext_offset16n.c, u_v_gtext.c, u_v_justified.c,
u_v_loadcache.c, u_v_savecache.c, u_vm_filename.c,
u_vq_devinfo.c, u_vq_hilite_color.c, u_vqt_extent.c,
u_vqt_f_extent.c, u_vqt_fontheader.c, u_vqt_name_and_id.c,
u_vqt_real_extent.c, u_vrq_string.c, u_vs_document_info.c,
u_vsm_string.c, u_vst_error.c, u_vst_name.c, userdef.txt,
vdi_userdef.c:
add USERDEF compatible call
2015-12-13 20:24 'Olivier Landemarre'
* v_gtext16.c, n_vq_devinfo.c:
register remove
2015-12-12 18:16 'Olivier Landemarre'
* a_objc_add.c, mt_gem.h.in:
fix NIL define
2015-12-12 18:12 'Olivier Landemarre'
* a_glue.c:
fix warning prototype
2015-12-08 23:54 'Olivier Landemarre'
* v_cellarray.c:
remove register
2015-12-08 23:51 'Olivier Landemarre'
* v_savecache.c, v_flushcache.c:
reduce stack use
2015-12-08 23:47 'Olivier Landemarre'
* vqt_name.c:
reduce stack use
2015-12-08 23:41 'Olivier Landemarre'
* vqt_get_table.c:
reduce stack use
2015-12-08 23:36 'Olivier Landemarre'
* vqt_extent16.c, n_v_ftext16.c, n_v_opnprn.c, n_vqt_f_extent16.c:
remove register
2015-12-08 23:34 'Olivier Landemarre'
* vst_scratch.c:
simplification
2015-10-19 20:14 'Olivier Landemarre'
* n_v_bez.c, n_v_ftext_offset16.c, n_v_ftext_offset16n.c:
fix for PureC provide by Gerhard Stoll
2015-09-15 21:16 'Olivier Landemarre'
* Makefile:
fix for vbcc with mshort mode, need define __MSHORT__ for vqgdos
2015-09-06 10:17 'Olivier Landemarre'
* vbcc.mak:
vbcc macro update
2015-08-25 23:58 'Olivier Landemarre'
* Makefile, files.mak, vbcc.mak:
Add multiple VBCC target compilation
2015-08-25 00:05 'Olivier Landemarre'
* Makefile, _vc_asm_vq_gdos.S, _vc_asm_vq_vgdos.S, files.mak,
gem_vdiP.h, vbcc.mak:
Add VBCC support
2015-08-24 22:33 'Olivier Landemarre'
* rc_intersect.c:
include min max macro for all compilers
2015-08-24 22:26 'Olivier Landemarre'
* mt_gemx.h:
remove wrong VBCC correction
2015-08-24 22:19 'Olivier Landemarre'
* files.mak:
Add new files in macro + VBCC asm files
2015-08-24 22:17 'Olivier Landemarre'
* n_vqt_devinfo.c:
Not local mt_gem.h was not used
2015-08-23 19:38 'Olivier Landemarre'
* include/README:
information for VBCC
2015-08-23 19:32 'Olivier Landemarre'
* gem_aesP.h, gem_vdiP.h:
VBCC support contributed by Franck Wille & Eero Tamminen
2015-08-23 13:23 'Arnaud BERCEGEAY'
* Doxyfile.in:
upgrade doxygen file format (for doxygen 1.8.6)
2015-08-23 13:21 'Arnaud BERCEGEAY'
* mt_gemx.h, vdi_str2array.c:
add missing documentation (in order to remove doxygen warnings)
2015-08-22 10:07 'Olivier Landemarre'
* a_wind_get.c, a_wind_set.c:
Add documentation
2015-08-22 09:51 'Olivier Landemarre'
* a_appl_control.c, a_wind_set.c, mt_gem.h.in:
Add constant definition for appl_control, appl_getinfo, wind_get, wind_set for MyAES and associated documentation
2015-08-21 23:42 'Olivier Landemarre'
* SRCFILES, a_appl_getcicon.c, gem.h, mt_gem.h.in:
add appl_get_cicon call from MyAES 0.96
2015-08-21 22:30 'Olivier Landemarre'
* SRCFILES, mt_gem.h.in, mt_gemx.h, n_v_ftext_offset16n.c,
n_vqt_real_extent16n.c, v_alpha_text16n.c, v_curtext16n.c,
v_justified16n.c:
add new text functions using 16bit size char
2015-08-21 21:38 'Olivier Landemarre'
* n_v_ftext_offset.c, n_v_ftext_offset16.c, v_justified.c:
Fix possible table exceeding fill
2015-08-21 19:17 'Olivier Landemarre'
* VERSION, mt_gem.h.in, n_v_bez.c, n_v_ftext.c, n_v_ftext_offset.c,
n_vqt_f_extent.c, n_vqt_name_and_id.c, n_vqt_real_extent.c,
n_vs_document_info.c, n_vst_name.c, v_alpha_text.c,
v_bit_image.c, v_curtext.c, v_gtext.c, v_justified.c,
v_loadcache.c, v_savecache.c, vdi_str2array.c, vm_filename.c,
vqt_extent.c:
Reduce intin table to reduce stack use to not crash under USERDEF on some TOS, over size protection when feed intin table
2015-08-15 14:48 'Olivier Landemarre'
* mt_gemx.h:
VBCC fix
2014-09-16 23:41 'Gerhard Stoll'
* mt_gemx.h:
COLOR_TAB256 and CBITMAP_MAGIC
2010-08-22 22:07 'Alan Hourihane'
* Makefile:
Use ln -sf to force symlink
2010-02-17 22:23 'Arnaud BERCEGEAY'
* rc_grect_to_array.c:
fix grect_to_array when compiled with gcc4, contributed by Vincent Riviere
2010-01-06 00:01 'Alan Hourihane'
* Makefile:
Add 020 library option.
Contributed by Miro Kropacek
2009-12-21 10:39 'Alan Hourihane'
* BINFILES, Makefile, Makefile.objs:
- Fixed the makefiles due to the bad changes in the previous patch.
- Added new variables to CONFIGVARS to build 68020-60 and ColdFire versions
of GemLib. They are named WITH_020_LIB and WITH_V4E_LIB, and set to "no" by
default.
- Moved libgem16.a to mshort/libgem.a to follow the standard GCC naming
rules. Added a symlink to keep the compatibility.
Patch provided by Vincent Riviere.
2009-12-20 15:21 'Alan Hourihane'
* _gc_asm_aes.S, _gc_asm_vdi.S, _gc_asm_vq_gdos.S,
_gc_asm_vq_vgdos.S, _lc_asm.s, _pc_asm.s, _sx_asm.s, gem_aesP.h,
gem_vdiP.h:
Always assume that d0-d2/a0-a2 can be modified on trap calls.
Replaced some assembler instructions by faster ones.
Contributed by Vincent Riviere
2009-12-20 15:18 'Alan Hourihane'
* _lc_asm.s:
conversion LF/CR
2009-12-11 13:15 'Alan Hourihane'
* BINFILES, Makefile, Makefile.objs, gem_aesP.h:
Support for v4e and a 68020-60 targets
Fix a register problem in the AES code.
contributed by Vincent Riviere
2007-12-28 11:12 'Gerhard Stoll'
* a_appl_getinfo.c:
added documentation for bit 14 of out1 and bit 0 of out2 returned by appl_getinfo(AES_WINDOW)
2007-10-30 22:09 'Arnaud BERCEGEAY'
* a_appl_getinfo.c:
added documentation for bit 15 of out1 returned by appl_getinfo(AES_WINDOW)
2007-03-12 21:40 'Arnaud BERCEGEAY'
* mt_gem.h.in:
fixed documentation of AC_CLOSE and AC_OPEN
2006-05-04 08:02 'Arnaud BERCEGEAY'
* mt_gem.h.in:
documentation: added AES that support recently added WF_XXX modes
2006-05-02 23:26 'Arnaud BERCEGEAY'
* mt_gem.h.in:
added some extra WF_XXX modes
2006-05-01 20:43 'Arnaud BERCEGEAY'
* a_wind_set.c, mt_gem.h.in:
Added WF_TOPMOST and its documentation
Added WF_230 and WF_231 to reserve the value.
2006-04-25 23:06 'Arnaud BERCEGEAY'
* EXTRAFILES:
added missing ASM files in SRC archive
2006-04-25 22:39 'Arnaud BERCEGEAY'
* _lc_asm.s:
added Lattice C support contributed by Roger Burrows
2006-03-12 22:54 'Arnaud BERCEGEAY'
* files.mak:
Fixed list of objects files for alternative compilers :
- removed doxydoc.o
- added a_fsel_boxinput.o, a_graf_wwatchbox.o, a_graf_xhandle.o,
a_objc_xfind.o, a_wind_draw.o and a_wind_xset_grect.o
(contrib by Roger Burrows)
2006-03-12 22:50 'Arnaud BERCEGEAY'
* EXTRAFILES:
Added missing files for sources archive:
- Files needed to build the doc (ChangeLog, doxydoc.c and Doxyfile)
- Files needed to build the lib for alternative compilers (sozobon,
purec and gcc 2.81)
2006-01-25 23:00 'Arnaud BERCEGEAY'
* a_shel_write.c:
fixed documentation (wisgr param for SHUTDOWN)
2006-01-24 21:47 'Arnaud BERCEGEAY'
* mt_gem.h.in:
some documentation fixes (appl_getinfo(AES_MESSAGE))
2006-01-04 21:18 'Arnaud BERCEGEAY'
* a_appl_init.c:
added documentation for undocumented aes_global[10]
2005-12-19 21:04 'Arnaud BERCEGEAY'
* ChangeLog:
updated for version 0.43.6
2005-12-19 21:03 'Arnaud BERCEGEAY'
* VERSION, a_form_keybd.c, a_shel_write.c, a_wind_set.c,
gemlib.spec.in, mt_gem.h.in:
- BUMPED to version 0.43.6
- refresh documentation about mouse wheel support
- modification of documentation layout (mainly form_keybd).
2005-12-19 00:07 'Arnaud BERCEGEAY'
* files.mak:
added missing wind_xget obj file for sox, pc and gcc281 compilers
2005-12-08 20:19 'Arnaud BERCEGEAY'
* a_shel_write.c, mt_gem.h.in:
added NM_INHIBIT_HIDE flag and its documentation
2005-10-29 21:03 'Odd Skancke'
* a_form_keybd.c:
Updated comments on form_keybd() function
2005-10-03 21:48 'Arnaud BERCEGEAY'
* ChangeLog:
updated for release 0.43.5
2005-10-03 21:47 'Arnaud BERCEGEAY'
* VERSION, gemlib.spec.in:
bumped to version 0.43.5
2005-10-03 21:45 'Arnaud BERCEGEAY'
* files.mak:
added missing object file a_wind_xcreate_grect.o
2005-10-03 21:45 'Arnaud BERCEGEAY'
* mt_gem.h.in:
fixed documentation
2005-09-22 23:05 'Arnaud BERCEGEAY'
* rc_array_to_grect.c:
fix array_to_grect (hope it\'s ok now)
2005-08-16 23:38 'Arnaud BERCEGEAY'
* a_wind_get.c:
fixed mt_wind_get(WF_NAME) and mt_wind_get(WF_INFO) the right way this time
(parameter *W1 which is (in this particular case) the first character of the
string was overwritten with intout[1].)
2005-08-16 20:48 'Arnaud BERCEGEAY'
* a_wind_get.c:
fixed mt_wind_get(WF_NAME) and mt_wind_get(WF_INFO) (intin[3] was cleared too
early).
2005-08-15 21:09 'Arnaud BERCEGEAY'
* a_appl_getinfo.c, a_appl_search.c:
fix documentation for extended call of mt_appl_search (return of a string
description and process ID)
2005-08-15 21:05 'Arnaud BERCEGEAY'
* files.mak:
added a_wind_xcreate.o object file for sozobon, pure c and old GCC target
to be consistant with default gcc build.
2005-07-12 12:48 'Odd Skancke'
* SRCFILES, a_wind_get.c, a_wind_xcreate.c, a_wind_xcreate_grect.c,
gem.h, mt_gem.h.in:
wind_xcreate() added.
2005-07-11 22:54 'Arnaud BERCEGEAY'
* a_appl_getinfo.c, mt_gem.h.in:
added AES_WOPTS mode for mt_appl_getinfo()
2005-07-05 19:49 'Arnaud BERCEGEAY'
* a_appl_getinfo.c:
added documentation for bit 13 of AES_WINDOW
2005-04-12 22:37 'Arnaud BERCEGEAY'
* a_menu_ienable.c:
updated doc (high bit of me_item)
2005-04-07 21:47 'Arnaud BERCEGEAY'
* a_appl_getinfo.c:
updated documentation of mt_appl_getinfo() with mode AES_SYSTEM:
bit1 of out4 indicates if the AES supports Interface RSC (MyAES f.e.)
2005-04-07 19:55 'Arnaud BERCEGEAY'
* a_shel_write.c:
updated documentation of mt_shel_write() for
- SWM_REZCHANGE mode (added FALCON030 video mode, and tail parameter)
- SWM_SHUTDOWN mode (added tail parameter)
2005-04-01 21:42 'Arnaud BERCEGEAY'
* ChangeLog:
updated for release 0.43.4
2005-04-01 21:35 'Arnaud BERCEGEAY'
* VERSION, gemlib.spec.in:
bumped to version 0.43.4
2005-04-01 21:34 'Arnaud BERCEGEAY'
* doxydoc.c:
doc: replaced include by verbinclude for changelog(s)
2005-04-01 20:24 'Arnaud BERCEGEAY'
* HOWTO_RELEASE:
new file (name is self-explanatory)
2005-04-01 20:12 'Arnaud BERCEGEAY'
* users:
removed email addresses (protection against spam)
2005-04-01 20:11 'Arnaud BERCEGEAY'
* files.mak, zip.mak:
Changed creation of zip files. Now, "make zip" generates the archives (zip
or tgz files) with filenames ready to use in gemlib www site or various ftp
servers.
Added creation of SRC and DOC archives (by using "make zip").
See new file HOWTO_RELEASE for details.
2005-03-29 22:29 'Arnaud BERCEGEAY'
* a_wind_set.c, mt_gem.h.in:
renamed some constants (as discussed in the mint ML)
- WHL_REALWHEEL ==> WHEEL_MESAG
- WHL_ARROWWHEEL ==> WHEEL_ARROWED
- WHL_SLDRWHEEL ==> WHEEL_SLIDER
2005-03-25 20:39 'Arnaud BERCEGEAY'
* Makefile, zip.mak:
It was a very bad idea to use the variable ZIP in the makefile
(it's similar to ZIP_OPT in most systems). "$(ZIP)" has been replaced by
"zip" everywhere and now "make zip" works as expected.
2005-03-25 20:35 'Arnaud BERCEGEAY'
* users:
added ggs in list of commiters (for localy generated ChangeLog)
2005-03-23 22:31 'Arnaud BERCEGEAY'
* Makefile:
ChangeLog is now pretty printed (similar to sparemint site)
2005-02-23 22:10 'Arnaud BERCEGEAY'
* SRCFILES, files.mak, n_v_create_driver_info.c,
n_v_delete_driver_info.c, n_v_read_default_settings.c,
n_v_write_default_settings.c:
New function for the printer dialog from WDialog (fixes)
2005-02-22 17:59 'Gerhard Stoll'
* n_v_create_driver_info.c, n_v_delete_driver_info.c,
n_v_read_default_settings.c, n_v_write_default_settings.c:
New function for the printer dialog from WDialog
2005-02-21 17:53 'Gerhard Stoll'
* mt_gemx.h:
New function for the printer dialog from WDialog
2005-02-18 23:14 'Arnaud BERCEGEAY'
* a_graf_xhandle.c:
doc updated
2005-02-16 22:36 'Arnaud BERCEGEAY'
* mt_gem.h.in:
- customised /**@file*/ comment (workaround for doxygen 1.4.1-20050210)
- added WM_WHEEL message
- renamed WHL_AROWWHEEL to WHL_ARROWWHEEL (maybe WHL_ARROWED is better...
i don't think we have to add the WHEEL suffix for WHL_xxx constants)
- updated WF_OPTS option bitmask (WO0_xxx instead of WO_xxx)
- marked WA_WHEEL as deprecated
2005-02-16 22:27 'Arnaud BERCEGEAY'
* a_wind_set.c:
updated documentation of mt_wind_set(WF_WHEEL) and mt_wind_set(WF_OPTS)
2005-02-16 22:24 'Arnaud BERCEGEAY'
* a_appl_search.c, a_shel_write.c:
fixed tab/space issues to make doxygen auto-list detector happy
2005-02-16 22:22 'Arnaud BERCEGEAY'
* doxydoc.c:
main page of the documentation refreshed
2005-01-28 21:32 'Arnaud BERCEGEAY'
* a_appl_getinfo.c, mt_gem.h.in:
added constants AES_EXTENDED and AES_NAES for modes 64 and 65 of
mt_appl_getinfo(), as suggested by Martin Elsaesser.
2004-12-18 23:44 'Arnaud BERCEGEAY'
* SRCFILES, a_appl_getinfo.c, a_appl_getinfo_str.c, files.mak,
gem.h, mt_gem.h.in:
added appl_getinfo_str() and updated doc for AES_VERSION mode
2004-12-14 22:42 'Arnaud BERCEGEAY'
* a_wind_xget_grect.c, mt_gem.h.in:
extended WF_FIRSTXYWH replaced by WF_FIRSTAREAXYWH
2004-11-09 23:18 'Arnaud BERCEGEAY'
* a_wind_set.c, mt_gem.h.in:
documentation updated for mt_wind_set() and WF_OPTS options
2004-11-08 18:58 'Arnaud BERCEGEAY'
* SRCFILES, a_wind_xget_grect.c, gem.h, mt_gem.h.in:
restore mt_wind_xget_grect() (was deleted by accident ?)
2004-11-08 15:23 'Odd Skancke'
* a_wind_xset_grect.c:
fixed wind_xset_grect(), wrong function number used.
2004-11-08 07:11 'Odd Skancke'
* SRCFILES, a_wind_xget_grect.c, a_wind_xset_grect.c, gem.h,
mt_gem.h.in:
wind_set is NOT wind_get. Fixed wrong documentation, removed a_wind_xget_grect.
Now my version of HighWire compiles again :)
2004-11-07 22:24 'Arnaud BERCEGEAY'
* a_wind_xget_grect.c, SRCFILES, gem.h, mt_gem.h.in:
added extension of wind_get(WF_FIRSTXYWH) for MyAES
2004-11-07 22:16 'Arnaud BERCEGEAY'
* a_wind_create.c, mt_gem.h.in:
fix some comments
2004-11-07 22:13 'Arnaud BERCEGEAY'
* a_glue.c:
remove wind_xset_grect (useless, see comment in top of a_glue.c)
2004-11-07 01:47 'Odd Skancke'
* mt_gem.h.in:
Now I think I got it right
2004-11-07 01:25 'Odd Skancke'
* mt_gem.h.in:
Found out mt_get.h is generated from mt_gem.h.in
2004-11-07 00:41 'Odd Skancke'
* SRCFILES, a_glue.c, a_wind_create.c, a_wind_xset_grect.c, gem.h:
Added wind_xset_grect() XaAES specific call. Added new XaAES definitons
WF_OPTS, WO_NOBLITW, WO_NOBLITH, WO_WHEEL, WO_FULLREDRAW, WO_SENDREPOS,
WM_REPOSED.
2004-11-03 22:21 'Arnaud BERCEGEAY'
* gemlib.spec.in:
updated for release 0.43.3-1
2004-11-03 20:06 'Arnaud BERCEGEAY'
* ChangeLog:
update
2004-11-03 20:00 'Arnaud BERCEGEAY'
* VERSION:
Bumped to release 0.43.3
2004-11-03 20:00 'Arnaud BERCEGEAY'
* Makefile:
pc target added (pure c compiler)
2004-10-29 09:57 'Arnaud BERCEGEAY'
* a_wind_calc.c, a_wind_create.c, a_wind_delete.c, a_wind_find.c,
a_wind_get.c, a_wind_get_grect.c, a_wind_open.c, mt_gem.h.in:
documentation updated
2004-10-27 22:09 'Arnaud BERCEGEAY'
* a_shel_write.c, mt_gem.h.in:
- added constants to manage AES threads: SWM_THREXIT, SWM_THRKILL, SHW_THR_EXIT
and SHW_THR_KILL
- documentation updated
2004-10-23 12:24 'Arnaud BERCEGEAY'
* a_wind_set.c, a_wind_set_grect.c, a_wind_set_str.c,
a_wind_update.c, mt_gem.h.in:
added constant NO_BLOCK for mt_wind_update()
documentation updated
2004-10-22 18:42 'Arnaud BERCEGEAY'
* mt_gem.h.in:
fix comment about SHELW extensions
2004-10-21 20:50 'Arnaud BERCEGEAY'
* a_shel_write.c, mt_gem.h.in:
documentation updated
2004-10-20 20:33 'Arnaud BERCEGEAY'
* mt_gem.h.in:
add XaAES/oAESis extended modes for shel_write():
- uid and gid are added to the SHELW structure
- SW_UID and SW_GID constants added
add MagiC6 extended mode for shel_write():
- flags added to XSHW_COMMAND structure
SHELTAIL structure is now compatible with 32 bits compilers (int -> short)
2004-10-18 22:50 'Arnaud BERCEGEAY'
* mt_gem.h.in:
documentation updated
2004-10-18 22:20 'Arnaud BERCEGEAY'
* a_scrp_read.c, a_shel_rdef.c, a_shel_wdef.c, a_shel_write.c:
documentation: some fixes
2004-10-17 09:28 'Arnaud BERCEGEAY'
* a_shel_write.c, mt_gem.h.in:
documentation updated
2004-10-15 22:55 'Arnaud BERCEGEAY'
* a_appl_getinfo.c, a_shel_envrn.c, a_shel_get.c, a_shel_help.c,
a_shel_rdef.c, a_shel_wdef.c, mt_gem.h.in:
- added constant SHP_HELP (for mt_shel_help())
- documentation updated
2004-10-14 22:37 'Arnaud BERCEGEAY'
* a_rsrc_free.c, a_rsrc_gaddr.c, a_rsrc_load.c, a_rsrc_rcfix.c,
a_rsrc_saddr.c, a_scrp_clear.c, a_scrp_read.c, a_scrp_write.c,
mt_gem.h.in:
- added constants SCRAP_XXX for mt_scrap_read(). They are return values for
MagiC-PC 2.0 (information taken from TOS.HYP)
- documentation updated
2004-10-14 20:58 'Arnaud BERCEGEAY'
* rc_array_to_grect.c:
fixed array_to_grect() : the width and height were always 1
2004-10-12 22:35 'Arnaud BERCEGEAY'
* a_objc_edit.c, a_objc_find.c, a_objc_sysvar.c, mt_gem.h.in,
x_objc_wdraw.c, x_objc_xedit.c:
documentation updated
2004-10-09 21:11 'Arnaud BERCEGEAY'
* a_objc_add.c, a_objc_change.c, a_objc_draw.c,
a_objc_draw_grect.c, a_objc_edit.c, a_objc_find.c,
a_objc_offset.c, a_objc_order.c, a_objc_sysvar.c, a_objc_xfind.c,
mt_gem.h.in:
documentation updated (cosmetic)
2004-10-05 23:08 'Arnaud BERCEGEAY'
* a_menu_attach.c, a_menu_bar.c, a_menu_icheck.c, a_menu_ienable.c,
a_menu_istart.c, a_menu_popup.c, a_menu_register.c,
a_menu_settings.c, a_menu_tnormal.c, mt_gem.h.in:
- add MN_INQUIRE and MN_CHANGE (constants for mt_menu_settings())
- documentation updated (cosmetic)
2004-10-04 22:12 'Arnaud BERCEGEAY'