forked from AreaScout/vice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2
6712 lines (3608 loc) · 151 KB
/
ChangeLog.2
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
2008-07-18 Spiro Trikaliotis <[email protected]>
* Version 2.0
2008-07-18 Christian Vogelgsang <[email protected]>
* build/macosx/build-vice-release.sh: use provided autogen.sh
* doc/ReadmeMacOSX.txt: updated mac docs
* doc/html/macosx.html: Prepared for release of 2.0
2008-07-17 Spiro Trikaliotis <[email protected]>
* doc/vice.texi, doc/html/plain/NEWS, doc/html/index.html,
doc/Win32-Cygwin-HOWTO.txt: Prepared for upcoming 2.0 release.
2008-07-16 Spiro Trikaliotis <[email protected]>
* Version 1.22.27
2008-07-15 Marco van den Heuvel <[email protected]>
* Makefile.am: Reverted the skyos make bindist(zip) part back to
what is used to be.
2008-07-14 Marco van den Heuvel <[email protected]>
* README: Updated for the 2.0 release.
2008-07-13 Spiro Trikaliotis <[email protected]>
* Version 1.22.26
2008-07-12 Marco van den Heuvel <[email protected]>
* build/riscos/build-cross.sh: Added a missing 'cd ..'.
* configure.in: Corrected a typo.
* doc/Readme.beos: Updated.
* vice-mint.spec, vice.spec: Release version updated to 2.0.
2008-07-10 Spiro Trikaliotis <[email protected]>
* Version 1.22.25
2008-07-07 Spiro Trikaliotis <[email protected]>
* Version 1.22.24
2008-07-07 Marco van den Heuvel <[email protected]>
* doc/html/plain/NEWS: Updated.
2008-07-04 Spiro Trikaliotis <[email protected]>
* Version 1.22.23
2008-07-04 Spiro Trikaliotis <[email protected]>
* Makefile.am: Make sure the file Doxyfile is included in the
distribution.
* doc/html/Makefile.am: Make sure the files hpux.html and
sco.html are included in the distribution.
2008-07-01 Marco van den Heuvel <[email protected]>
* doc/GP2X-Howto.txt, doc/Makefile.am: Added a GP2X compile
howto text file.
2008-07-02 Andreas Matthies <[email protected]>
* doc/html/plain/BUGS, NEWS: Updated.
2008-07-01 Spiro Trikaliotis <[email protected]>
* Version 1.22.22
2008-06-30 Marco van den Heuvel <[email protected]>
* doc/html/plain/NEWS: Added mint and sol11 ports and corrected
a typo.
* doc/html/solaris.html: Added sol11 port.
2008-06-29 Spiro Trikaliotis <[email protected]>
* Version 1.22.21
2008-06-28 Spiro Trikaliotis <[email protected]>
* data/CBM-II/win_shortcuts.vsc, data/VIC20/win_shortcuts.vsc,
data/PLUS4/win_shortcuts.vsc, data/PET/win_shortcuts.vsc,
data/C64/win_shortcuts.vsc, data/C128/win_shortcuts.vsc: Set
default shortcuts Ctrl+C and Ctrl+V for Edit/Copy and Edit/Paste
* doc/html/plain/NEWS: Updated
2008-06-23 Spiro Trikaliotis <[email protected]>
* Version 1.22.20
2008-06-23 Spiro Trikaliotis <[email protected]>
* vice-mint.spec: Added (was forgotten in the previous version)
2008-06-22 Marco van den Heuvel <[email protected]>
* Makefile.am: Improved some of the make-bindist.sh scripts.
2008-06-19 Marco van den Heuvel <[email protected]>
* vice-mint.spec, Makefile.am: Added Atari Mint specific rpm
2008-06-19 Marco van den Heuvel <[email protected]>
* vice-mint.spec, Makefile.am: Added Atari Mint specific rpm
spec file.
* AUTHORS, README: Added Fabrizio to the VICE core members.
* config.guess, config.sub: Added preliminary support for
avr32-linux.
* doc/vice.texi: Added Fabrizio to the VICE core members, got
rid of a duplicate Christian Vogelgsang entry and added/updated
external contributors entries.
* doc/html/plain/NEWS, doc/html/index.html: Updated for the
VICE 2.0 release.
2008-06-22 Spiro Trikaliotis <[email protected]>
* Version 1.22.19
2008-06-17 Spiro Trikaliotis <[email protected]>
* Doxyfile: new file to allow to auto-generate doxygen
documentation.
2008-06-15 Spiro Trikaliotis <[email protected]>
* Version 1.22.18
2008-06-08 Marco van den Heuvel <[email protected]>
* configure.in: Added a check for the minix version for the
prototypes of recv and send in network.c.
* doc/html/solaris.html, doc/html/amigaos.html,
doc/html/sco.html, doc/html/hpux.html, doc/html/beos.html,
doc/html/qnx.html, doc/html/Makefile.am, doc/html/index.html:
Updated for the upcoming 2.0 release.
2008-06-03 Spiro Trikaliotis <[email protected]>
* Version 1.22.17.
* configure.in: Test for libnet 1.1 and set VICE_USE_LIBNET_1_1
if it exists. This adds support for libnet 1.1 for TFE/RR-net
emulation.
2008-06-03 Spiro Trikaliotis <[email protected]>
* configure.in: Changed bash'ism (if [...]) to more general code
(if test ...).
2008-06-01 Marco van den Heuvel <[email protected]>
* configure.in: Added extra defines needed for minix, alligned
the printout of configure and added the --enable-memmap
configure option for the memmap feature from VICEplus as
provided by Hannu Nuotio <[email protected]>.
* build/qnx4/build.sh: Fixed the qnx 4.x build script.
2008-05-25 Spiro Trikaliotis <[email protected]>
* Version 1.22.16.
2008-05-25 Christian Vogelgsang <[email protected]>
* configure.in: honor OBJCFLAGS if available. added Carbon lib
for Cocoa linking.
* build/Makefile.am, build/macosx/build-vice-release.sh: added
build-vice-release script
* Makefile.am: make bindist on Macs need the bash
* data/C64/Makefile.am, data/C64/osx_sym_de.vkm,
data/C64/osx_pos.vkm, data/C64/osx_sym_us.vkm: fixed Cocoa key
maps
2008-05-24 Marco van den Heuvel <[email protected]>
* Makefile.am: Added a '@' in front of the 'make install' echo.
2008-05-19 Spiro Trikaliotis <[email protected]>
* autogen.sh: Removed "bash-ism" from script (compare with "=="
instead of "=").
2008-05-19 Spiro Trikaliotis <[email protected]>
* depcomp, missing, aclocal.m4, po/stamp-cat-id, po/vice.pot,
po/fr.gmo, po/nl.gmo, po/pl.gmo, po/hu.gmo, po/it.gmo,
po/de.gmo, po/sv.gmo: Removed some more auto-generated or
unnecessary files.
2008-05-18 Spiro Trikaliotis <[email protected]>
* Version 1.22.15.
2008-05-16 Marco van den Heuvel <[email protected]>
* doc/html/Makefile.am, doc/Makefile.am: Changed the way the
docdir is dealt with, old way made some autotools versions end
up with an error.
2008-05-13 Spiro Trikaliotis <[email protected]>
* autogen.sh: generates (almost) all files which can be
auto-generated. Exceptions: Files which are needed for platforms
which cannot built them themselves, or which are deliberately
changed from the auto-generated forms. These files are:
config.guess, config.sub (deliberately changed), and
src/monitor/mon_parse.c, src/monitor/mon_parse.h,
src/monitor/mon_lex.c (their absense would break compilation for
some platforms).
* src/config.h.in, doc/texinfo.tex, po/cat-id-tbl.c,
*/Makefile.in: removed files which can be auto-generated.
2008-05-07 Spiro Trikaliotis <[email protected]>
* Version 1.22.14.
2008-05-01 Marco van den Heuvel <[email protected]>
* configure.in, data/fonts/vice-cbm.bdf,
data/fonts/Makefile.am: Added a check for the 'fc-cache'
command, and use the .bdf font if not present.
* doc/html/Makefile.am, doc/Makefile.am: Fixed the
ALTERNATE_DOCDIR problems with automake.
2008-04-27 Spiro Trikaliotis <[email protected]>
* Version 1.22.13.
* build/mingw32/build-cross.sh: Fix so the compiler is added to
the path even if it is already installed on the system.
2008-04-20 Christian Vogelgsang <[email protected]>
* build/macosx/build-inc.sh, build/macosx/build-ffmpeglame.sh:
updated Mac OS X build scripts.
2008-04-26 Spiro Trikaliotis <[email protected]>
* Version 1.22.12.
2008-04-20 Spiro Trikaliotis <[email protected]>
* Version 1.22.11.
2008-04-20 Spiro Trikaliotis <[email protected]>
* doc/vice.texi: Updates manual to reflect latest monitor
changes.
2008-04-09 Spiro Trikaliotis <[email protected]>
* Version 1.22.10.
2008-04-08 Andreas Matthies <[email protected]>
* data/<machine>/Makefile.am: Added new file
win_shortcuts.vsc.
2008-03-24 Andreas Boose <[email protected]>
* Version 1.22.9.
2008-02-26 Marco van den Heuvel <[email protected]>
* build/vms/build.sh, doc/OpenVMS-Howto.txt: Updated to
include the building for vax, alpha and ia64 vms.
2008-02-11 Marco van den Heuvel <[email protected]>
* build/Makefile.am, build/vms/build.sh, doc/Makefile.am,
doc/OpenVMS-Howto.txt: Added preliminary OpenVMS support.
2008-02-11 Andreas Matthies <[email protected]>
* data/c64/Makefile.am, win_shortcuts.vsc: Added new file.
2008-02-10 Christian Vogelgsang <[email protected]>
* configure.in: fix to make gtkglext query handle missing lib
2008-02-10 Christian Vogelgsang <[email protected]>
* build/macosx/build-*: updated to recent library versions
2008-02-08 Marco van den Heuvel <[email protected]>
* configure.in: Added initial nextstep/openstep support.
2008-02-04 Marco van den Heuvel <[email protected]>
* Makefile.am, configure.in: Added support for SkyOS.
2008-02-02 pottendo <[email protected]>
* data/fonts/Makefile.am (install): Create directory ~/.fonts
if not existing before installing.
2008-01-31 Fabrizio Gennari <[email protected]>
* configure.in: Do not fail if gtkglext is not present.
2008-01-31 pottendo <[email protected]>
* data/fonts/Makefile.am (install): Install CBM font in
${HOME}/.fonts and run `fc-cache'.
2008-01-27 Andreas Boose <[email protected]>
* Version 1.22.8.
2008-01-25 Marco van den Heuvel <[email protected]>
* Makefile.am, build/Makefile.am, build/qnx4/build.sh,
configure.in: Added qnx4 support.
2008-01-23 Marco van den Heuvel <[email protected]>
* Makefile.am, configure.in: Finalized the hpux support.
2008-01-20 Marco van den Heuvel <[email protected]>
* Makefile.am, configure.in: Added preliminary hpux support.
2008-01-18 Marco van den Heuvel <[email protected]>
* Makefile.am: Fixed the man and info directories for the
solaris, openserver and unixware binary distributions.
* configure.in: Fixed the detection of libXv and its header.
2008-01-12 Marco van den Heuvel <[email protected]>
* acinclude.m4: Added the pkg.m4 code.
2008-01-02 pottendo <[email protected]>
* doc/html/plain/NEWS: Updated.
* configure.in (HAVE_FULLSCREEN): New global macro to compile
conditional fullscreen support.
* doc/html/plain/BUGS: Updated.
* doc/openGLsync-howto.txt: Updated.
2008-01-02 Marco van den Heuvel <[email protected]>
* doc/html/plain/cbm_basic_tokens.txt: Updated with WSF and
game basic tokens.
2008-01-01 Marco van den Heuvel <[email protected]>
* README, doc/Readme.dos, doc/vice.texi: Updated '2007' to
'2008'.
2007-12-30 Andreas Boose <[email protected]>
* Version 1.22.7.
2007-12-28 Marco van den Heuvel <[email protected]>
* petcat.c: Added support for WS basic final.
2007-12-28 pottendo <[email protected]>
* configure.in: If openGL_sync is found also set
`USE_XF86_EXTENSIONS' as some X11 specifics are needed for
openGL.
(USE_XF86_EXTENSIONS): Removed DGA1, DGA2 checks.
2007-12-18 Marco van den Heuvel <[email protected]>
* configure.in: Added aros64 support and disabled netplay for
ppc-aros.
2007-12-09 Andreas Boose <[email protected]>
* Version 1.22.6.
2007-11-22 Marco van den Heuvel <[email protected]>
* configure.in: Fixed an -lICE check issue.
2007-11-08 Marco van den Heuvel <[email protected]>
* configure.in: Changed the M68K AmigaOS3 compile to use 68020
optimized code.
2007-11-04 Andreas Boose <[email protected]>
* Version 1.22.5.
2007-10-30 Christian Vogelgsang <[email protected]>
* build/macosx/build-vice-dist.sh: adapted to new Mac OS X
10.5
2007-10-21 Andreas Boose <[email protected]>
* Version 1.22.4.
* doc/Makefile.am: Added `Win32-Cygwin-HOWTO.txt' file
contributed by Chris Pressey.
2007-10-15 Marco van den Heuvel <[email protected]>
* configure.in: Changed the 'SYNC' keyword to 'VICE_SYNC' to
make the source compile ok on gentoo.
2007-09-16 Andreas Boose <[email protected]>
* Version 1.22.3.
2007-09-06 Marco van den Heuvel <[email protected]>
* README: Updated.
2007-09-02 Andreas Boose <[email protected]>
* Version 1.22.2.
2007-08-19 Andreas Boose <[email protected]>
* Version 1.22.1.
* configure.in: Define `UNSTABLE'.
2007-08-17 Marco van den Heuvel <[email protected]>
* Makefile.am, config.guess, configure.in: Added SCO
Openserver and Unixware support.
2007-08-05 Andreas Boose <[email protected]>
* Version 1.22.
* configure.in: Do not define `UNSTABLE'.
* README, vice.spec, doc/html/plain/BUGS, doc/vice.texi:
Updated.
2007-08-05 Christian Vogelgsang <[email protected]>
* doc/html/index.html: removed obsolete Mac patch
2007-08-04 Andreas Boose <[email protected]>
* Version 1.21.13.
* doc/html/plain/NEWS: Updated.
2007-08-02 Andreas Matthies <[email protected]>
* doc/html/index.html, doc/html/plain/NEWS: Some additions.
2007-07-29 Christian Vogelgsang <[email protected]>
* doc/html/macosx.html: updated for 1.22 release
2007-07-27 Christian Vogelgsang <[email protected]>
* build/macosx/build-vice-dist.sh: fixed lib refs in ppc and
non-ub compilation
2007-07-16 Andreas Boose <[email protected]>
* Version 1.21.12.
2007-07-15 Marco van den Heuvel <[email protected]>
* build/amigaos/build-vbcc.sh: Fixed.
* configure.in, config.sub: Added gcc warpos compile support.
2007-07-11 Marco van den Heuvel <[email protected]>
* doc/html/amigaos.html, doc/html/beos.html,
doc/html/index.html, doc/html/plain/NEWS,
doc/html/solaris.html, doc/vice.texi: Updated for the 1.22
release.
2007-07-10 Marco van den Heuvel <[email protected]>
* configure.in: Fixed some library and function detection
issues.
2007-07-01 Andreas Boose <[email protected]>
* Version 1.21.11.
2007-06-28 Marco van den Heuvel <[email protected]>
* configure.in: Added an extra check for the type/version of
the win32 prefered resource compile (wrc).
2007-06-17 Christian Vogelgsang <[email protected]>
* configure.in: added new cocoa directories
2007-06-10 Andreas Boose <[email protected]>
* Version 1.21.10.
2007-05-22 Marco van den Heuvel <[email protected]>
* configure.in: Added netplay support to Amiga OS3 and AROS
ports.
2007-05-20 Andreas Boose <[email protected]>
* Version 1.21.9.
2007-05-05 Andreas Boose <[email protected]>
* Version 1.21.8.
2007-04-29 Andreas Boose <[email protected]>
* Version 1.21.7.
* data/C128/x11_sym.vkm, data/C128/x11_pos.vkm,
data/C128/win_pos.vkm, data/C128/win_sym.vkm,
data/C128/osx_pos.vkm, data/C128/osx_sym.vkm,
data/C128/dos_pos.vkm, data/C128/dos_sym.vkm,
data/C128/beos_pos.vkm, data/C128/beos_sym.vkm,
data/C128/amiga_pos.vkm, data/C128/amiga_sym.vkm: Use C64
cursor keys in C64 mode (alternative keyboard mapping).
2007-04-29 Andreas Boose <[email protected]>
* Version 1.21.6.
2007-04-25 Christian Vogelgsang <[email protected]>
* Makefile.am: pass the UI type for the mac port to the
bindist script
* configure.in: added --with-cocoa switch and more Cocoa
specific code
* data/C128/Makefile.am, data/C128/osx_pos.vkm,
data/C128/osx_sym.vkm, data/C64/Makefile.am,
data/C64/osx_pos.vkm, data/C64/osx_sym.vkm:
added Max OS X native keymaps
* doc/Makefile.am: changed info line since old version breaks
my local make dist
2007-04-25 Marco van den Heuvel <[email protected]>
* configure.in: Fixed a problem with SYNC and netbsd joystick
support.
2007-04-22 Andreas Boose <[email protected]>
* Version 1.21.5.
2007-04-09 Andreas Boose <[email protected]>
* Version 1.21.4.
2007-04-02 Marco van den Heuvel <[email protected]>
* build/amigaos/build-vbcc.sh: Started the c128 2mhz mode
support.
2007-04-01 Andreas Boose <[email protected]>
* Version 1.21.3.
2007-03-23 Christian Vogelgsang <[email protected]>
* configure.in: added --disable-bundle switch and
MACOSX_BUNDLE define to disable application bundle creation on
Macs.
2007-03-22 Christian Vogelgsang <[email protected]>
* build/Makefile.am, build/macosx/build-ffmpeglame.h: added
builder script for FFMPEG and Lame.
* build/macosx/build-vice-dist.sh: new presets
* arch/unix/macosx/x11-launcher.sh: fixed typo in EMU selector
2007-03-22 Christian Vogelgsang <[email protected]>
* configure.in, src/Makefile.am: introduced xxx_LIBS per
module and emu_extlibs. link executables against minimal set
of required libs.
2007-03-22 Marco van den Heuvel <[email protected]>
* configure.in: Added sys/joystick.h header check, and changed
the preferred libdir and docdir for netbsd and freebsd.
* doc/Makefile.am, doc/html/Makefile.am: Changed the preferred
docdir for netbsd and freebsd.
2007-03-22 Marco van den Heuvel <[email protected]>
* Makefile.am, configure.in: Added 'use make bindist instead
of make install' message for platforms that don't use 'make
install'.
2007-03-19 Andreas Boose <[email protected]>
* Version 1.21.2.
2007-03-17 Andreas Boose <[email protected]>
* Version 1.21.1.
* configure.in: Define `UNSTABLE'.
Added missing `; then' operator to usb joystick detection.
* doc/html/Makefile.am: Added `macosx.html'.
2007-03-14 Marco van den Heuvel <[email protected]>
* AUTHORS: Added Christian to the list.
* Makefile.am: Added 'make bindist(zip)' functionality for the
riscos port.
* build/Makefile.am, build/riscos/build-cross.sh: Added riscos
cross compiler based build script.
* data/C128/Makefile.am, data/C128/ROdflt.vkm,
data/C64/Makefile.am, data/C64/ROdflt.vkm,
data/CBM-II/Makefile.am, data/CBM-II/ROdflt.vkm,
data/PET/Makefile.am, data/PET/RObusi.vkm,
data/PET/ROgrph.vkm, data/PLUS4/Makefile.am,
data/PLUS4/ROdflt.vkm, data/VIC20/Makefile.am,
data/VIC20/ROdflt.vkm: Added riscos specific .vkm files.
2007-03-12 Marco van den Heuvel <[email protected]>
* build/amigaos/build-vbcc.sh: Changed the names of the WarpOS
and PowerUP binary distributions.
* build/beos/ppc-build.sh: Fixed a typo.
* configure.in: Added extra usb lib/header checks.
2007-03-04 Andreas Boose <[email protected]>
* Version 1.21.
* configure.in: Do not define `UNSTABLE'.
2007-03-03 Andreas Boose <[email protected]>
* Version 1.20.24.
* doc/vice.texi: Fixed some syntax bugs.
* doc/html/plain/NEWS, README, vice.spec: Updated.
2007-03-03 Marco van den Heuvel <[email protected]>
* doc/html/plain/NEWS: Added a news item for the release of
1.21.
2007-03-02 Christian Vogelgsang <[email protected]>
* doc/html/index.html, doc/vice.texi: added myself to VICE
team
2007-03-02 Christian Vogelgsang <[email protected]>
* doc/html/index.html, doc/html/macosx.html: created new Mac
OS X download page with links for both X11 AW and Gtk+ version
* doc/html/plain/NEWS: updated with my contributions
* doc/ReadmeMacOSX.txt: added missing FFMPEG
2007-02-27 Marco van den Heuvel <[email protected]>
* doc/html/index.html, doc/vice.texi: Updated for the 1.21
release.
2007-02-25 Christian Vogelgsang <[email protected]>
* build/macosx/build-allext.sh,
build/macosx/build-ffmpeglame.sh,
build/macosx/build-inc.sh, build/macosx/build-vice-dist.sh:
added and integrated build of FFMpeg + Lame for Macs
2007-02-25 Christian Vogelgsang <[email protected]>
* configure.in: move SOUND_LIBS to LIBS for all ports
2007-02-25 Andreas Boose <[email protected]>
* Version 1.20.23.
2007-02-24 Marco van den Heuvel <[email protected]>
* Makefile.am: Added the 'make cleantrans' rule.
2007-02-24 Christian Vogelgsang <[email protected]>
* configure.in: fixed checks for unix ffmpeg detection
2007-02-21 Marco van den Heuvel <[email protected]>
* configure.in: Fixed a typo.
2007-02-21 Marco van den Heuvel <[email protected]>
* build/beos/ppc-build.sh: Added '-inclpaths nosys' to get
#include <config.h> function properly.
* build/minix3/build-package.sh: Updated to build from the
root or build directory.
* configure.in: Changed the behaviour of SOUND_LIBS for beos
and solaris to avoid build problems.
* doc/html/Makefile.am, doc/html/beos.html: Added new BeOS
ports page.
* doc/html/amigaos.html, doc/html/solaris.html: Updated for
the 1.21 release.
* doc/html/plain/NEWS: Updated with the things I was involved
in.
2007-02-11 Andreas Boose <[email protected]>
* Version 1.20.22.
2007-02-10 Marco van den Heuvel <[email protected]>
* build/amigaos/build-vbcc.sh: Added the new sound drivers.
* configure.in: Added checking for libmp3lame for mp3 sound
record support and fixed the amiga graphics headers check.
2007-02-05 Marco van den Heuvel <[email protected]>
* build/Makefile.am, build/amigaos/build-os4-native.sh,
configure.in: Added native AmigaOS4 compile support, based on
the suggestions provided by Peter Gordon
* build/amigaos/build-vbcc.sh: Added digimax support.
2007-02-03 Marco van den Heuvel <[email protected]>
* Makefile.am, build/Makefile.am, build/beos/ppc-build.sh,
configure.in: Added ppc-beos support.
2007-01-28 Andreas Boose <[email protected]>
* Version 1.20.21.
2007-01-23 Marco van den Heuvel <[email protected]>
* build/Makefile.am, build/amigaos/build-vbcc.sh: Added amiga
vbcc compiler support.
2007-01-07 Andreas Boose <[email protected]>
* Version 1.20.20.
2007-01-01 Marco van den Heuvel <[email protected]>
* README, doc/Readme.dos, doc/vice.texi: Changed the '2006'
year references to '2007'.
2006-12-31 pottendo <[email protected]>
* doc/openGLsync-howto.txt: Updated.
* configure.in: Added check for `glXWaitVideoSyncSGI'
* configure.in: Added check for XRandR as fullscreen device.
2006-12-25 pottendo <[email protected]>
* doc/openGLsync-howto.txt: New file.
* configure.in: Added intermediate solution for X11 vblank sync
support based on openGL. Enable currently with `--enable-vblank'
at configure time. Autodetection is still missing.
2006-12-24 Andreas Boose <[email protected]>
* Version 1.20.19.
2006-12-24 Christian Vogelgsang <[email protected]>
* doc/ReadmeMacOSX.txt: updated Mac OS X port documentation.
2006-12-10 Christian Vogelgsang <[email protected]>
* build/macosx/build-vice-dist.sh: fixes for gtk bundling on
mac. changed to bundling a single mac app with all emulators
inside. added command line launcher for emulators.
2006-12-03 Andreas Boose <[email protected]>
* Version 1.20.18.
2006-11-29 Christian Vogelgsang <[email protected]>
* build/macosx/build-vice-dist.sh: correctly handle and embed
dynamic libs in mac os x bundling process
2006-11-27 Marco van den Heuvel <[email protected]>
* configure.in: Added a check for the inttypes.h include.
2006-11-17 Christian Vogelgsang <[email protected]>
* build/Makefile.am: added new mac build scripts
* build/macosx/build*.sh: new modularized mac binary
distribution tools with helper scripts for the required
external libraries (including gtk+ and libpcap/libnet for
ethernet support)
2006-11-15 Marco van den Heuvel <[email protected]>
* configure.in: Got rid of the sidcart directory.
2006-11-13 Andreas Boose <[email protected]>
* Version 1.20.17.
2006-11-12 Christian Vogelgsang <[email protected]>
* configure.in: extended tests for gnome-ui to compile cleanly
on mac os x.
2006-11-06 Marco van den Heuvel <[email protected]>
* configure.in: Added sidcart support.
2006-11-05 Andreas Boose <[email protected]>
* Version 1.20.16.
2006-10-22 Andreas Boose <[email protected]>
* Version 1.20.15.
* configure.in: Added new subdirectories.
2006-10-22 Christian Vogelgsang <[email protected]>
* configure.in: fetch includes for --with-gnomeui from gtk+2.0
package (same as for the libs)
2006-10-21 Andreas Boose <[email protected]>
* Version 1.20.14.
2006-10-19 Andreas Boose <[email protected]>
* Version 1.20.13.
2006-10-16 Andreas Boose <[email protected]>
* Version 1.20.12.
2006-10-15 Andreas Boose <[email protected]>
* Version 1.20.11.
* doc/html/plain/BUGS: Updated.
2006-10-15 Marco van den Heuvel <[email protected]>
* configure.in: Added automatic generation of the intl header
files.
2006-10-14 Andreas Boose <[email protected]>
* Version 1.20.10.
2006-10-01 Andreas Boose <[email protected]>
* Version 1.20.9.
2006-09-30 Andreas Boose <[email protected]>
* Version 1.20.8.
* build/Makefile.am: Removed `mingw32/linux-cross.sh'.
2006-09-25 Andreas Boose <[email protected]>
* Version 1.20.7.
2006-09-23 Andreas Boose <[email protected]>
* Version 1.20.6.
2006-09-17 Andreas Boose <[email protected]>
* Version 1.20.5.
2006-09-16 Andreas Boose <[email protected]>
* Version 1.20.4.
* build/mingw32/build-cross.sh: New file.
* build/Makefile.am: Added new file.
2006-09-10 Andreas Boose <[email protected]>
* Version 1.20.3.
2006-09-09 Andreas Boose <[email protected]>
* Version 1.20.2.
* config.guess, config.sub, depcomp, install-sh, missing,
mkinstalldirs: Updated to automake 1.9.
2006-09-09 pottendo <[email protected]>
* configure.in (gnomeui): depend only on gtk+-2.0 as
libgnomeui is marked to be deprecated.
2006-09-09 Marco van den Heuvel <[email protected]>
* doc/html/amigaos.html, doc/html/index.html,
doc/html/solaris.html: Updated.
2006-09-03 Andreas Boose <[email protected]>
* Version 1.20.1.
* configure.in: Define `UNSTABLE'.
Do not add `-Wstrict-prototypes' to `CXXFLAGS'.
* doc/html/index.html: Added link to BeOS patch.
2006-09-02 pottendo <[email protected]>
* configure.in: (ALL_LINGUAS) added hu.
2006-08-27 Andreas Boose <[email protected]>
* Version 1.20.
* configure.in: Do not define `UNSTABLE'.
* doc/vice.texi, doc/html/index.html, doc/html/amigaos.html,
doc/html/solaris.html: Fixed some minor issues.
2006-08-26 Andreas Boose <[email protected]>
* Version 1.19.28.
2006-08-21 Christian Vogelgsang <[email protected]>
* build/macosx/make-ub.sh: Added support to cross-compile on a
PowerPC platform
2006-08-19 Marco van den Heuvel <[email protected]>
* doc/vice.texi: Updated.
2006-08-17 Marco van den Heuvel <[email protected]>
* doc/html/plain/NEWS: Cosmetic fix.
2006-08-14 Andreas Boose <[email protected]>