-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.5
9861 lines (6872 loc) · 325 KB
/
ChangeLog.5
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
2006-08-27 Andreas Boose <viceteam@t-online.de>
* Version 1.20.
2006-08-26 Andreas Boose <viceteam@t-online.de>
* Version 1.19.28.
* keyboard.c (keyboard_parse_keymap): Added parser fix written
by Dirk Jagdmann.
2006-08-26 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_breakpoint.c: Output the memspace if the user
requests to see all breakpoints ("break" command without
arguments in the monitor).
2006-08-26 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/make-bindist.sh, arch/beos/make-bindist.sh,
arch/msdos/make-bindist.sh, arch/unix/qnx/make-bindist.sh,
arch/unix/solaris/make-bindist.sh,
arch/win32/make-bindist.sh: Added executable files checking.
2006-08-24 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* arch/win32/console.c: Fixed a type conflict in console_out()
which prevented compiling the Windows platform with MingW.
2006-08-21 Christian Vogelgsang <chris@vogelgsang.org>
* arch/unix/macosx/make-bindist.sh,
arch/unix/gui/uicommands.c, arch/unix/x11/ui-resources.c:
HTTPBrowserCommand changed to open(1) on Macs. HTML docs are
searched in application bundle on Macs. bindist embeds HTML
docs in each app bundle.
2006-08-21 Christian Vogelgsang <chris@vogelgsang.org>
* arch/unix/macosx/make-bindist.sh: Added support to
cross-compile on a PowerPC platform
* arch/unix/joy.c: Fixed joystick define.
2006-08-20 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/archdep.c, arch/amigaos/video.c: Debugged.
* arch/amigaos/ahi.c, arch/amigaos/intl.c,
arch/amigaos/joyai.c, arch/amigaos/mousedrv.c,
arch/amigaos/mui/filereq.c, arch/amigaos/timer.c,
arch/amigaos/uiapi.c, c64/c64io.c: Changed some calls to use
the functions provided in the lib.c source file.
* lib.c, lib.h: Enhanced to show the file and line of the
leaking allocation.
2006-08-19 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/Makefile.am, arch/amigaos/make-bindist.sh,
arch/amigaos/x128ns.c, arch/amigaos/x64ns.c,
arch/amigaos/xcbm2ns.c, arch/amigaos/xpetns.c,
arch/amigaos/xplus4ns.c, arch/amigaos/xvicns.c: Added 'no
sound' launchers.
* info.c: Updated.
2006-08-17 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/make-bindist.sh, arch/os2/makedist.cmd: Updated
to put cartconv.txt in the binary distribution.
2006-08-14 Andreas Boose <viceteam@t-online.de>
* Version 1.19.27.
2006-08-07 Marco van den Heuvel <blackystardust68@yahoo.com>
* info.c: Updated.
2006-08-06 Andreas Boose <viceteam@t-online.de>
* Version 1.19.26.
* arch/unix/Makefile.am: Changed back to old `SUBDIRS'
definition as using `ARCH_EXTRA_SUBDIR' breaks `make dist'.
2006-08-03 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_command.c: Added help texts for commands;
commented out commands which are not yet implemented.
2006-08-01 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_memory.c: When outputting hex characters in
mon_memory_display(), make sure the last line has the same
length as every other line before. This was not the case if
the last line contained less bytes than the others before; in
this case, the printable characters on the right were shifted
to the left.
2006-07-31 Christian Vogelgsang <chris@vogelgsang.org>
* arch/unix/Makefile.am, arch/unix/macosx/Makefile.am:
Added new extra arch library for Mac OS X.
* arch/unix/joy.c, arch/unix/macosx/joy.c,
arch/unix/macosx/joy.h: Removed Mac Joystick code from
unix/joy.c and created new Mac Joystick code in macosx/joy.*.
2006-07-31 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/unix/Makefile.am, arch/unix/solaris/convertprototype.c,
arch/unix/solaris/make-bindist.sh,
arch/unix/solaris/make_package.pl: Added automatic solaris
binary package creation support.
* arch/unix/qnx/getlibs.c: Fixed a typo.
2006-07-29 Marco van den Heuvel <blackystardust68@yahoo.com>
* Makefile.am: Added the including of the intl-libs.
* arch/amigaos/Makefile.am, arch/amigaos/screen-shot.c,
arch/amigaos/screen-shot.h, arch/amigaos/screenshot.c,
arch/amigaos/screenshot.h: Renamed screenshot.* to
screen-shot.*.
* arch/amigaos/README.AMIGA: Updated.
* arch/amigaos/amigamain.c, arch/amigaos/archdep.c,
arch/amigaos/signals.c, c1541.c, cartconv.c,
gfxoutputdrv/pngdrv.c, ioutil.c, zfile.c: Removed old aros
header defines.
* arch/amigaos/make-bindist.sh, arch/beos/make-bindist.sh,
arch/msdos/make-bindist.sh, arch/unix/gp2x/make-bindist.sh,
arch/unix/solaris/make-bindist.sh,
arch/win32/make-bindist.sh: Updated for out-of-source
installation.
* arch/amigaos/mui/mui.h, arch/amigaos/mui/uiacia.c,
arch/amigaos/mui/uic64_256k.c,
arch/amigaos/mui/uicbm2settings.c,
arch/amigaos/mui/uidatasette.c,
arch/amigaos/mui/uidrivec64vic20.c,
arch/amigaos/mui/uidrivepetcbm2.c,
arch/amigaos/mui/uidriveplus4.c, arch/amigaos/mui/uigeoram.c,
arch/amigaos/mui/uipetreu.c, arch/amigaos/mui/uiplus60k.c,
arch/amigaos/mui/uiram.c, arch/amigaos/mui/uiramcart.c,
arch/amigaos/mui/uireu.c, arch/amigaos/mui/uirs232user.c,
arch/amigaos/mui/uisid.c, arch/amigaos/mui/uisound.c,
arch/amigaos/uiapi.c, arch/amigaos/uic64cart.c,
arch/amigaos/uicmdline.c, arch/amigaos/vic20ui.c,
arch/amigaos/video.c: Fixed some variables.
* arch/msdos/tuimenu.c: Added a break statement to fix a
warning.
* arch/os2/dialogs/menubar.c: Fixed the petreu menu items.
* arch/os2/makedist.cmd, arch/os2/vac++/Makefile.am,
arch/os2/vac++/cartconv.ICC: Added cartconv.
* arch/os2/vac++/incl/c64cart.icc,
arch/os2/vac++/incl/gfxoutputdrv.icc,
arch/os2/vac++/incl/pet.icc, arch/os2/vac++/incl/plus4.icc:
Added previously missing source files.
* arch/unix/Makefile.am: Added minix-3.x descr file and qnx
package creation helper programs.
* arch/unix/minix/descr: Added minix-3 descr file.
* arch/unix/qnx/getlibs.c, arch/unix/qnx/getsize.c: Added qnx
package creation helper programs.
* arch/unix/qnx/make-bindist.sh: Added package creation when
bindistzip is used.
* arch/unix/types.h, arch/unix/x11/vidmode.c,
sounddrv/soundsun.c: NetBSD fixes.
* monitor/mon_util.c: Changed a C++ style comment to a C style
comment.
2006-07-28 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* console.h: console_t has new member console_cannot output
now;
* arch/win32/uimon.c: Handle console_cannot_output of
console_t for WIN32 port
* arch/win32/console.c: Optimization in mon_out(): Handle all
printable characters in one function call (instead of issuing
many calls to mon_out_character())
* monitor/mon_util.c: Only buffer output if
console_cannot_output of console_t is != 0.
2006-07-24 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* arch/win32/res.rc: Make sure the combobox for editing the
external paletted scrolls horizontally (CBS_AUTOHSCROLL), so
that the user can enter long paths;
* arch/win32/rescommon.h: Added define for CBS_AUTOHSCROLL;
* video/video-color.c: In video_color_update_palette(), test
if the external palette did load; if not, return with an
error. Both issues reported by Martin Pils.
2006-07-22 Andreas Boose <viceteam@t-online.de>
* Version 1.19.25.
2006-07-22 pottendo <pottendo@utanet.at>
* arch/unix/x11/gnome/x11ui.c (ui_display_drive_led): use colors
for drive leds from color array respecting the pwm value.
(drive_led_on_green_pixels[], drive_led_on_red_pixels[]): new
global vars to hold color shadings.
(build_file_selector): Added `show hidden files' checkbox.
* arch/unix/x11/gnome/uicolor.c (uicolor_alloc_system_colors):
allocate 16 shadings of red and green drive led colors.
* arch/unix/x11/gnome/uinetplay.c: Added GUI Elements for netplay
controls.
* arch/unix/x11/gnome/uiscreenshot.c (build_screenshot_dialog):
Changed Y-size of spin button widgets.
2006-07-14 Christian Vogelgsang <chris@vogelgsang.org>
* arch/unix/macosx/make-bindist.sh: added binary format check.
name extension in distribution archive is now "ub", "i386" or
"ppc" depending on binary type.
2006-07-11 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/make-bindist.sh,
arch/unix/gp2x/make-bindist.sh,
arch/unix/qnx/make-bindist.sh,
arch/unix/solaris/make-bindist.sh: Updated to not make the
binary distribution directory/archive outside the VICE
directory.
2006-07-10 Andreas Boose <viceteam@t-online.de>
* Version 1.19.24.
* arch/unix/Makefile.am: Added the macox files.
* arch/unix/gp2x/c128ui.c, arch/unix/gp2x/c64ui.c,
arch/unix/gp2x/cbm2ui.c, arch/unix/gp2x/petui.c,
arch/unix/gp2x/vic20ui.c, arch/unix/console.c: Added missing
includes.
* arch/unix/gp2x/make-bindist.sh: Changed archive name and do
not write anything outsite the vice directory.
* arch/unix/macosx/make-bindist.sh: Changed archive name.
* arch/unix/gp2x/make-bindist.sh, arch/win32/make-bindist.sh,
arch/beos/make-bindist.sh, arch/msdos/make-bindist.sh: Removed
temporary directory on target `bindistzip'.
* monitor/mon_lex.l: Defined `YY_ALWAYS_INTERACTIVE' to stop
it using non-C standard function.
2006-07-10 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/unix/gp2x/Makefile.am, arch/unix/gp2x/c128ui.c,
arch/unix/gp2x/c64ui.c, arch/unix/gp2x/cbm2ui.c,
arch/unix/gp2x/petui.c, arch/unix/gp2x/plus4ui.c,
arch/unix/gp2x/prefs_gp2x.c, arch/unix/gp2x/prefs_gp2x.h,
arch/unix/gp2x/ui_gp2x.c, arch/unix/gp2x/uimon.c,
arch/unix/gp2x/uisound.h, arch/unix/gp2x/vic20ui.c,
arch/unix/gp2x/video.c, arch/unix/gp2x/videoarch.h,
arch/unix/gp2x/vkeyboard_gp2x.c,
arch/unix/gp2x/vkeyboard_gp2x.h,
arch/unix/gp2x/vsidui.c: Seperated the c64/pet/vic20...etc ui
elements so that no unneeded objects get linked.
* arch/unix/gp2x/make-bindist.sh: Updated the script to the
'new' place of the port in the source tree.
* cartconv.c: Changed the carttype char to signed.
* cbmdos.c: Added a cast to get rid of a warning.
* vdc/vdc.c: Fixed to only provide for the creation of the
vicii screen for the gp2x port (gp2x port can only handle one
screen).
2006-07-10 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* sound.c: In sound_device_num(), max is unsigned now, so a
warning w.r.t. a signed/unsigned comparison in the for() loop
is avoided.
2006-07-09 Christian Vogelgsang <chris@vogelgsang.org>
* arch/unix/archdep.c: On Mac OS X search ROMs inside of
bundle's resources.
* arch/unix/macosx/make-bindist.sh,
arch/unix/macosx/Info.plist, arch/unix/macosx/VICE.icns:
Added bin dist script for Mac OS X. Creates Applications
bundles including Icon and creates distribution disk image.
2006-07-09 Andreas Boose <viceteam@t-online.de>
* Version 1.19.23.
* sound.c, sound.h (sound_device_num, sound_device_name): New
functions.
* arch/unix/gui/uisound.c, arch/unix/gui/uisound.h
(uisound_menu_create, uisound_menu_shutdown): New functions.
Added sound driver name menu.
* arch/unix/gui/c64ui.c, arch/unix/gui/c128ui.c,
arch/unix/gui/vic20ui.c, arch/unix/gui/petui.c,
arch/unix/gui/plus4ui.c, arch/unix/gui/cbm2ui.c: Init and
shutdown sound menus.
2006-07-07 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_file.c: If no address is given with the load
command, respect the current device (comp, drive8, drive9,
...).
* monitor/mon_command.c: fixed a typo in the help text; added
help for <cond>, so that it can be used by users now; fixed
the help for the load command (cf. the change for mon_file.c
above)
* uimon.h, arch/amigaos/uimon.c, arch/beos/uimon.c,
arch/msdos/uimon.c, arch/os2/uimon.c, arch/riscos/uimon.c,
arch/unix/gui/uimon.c, arch/win32/uimon.c: Now, uimon_out()
gets a static buffer as argument, not printf() style data
anymore. It was unnecessary, since this functionality is
already there.
* arch/win32/console.c: console_out() uses lib_mvsprintf()
instead of vsprintf() with a static buffer now; this prevents
a buffer overflow; make sure all character are output when
exiting the console (for example, with "x" in the monitor);
* arch/win32/monitor.dsp: added mon_lex.l, mon_parse.y as
files.
* monitor/mon_lex.l: Make sure prefixes 8:, 9:, 10:, 11:, and
C: are valid in conditions, too.
* monitor/mon_util.c: Added buffering for the outputs.
Currently, this is done with a fixed buffer size of 10000
byte; later, this will be done dynamically with info from the
console. This bufféring fixes the problems with the "trace"
and "watch" monitor commands, where the output did not appear
at all.
2006-07-07 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* diskimage.h, src/diskimage/fsimage-probe.c: Accept D71 files
with error info, too. Additionally, make sure the error info
is deleted whenever another image is attached.
* diskimage/fsimage.c: Allocate MAX_BLOCKS_ANY instead of
MAX_BLOCKS_1541 for the error info.
2006-07-05 Andreas Boose <viceteam@t-online.de>
* Version 1.19.22.
* arch/unix/uiacia1.h, arch/unix/uiattach.h,
arch/unix/uic64_256k.h, arch/unix/uic64cart.h,
arch/unix/uicartridge.h, arch/unix/uicommands.h,
arch/unix/uicrtc.h, arch/unix/uidatasette.h,
arch/unix/uidrivec128.h, arch/unix/uidriveiec.h,
arch/unix/uidriveplus4.h, arch/unix/uidrive.h,
arch/unix/uidrivec64vic20.h, arch/unix/uidrivepetcbm2.h,
arch/unix/uiedisk.h, arch/unix/uifliplist.h,
arch/unix/uigeoram.h, arch/unix/uihotkey.h,
arch/unix/uiide64.h, arch/unix/uijoystick2.h,
arch/unix/uikeyboard.h, arch/unix/uilib.h,
arch/unix/uinetplay.h, arch/unix/uipalemu.h,
arch/unix/uipalette.h, arch/unix/uiperipheral.h,
arch/unix/uiperipheraliec.h, arch/unix/uiperipheralieee.h,
arch/unix/uipetreu.h, arch/unix/uiplus256k.h,
arch/unix/uiplus60k.h, arch/unix/uiprinter.h,
arch/unix/uiprinteriec.h, arch/unix/uiprinteriecplus4.h,
arch/unix/uiprinterieee.h, arch/unix/uiramcart.h,
arch/unix/uireu.h, arch/unix/uiromset.h, arch/unix/uirs232.h,
arch/unix/uirs232c64c128.h, arch/unix/uirs232petplus4cbm2.h,
arch/unix/uirs232user.h, arch/unix/uiscreenshot.h,
arch/unix/uisettings.h, arch/unix/uisid.h,
arch/unix/uisnapshot.h, arch/unix/uisound.h,
arch/unix/uited.h, arch/unix/uitfe.h, arch/unix/uivdc.h,
arch/unix/uivic.h, arch/unix/uivicii.h: Moved to `gui'
directory.
* arch/unix/Makefile.am, arch/unix/gui/Makefile.am: Updated.
* arch/unix/x11/xaw/Makefile.am,
arch/unix/x11/gnome/Makefile.am, arch/unix/x11/Makefile.am:
Updated include paths.
* arch/unix/gui/uimouse.c, arch/unix/gui/uimouse.h: New files.
* arch/unix/gui/c64ui.c, arch/unix/gui/c128ui.c: Moved mouse
UI to separate file.
2006-07-04 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/unix/gp2x/Makefile.am, arch/unix/gp2x/icon.h,
arch/unix/gp2x/ui_gp2x.c: More cleanup.
2006-07-04 Andreas Boose <viceteam@t-online.de>
* Version 1.19.21.
* arch/unix/joy.c: Added USB joystick patch by Christian
Vogelgsang.
* arch/unix/joy_mac.c: New file written by Christian
Vogelgsang.
* arch/unix/Makefile.am: Added new file.
* arch/win32/make-bindist.sh, arch/msdos/make-bindist.sh,
arch/beos/make-bindist.sh: Create archive within the VICE
directory.
2006-07-03 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/intl.c: Corrected the italian translations as
provided by Eliseo Bianchi <e.bianchi@libero.it>.
2006-07-03 Andreas Boose <viceteam@t-online.de>
* Version 1.19.20.
* resid/sid.cc (SID::write): Increased bus ttl value.
* attach.c (detach_disk_image_and_free): Fixed crash if there
is a shutdown during initialization.
2006-07-02 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/unix/gp2x/ui_gp2x.c, arch/unix/gp2x/vsidui.c: Did some
more clean-up to the gp2x port.
2006-07-01 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/unix/gp2x/Makefile.am, arch/unix/gp2x/c128ui.c,
arch/unix/gp2x/c64ui.c, arch/unix/gp2x/cbm2ui.c,
arch/unix/gp2x/petui.c, arch/unix/gp2x/petui.c,
arch/unix/gp2x/plus4ui.c, arch/unix/gp2x/rs232.c,
arch/unix/gp2x/ui.c, arch/unix/gp2x/ui_gp2x.c,
arch/unix/gp2x/uiacia1.c, arch/unix/gp2x/uiattach.c,
arch/unix/gp2x/uic64_256k.c, arch/unix/gp2x/uic64cart.c,
arch/unix/gp2x/uicommands.c, arch/unix/gp2x/uicrtc.c,
arch/unix/gp2x/uidatasette.c, arch/unix/gp2x/uidrive.c,
arch/unix/gp2x/uidrivec128.c, arch/unix/gp2x/uidrivec128.c,
arch/unix/gp2x/uidrivec64vic20.c, arch/unix/gp2x/uidriveiec.c,
arch/unix/gp2x/uidrivepetcbm2.c,
arch/unix/gp2x/uidriveplus4.c,
arch/unix/gp2x/uifliplist.c, arch/unix/gp2x/uigeoram.c,
arch/unix/gp2x/uiide64.c, arch/unix/gp2x/uijoystick2.c,
arch/unix/gp2x/uikeyboard.c, arch/unix/gp2x/uilib.c,
arch/unix/gp2x/uilib.h, arch/unix/gp2x/uipalemu.c,
arch/unix/gp2x/uipalette.c, arch/unix/gp2x/uiperipheral.c,
arch/unix/gp2x/uiperipheraliec.c,
arch/unix/gp2x/uiperipheralieee.c, arch/unix/gp2x/uipetreu.c,
arch/unix/gp2x/uiplus256k.c, arch/unix/gp2x/uiplus60k.c,
arch/unix/gp2x/uiprinter.c, arch/unix/gp2x/uiprinteriec.c,
arch/unix/gp2x/uiprinteriecplus4.c,
arch/unix/gp2x/uiprinterieee.c, arch/unix/gp2x/uiramcart.c,
arch/unix/gp2x/uiramcart.c, arch/unix/gp2x/uireu.c,
arch/unix/gp2x/uiromset.c, arch/unix/gp2x/uirs232.c,
arch/unix/gp2x/uirs232c64c128.c,
arch/unix/gp2x/uirs232petplus4cbm2.c,
arch/unix/gp2x/uirs232user.c, arch/unix/gp2x/uisettings.c,
arch/unix/gp2x/uisid.c, arch/unix/gp2x/uisound.c,
arch/unix/gp2x/uited.c, arch/unix/gp2x/uivdc.c,
arch/unix/gp2x/uivic.c, arch/unix/gp2x/uivicii.c,
arch/unix/gp2x/vic20ui.c, arch/unix/gp2x/vsidui.c: Got rid of
the not needed unix ui of the gp2x port.
2006-06-26 Andreas Boose <viceteam@t-online.de>
* Version 1.19.19.
* arch/unix/gp2x/*: New directory, moved everything from
`arch/gp2x' here.
* arch/unix/Makefile.am, arch/unix/videoarch.h,
arch/unix/uimenu.h: Added gp2x directory.
* arch/unix/console.c, arch/unix/archdep.c,
arch/unix/vsyncarch.c, arch/unix/joy.c: Adopted to gp2x.
* arch/unix/gp2x/types.h, arch/unix/gp2x/console.c,
arch/unix/gp2x/xcbm2_stubs.c, arch/unix/gp2x/xplus4_stubs.c,
arch/unix/gp2x/xvic_stubs.c, arch/unix/gp2x/uivdc.h,
arch/unix/gp2x/uivic.h, arch/unix/gp2x/uisid.h,
arch/unix/gp2x/uivicii.h, arch/unix/gp2x/uisound.h,
arch/unix/gp2x/uited.h, arch/unix/gp2x/uisettings.h,
arch/unix/gp2x/uirs232petplus4cbm2.h,
arch/unix/gp2x/uirs232c64c128.h, arch/unix/gp2x/uirs232user.h,
arch/unix/gp2x/uiromset.h, arch/unix/gp2x/uireu.h,
arch/unix/gp2x/uiramcart.h, arch/unix/gp2x/uiprinterieee.h,
arch/unix/gp2x/uiprinteriecplus4.h,
arch/unix/gp2x/uiprinteriec.h, arch/unix/gp2x/uiprinter.h,
arch/unix/gp2x/uiplus60k.h, arch/unix/gp2x/uiplus256k.h,
arch/unix/gp2x/uipetreu.h, arch/unix/gp2x/uiperipheralieee.h,
arch/unix/gp2x/uiperipheraliec.h,
arch/unix/gp2x/uiperipheral.h, arch/unix/gp2x/uipalette.h,
arch/unix/gp2x/uipalemu.h, arch/unix/gp2x/uiattach.h,
arch/unix/gp2x/uic64_256k.h, arch/unix/gp2x/uic64cart.h,
arch/unix/gp2x/uicrtc.h, arch/unix/gp2x/uidatasette.h,
arch/unix/gp2x/uidrive.h, arch/unix/gp2x/uidrivec128.h,
arch/unix/gp2x/uidrivec64vic20.h, arch/unix/gp2x/uidriveiec.h,
arch/unix/gp2x/uidrivepetcbm2.h,
arch/unix/gp2x/uidriveplus4.h, arch/unix/gp2x/uiacia1.h,
arch/unix/gp2x/uifliplist.h, arch/unix/gp2x/uigeoram.h,
arch/unix/gp2x/uiide64.h, arch/unix/gp2x/uikeyboard.h,
arch/unix/gp2x/uirs232.h, arch/unix/gp2x/uijoystick2.h,
arch/unix/gp2x/gp2xmain.c, arch/unix/gp2x/archdep.h,
arch/unix/gp2x/archdep.c, arch/unix/gp2x/vsyncarch.c,
arch/unix/gp2x/coproc.h, arch/unix/gp2x/coproc.c,
arch/unix/gp2x/blockdev.c, arch/unix/gp2x/ffmpeglib.c,
arch/unix/gp2x/joy.c, arch/unix/gp2x/joy.h,
arch/unix/gp2x/kbd.h, arch/unix/gp2x/joy_usb.c,
arch/unix/gp2x/mousedrv.c, arch/unix/gp2x/mousedrv.h,
arch/unix/gp2x/signals.c, arch/unix/gp2x/uiscreenshot.h,
arch/unix/gp2x/uicartridge.h, arch/unix/gp2x/uisnapshot.h,
arch/unix/gp2x/uihotkey.h, arch/unix/gp2x/uiedisk.h,
arch/unix/gp2x/ui.h, arch/unix/gp2x/vsiduigp2x.h: Removed.
* arch/unix/gp2x/Makefile.am: Updated.
* arch/unix/gp2x/prefs_gp2x.c: Commented out usage of
cartridge functions as the UI is not separated enough.
* arch/unix/gp2x/video_gp2x.c: Renamed.
* arch/unix/gp2x/video_gp2x.h: Moved to `videoarch.h'.
* arch/unix/gp2x/prefs_gp2x.c, arch/unix/gp2x/vsidui.c: Fixed
includes.
2006-06-25 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/gp2x/Char_ROM.h, arch/gp2x/Makefile.am,
arch/gp2x/archdep.c, arch/gp2x/archdep.h,
arch/gp2x/audio_gp2x.c, arch/gp2x/audio_gp2x.h,
arch/gp2x/blockdev.c, arch/gp2x/c128ui.c, arch/gp2x/c64ui.c,
arch/gp2x/cbm2ui.c, arch/gp2x/console.c, arch/gp2x/coproc.c,
arch/gp2x/coproc.h, arch/gp2x/ffmpeglib.c,
arch/gp2x/fullscreenarch.h, arch/gp2x/gp2xmain.c,
arch/gp2x/gp2xui.h, arch/gp2x/gpe-files/vsid.gpe,
arch/gp2x/gpe-files/x128.gpe, arch/gp2x/gpe-files/x64.gpe,
arch/gp2x/gpe-files/xcbm2.gpe, arch/gp2x/gpe-files/xpet.gpe,
arch/gp2x/gpe-files/xplus4.gpe, arch/gp2x/gpe-files/xvic.gpe,
arch/gp2x/icon.h, arch/gp2x/input_gp2x.c,
arch/gp2x/input_gp2x.h, arch/gp2x/joy.c, arch/gp2x/joy.h,
arch/gp2x/joy_usb.c, arch/gp2x/joy_usb.c, arch/gp2x/kbd.h,
arch/gp2x/make-bindist.sh, arch/gp2x/minimal.c,
arch/gp2x/minimal.h, arch/gp2x/minimal_940t.h,
arch/gp2x/mousedrv.c, arch/gp2x/mousedrv.h, arch/gp2x/petui.c,
arch/gp2x/plus4ui.c, arch/gp2x/prefs_gp2x.c,
arch/gp2x/prefs_gp2x.h, arch/gp2x/rs232.c,
arch/gp2x/signals.c, arch/gp2x/types.h, arch/gp2x/ui.c,
arch/gp2x/ui.h, arch/gp2x/ui_gp2x.c, arch/gp2x/ui_gp2x.h,
arch/gp2x/uiacia1.c, arch/gp2x/uiacia1.h, arch/gp2x/uiarch.h,
arch/gp2x/uiattach.c, arch/gp2x/uiattach.h,
arch/gp2x/uic64_256k.c, arch/gp2x/uic64_256k.h,
arch/gp2x/uic64cart.c, arch/gp2x/uic64cart.h,
arch/gp2x/uicartridge.h, arch/gp2x/uicmdline.c,
arch/gp2x/uicommands.c, arch/gp2x/uicommands.h,
arch/gp2x/uicrtc.c, arch/gp2x/uicrtc.h,
arch/gp2x/uidatasette.c, arch/gp2x/uidatasette.h,
arch/gp2x/uidrive.c, arch/gp2x/uidrive.h,
arch/gp2x/uidrivec128.c, arch/gp2x/uidrivec128.h,
arch/gp2x/uidrivec64vic20.c, arch/gp2x/uidrivec64vic20.h,
arch/gp2x/uidriveiec.c, arch/gp2x/uidriveiec.h,
arch/gp2x/uidrivepetcbm2.c, arch/gp2x/uidrivepetcbm2.h,
arch/gp2x/uidriveplus4.c, arch/gp2x/uidriveplus4.h,
arch/gp2x/uiedisk.h, arch/gp2x/uifliplist.c,
arch/gp2x/uifliplist.h, arch/gp2x/uigeoram.c,
arch/gp2x/uigeoram.h, arch/gp2x/uihotkey.h,
arch/gp2x/uiide64.c, arch/gp2x/uiide64.h,
arch/gp2x/uijoystick2.c, arch/gp2x/uijoystick2.h,
arch/gp2x/uikeyboard.c, arch/gp2x/uikeyboard.h,
arch/gp2x/uilib.c, arch/gp2x/uilib.h, arch/gp2x/uimenu.h,
arch/gp2x/uimon.c, arch/gp2x/uipalemu.c, arch/gp2x/uipalemu.h,
arch/gp2x/uipalette.c, arch/gp2x/uipalette.h,
arch/gp2x/uiperipheral.c, arch/gp2x/uiperipheral.h,
arch/gp2x/uiperipheraliec.c, arch/gp2x/uiperipheraliec.h,
arch/gp2x/uiperipheralieee.c, arch/gp2x/uiperipheralieee.h,
arch/gp2x/uipetreu.c, arch/gp2x/uipetreu.h,
arch/gp2x/uiplus256k.c, arch/gp2x/uiplus256k.h,
arch/gp2x/uiplus60k.c, arch/gp2x/uiplus60k.h,
arch/gp2x/uiprinter.c, arch/gp2x/uiprinter.h,
arch/gp2x/uiprinteriec.c, arch/gp2x/uiprinteriec.h,
arch/gp2x/uiprinteriecplus4.c, arch/gp2x/uiprinteriecplus4.h,
arch/gp2x/uiprinterieee.c, arch/gp2x/uiprinterieee.h,
arch/gp2x/uiramcart.c, arch/gp2x/uiramcart.h,
arch/gp2x/uireu.c, arch/gp2x/uireu.h, arch/gp2x/uiromset.c,
arch/gp2x/uiromset.h, arch/gp2x/uirs232.c,
arch/gp2x/uirs232.h, arch/gp2x/uirs232c64c128.c,
arch/gp2x/uirs232c64c128.h, arch/gp2x/uirs232petplus4cbm2.c,
arch/gp2x/uirs232petplus4cbm2.h, arch/gp2x/uirs232user.c,
arch/gp2x/uirs232user.h, arch/gp2x/uiscreenshot.h,
arch/gp2x/uisettings.c, arch/gp2x/uisettings.h,
arch/gp2x/uisid.c, arch/gp2x/uisid.h, arch/gp2x/uisnapshot.h,
arch/gp2x/uisound.c, arch/gp2x/uisound.h, arch/gp2x/uited.c,
arch/gp2x/uited.h, arch/gp2x/uitext_gp2x.c,
arch/gp2x/uitext_gp2x.h, arch/gp2x/uivdc.c, arch/gp2x/uivdc.h,
arch/gp2x/uivic.c, arch/gp2x/uivic.h, arch/gp2x/uivicii.c,
arch/gp2x/uivicii.h, arch/gp2x/vic20ui.c,
arch/gp2x/video_gp2x.c, arch/gp2x/video_gp2x.h,
arch/gp2x/videoarch.h, arch/gp2x/vkeyboard_gp2x.c,
arch/gp2x/vkeyboard_gp2x.h, arch/gp2x/vsidui.c,
arch/gp2x/vsiduigp2x.h, arch/gp2x/vsyncarch.c,
arch/gp2x/xcbm2_stubs.c, arch/gp2x/xpet_stubs.c,
arch/gp2x/xpet_stubs.c, arch/gp2x/xplus4_stubs.c,
arch/gp2x/xvic_stubs.c, src/joystick.h,
raster/raster-canvas.c: Added support for the GP2X port.
2006-06-25 Andreas Boose <viceteam@t-online.de>
* Version 1.19.18.
* fsdevice/fsdevice.c, fsdevice/fsdevicetypes.h,
fsdevice/fsdevice-close.c, fsdevice/fsdevice-open.c,
fsdevice/fsdevice-read.c, fsdevice/fsdevice-write.c,
fsdevice/fsdevice-flush.c: Moved all variables to a single
structure.
* c64/c64.c, c128/c128.c, vic20/vic20.c, pet/pet.c,
plus4/plus4.c, cbm2/cbm2.c, machine.c, init.c: Moved file
system initialization and shutdown to machine code.
* arch/unix/Makefile.am: Moved unix gui files.
* arch/unix/gui/*: New directory containing the unix gui.
* arch/unix/ui*.c: Moved this file to new directory.
2006-06-24 Andreas Boose <viceteam@t-online.de>
* Version 1.19.17.
* core/ciacore.c (ciacore_store, ciacore_store_internal):
Removed recursion on RMW access because changing `rmw_flag'
will break vicii alarm code.
* vicii/vicii.c, vicii/vicii.h
(vicii_handle_pending_alarms_external_write): New function.
* c64/c64cia1.c, c64/c64cia2.c (pre_store): Use
`vicii_handle_pending_alarms_external_write()'.
* vicii/vicii-mem.c (vicii_store): Use
`vicii_handle_pending_alarms_external_write()'.
* c64/c64io.c (c64io1_read, c64io1_store, c64io2_read,
c64io2_store): Update pending vicii alarms.
* sid/sid.c (sid_store_chip): Added comment.
* c128/c128mmu.c (mmu_store): Use
`vicii_handle_pending_alarms_external_write()'.
* vdc/vdc-mem.c (vdc_store): Use RMW flag to calculate write
cycles, added comment.
2006-06-23 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* arch/win32/console.c: Make sure the position of the current
input line is adjusted whenever the screen is scrolled. This
fixes a bug when resizing the console windows from bigger to
smaller. Without this fix, the cursor remains outside of the
visible area.
2006-06-23 Andreas Boose <viceteam@t-online.de>
* Version 1.19.16.
* c128/c128fastiec.c (c128fastiec_init, iec_fast_cpu_write):
Added four drive support.
* c128/c128fastiec.c, c128/c128fastiec.h, c128/c128cia1.c,
c128/c128mmu.c: Renamed fast iec functions.
* c64/psid.c, diskimage/fsimage.c, tape/t64.c, tape/tap.c,
tape/tape-snapshot.c, vic20/vic20cartridge.c, autostart.c,
zfile.c, zfile.h, snapshot.c: Renamed zfile functions.
* c64/cart/final.c, c64/plus60k.c, c64/ramcart.c,
c64/plus256k.c, c64/georam.c, c64/c64_256k.c, cbm2/cbm2cia1.c,
cbm2/cbm2tpi2.c, plus4/plus4memhannes256k.c,
plus4/plus4memcsory256k.c, c64/c64.c, c64/cart/expert.c,
c64/cart/supersnapshot.c, c64/cart/delaep256.c,
c64/cart/delaep7x8.c, c64/cart/rexep256.c: Updated includes.
* c64/c64io.c, c64/c64io.h, c64/c64meminit.c, c64/c64mem.c,
c128/c128meminit.c, c128/z80mem.c, c128/c128mem.c: Renamed
c64io functions.
* fsdevice/fsdevice.c, fsdevice.h, init.c, machine.c,
fsdevice/fsdevice-close.c, fsdevice/fsdevice-open.c,
fsdevice/fsdevice-read.c, fsdevice/fsdevice-cmdline-options.c,
fsdevice/fsdevicetypes.h, fsdevice/fsdevice-flush.c: Allocate
buffer and structs at runtime.
2006-06-22 Andreas Matthies <andreas.matthies@gmx.net>
* arch/beos/vsyncarch.c, arch/unix/vsyncarch.c,
arch/win32/vsyncarch.c: ui_dispatch_events isn't called in
vsyncarch_presync but in vsyncarch_postsync to keep the
order of history playback mode where event alarms are
executed after the drives vsync.
2006-06-21 Andreas Boose <viceteam@t-online.de>
* Version 1.19.15.
* drive/ieee/fdc.c (fdc_detach_image): Fixed warning.
* diskimage.h, diskimage/fsimage-create.c,
diskimage/fsimage-gcr.c, diskimage/fsimage-probe.c,
diskimage/fsimage.c, diskimage/rawimage.c, c1541.c
[disk_image_t]: Use a union for private media structs.
* c64/c64-resources.c, c128/c128-resources.c,
vic20/vic20-resources.c, pet/pet-resources.c,
cbm2/cbm2-resources.c, plus4/plus4-resources.c, pet/petpia1.c,
pet/petpia2.c, pet/petvia.c, pet/petiec.c, c64/c64tpi.c,
c64/c64cia2.c, c128/c128cia1.c, cbm2/cbm2tpi1.c,
cbm2/cbm2iec.c, cbm2/cbm2cia1.c, c64/c64iec.c,
plus4/plus4iec.c, vic20/vic20via1.c, vic20/vic20via2.c,
vic20/vic20ieeevia1.c, vic20/vic20ieeevia2.c,
plus4/plus4mem.c, c64/cart/stb.c, arch/unix/rs232.c,
arch/unix/uinetplay.c, plus4/plus4memhannes256k.c,
plus4/plus4memcsory256k.c, fileio/fileio.c: Updated includes.
2006-06-19 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/intl.c, arch/amigaos/intl.h,
arch/amigaos/make-bindist.sh, arch/amigaos/mui/uiacia.c,
arch/amigaos/mui/uic64_256k.c,
arch/amigaos/mui/uicbm2settings.c,
arch/amigaos/mui/uidatasette.c, arch/amigaos/mui/uigeoram.c,
arch/amigaos/mui/uipetreu.c, arch/amigaos/mui/uiplus256k.c,
arch/amigaos/mui/uiplus60k.c, arch/amigaos/mui/uiramcart.c,
arch/amigaos/mui/uireu.c, arch/amigaos/mui/uirs232user.c,
arch/amigaos/mui/uivic20mem.c, arch/amigaos/mui/uivicii.c,
arch/amigaos/video.c: Added ppc-aros support.
2006-06-17 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/intl.c, arch/amigaos/intl.h,
arch/amigaos/mui/uisound.c, arch/amigaos/mui/uivicii.c,
arch/amigaos/uiattach.c: Fixed some intl support function
calls and added some new items.
* arch/amigaos/screenshot.c: Fixed an uninited variable that
caused 'garbage' at the beginning of the screenshot file name.
* arch/amigaos/ui.c: Fixed window->UserPort so that it won't
crash when switching screens/resolutions.
* arch/amigaos/video.c: Fixed the rendering style and color
routines for the AROS port to make it work properly, thanx to
Kalamatee for help on this.
2006-06-12 Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de>
* monitor/mon_file.c: mon_file_open() returns -1 now if the
drive does not exist. This prevents an error if people use the
old format for the "load", "l" command, for example, 'l "file"
c000, which resulted in a hangup of the system.
2006-06-11 Andreas Boose <viceteam@t-online.de>
* Version 1.19.14.
* video/video-render-2x2.c, video/renderscale2x.c,
video/renderscale2x.h: Fixed prototypes.
* sounddrv/soundcoreaudio.c: Added Intel CoreAudio patch by
Christian Vogelgsang.
2006-06-10 Andreas Matthies <andreas.matthies@gmx.net>
* attach.c (detach_disk_image), diskimage/diskimage.c
(disk_image_media_destroy, disk_image_close),
drive/iec/wd1770.c (wd1770_detach_image), drive/ieee/fdc.c
(fdc_detach_image), vdrive/vdrive.c (vdrive_detach_image):
Moved test for image set to the functions called here cause
image isn't set after snapshot loading but we need to call
drive_image_detach for correct detach_clk values.
* drive/drive-snapshot.c (drive_snapshot_read_module):
Remember the attach/detach_clk values read from snapshot
and set them later to avoid changes triggered by attaching
disk image or calling drive_enable.
(drive_snapshot_write_image_module): Write NOIMAGE module
if no image is attached.
(drive_snapshot_read_image_module): If NOIMAGE module is
present call file_system_detach_disk.
2006-06-07 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/intl.c, arch/amigaos/intl.h,
arch/amigaos/joy.c, arch/amigaos/joyll.c,
arch/amigaos/mui/uidrivec128.c,
arch/amigaos/mui/uidrivec64vic20.c,
arch/amigaos/mui/uidrivepetcbm2.c,
arch/amigaos/mui/uidriveplus4.c, arch/amigaos/mui/uigeoram.c,
arch/amigaos/mui/uijoystick.c,
arch/amigaos/mui/uijoystickll.c, arch/amigaos/mui/uipetreu.c,
arch/amigaos/mui/uiplus256k.c, arch/amigaos/mui/uiplus60k.c,
arch/amigaos/mui/uiram.c, arch/amigaos/mui/uiramcart.c,
arch/amigaos/mui/uireu.c, arch/amigaos/mui/uirs232user.c,
arch/amigaos/mui/uisid.c, arch/amigaos/mui/uisound.c,
arch/amigaos/mui/uivic20mem.c, arch/amigaos/mui/uivicii.c,
arch/amigaos/uiapi.c: Finished the intl support for the
AmigaOS port, swedish translation help by Johan Samuelsson
<spot@triad.se>.
2006-06-03 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/intl.c, arch/amigaos/intl.h,
arch/amigaos/mui/filereq.c, arch/amigaos/mui/mui.c,
arch/amigaos/mui/mui.h, arch/amigaos/mui/uiacia.c,
arch/amigaos/mui/uic64_256k.c,
arch/amigaos/mui/uicbm2settings.c,
arch/amigaos/mui/uidatasette.c,
arch/amigaos/mui/uidrivec128.c, arch/amigaos/screenshot.c,
arch/amigaos/statusbar.c, arch/amigaos/ui.c,
arch/amigaos/uic64cart.c, arch/amigaos/uicart.c,
arch/amigaos/uicart.h, arch/amigaos/uicmdline.c,
arch/amigaos/vic20ui.c, arch/amigaos/vsyncapi.c: Continued the
intl support for the AmigaOS ports.
* arch/win32/resc128.rc, arch/win32/resc64.rc: Fixed some
translations.
2006-05-30 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/archdep.c: Fixed some path issues, patch
provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/c128uires.h, arch/amigaos/c64uires.h,
arch/amigaos/cbm2uires.h, arch/amigaos/petuires.h,
arch/amigaos/plus4uires.h, arch/amigaos/vic20uires.h: Added
the fullscreen statusbar and overlay support toggles to the
menus.
* arch/amigaos/intl.c, arch/amigaos/intl.h: Fixed default
locale detection and added the fullscreen statusbar and
overlay items.
* arch/amigaos/kbd.c: Deleted unneeded memset, patch provided
by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/mousedrv.c, arch/amigaos/mousedrv.h: Fixed
"1351 mouse emulation" inputhandler crash, now removes the
"1351 mouse emulation" inputhandler when VICE quits, patch
provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/mui/filereq.c: Fixed the custom file requester
not to list RAM: among the initial directory contents, patch
provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/private.h, arch/amigaos/ui.c,
arch/amigaos/ui.h, arch/amigaos/uiapi.c, arch/amigaos/uires.h,
arch/amigaos/video.c, arch/amigaos/videoarch.h: Added overlay
support for MorphOS, patch provided by Harry Sintonen
<sintonen@iki.fi>.
* arch/unix/x11/dga2.c, arch/unix/x11/video.c,
video/render1x1.c, video/render1x1.h, video/render1x1pal.c,
video/render1x1pal.h, video/render1x2.c, video/render1x2.h,
video/render2x2.c, video/render2x2.h, video/render2x2pal.c,
video/render2x2pal.h, video/video-render-1x2.c,
video/video-render-2x2.c. video/video-render-pal.c,
video/video-render.c, src/video.h: Moved some global variables
to a new structure that makes future expansion easier, patch
provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/screenshot.c: Fixed for non v38 asl names.
* arch/amigaos/statusbar.c: Added the fullscreen statusbar
toggle, patch provided by Harry Sintonen <sintonen@iki.fi>.
* video/video-color.c: Fixed generic problem in VICE; multiple
windows would corrupt each other's palette, and fixed RGB to
YCbCr conversion routine, patch provided by Harry Sintonen
<sintonen@iki.fi>.
2006-05-28 Andreas Boose <viceteam@t-online.de>
* Version 1.19.13.
* drive/rotation.c (head_next2_offset, head_next_offset,
head_current_offset, head_previous_offset,
head_previous2_offset, peek_next2, peek_next, peek_current,
peek_previous, peek_previous2, data_write, data_read): New
functions.
2006-05-28 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/Makefile.am, arch/amigaos/screenshot.c,
arch/amigaos/screenshot.h: Added screenshot support for the
AmigaOS ports.
* arch/amigaos/intl.c, arch/amigaos/intl.h,
arch/amigaos/joyai.c, arch/amigaos/joyll.c,
arch/amigaos/ui.c, src/arch/amigaos/uiapi.c,
arch/amigaos/uiattach.c, arch/amigaos/uic64cart.c,
arch/amigaos/uicart.c: Continued the intl support for the
AmigaOS ports.
* arch/amigaos/statusbar.c, arch/amigaos/statusbar.h,
arch/amigaos/vsyncapi.c: Added statusbar text support for the
AmigaOS ports.
2006-05-26 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/Makefile.am, arch/amigaos/c128ui.c,
arch/amigaos/c128uires.h, arch/amigaos/c64ui.c,
arch/amigaos/c64uires.h, arch/amigaos/cbm2ui.c,
arch/amigaos/cbm2uires.h, arch/amigaos/intl.c,
arch/amigaos/intl.h, arch/amigaos/petui.c,
arch/amigaos/petuires.h, arch/amigaos/plus4ui.c,
arch/amigaos/plus4uires.h, src/arch/amigaos/ui.c,
arch/amigaos/uiapi.c, arch/amigaos/uicmdline.c,
arch/amigaos/uires.h, arch/amigaos/vic20ui.c,
arch/amigaos/vic20uires.h, translate.c: Added intl support for
all AmigaOS flavors.
* network.c: Added netplay support for MorphOS, patch provided
by Harry Sintonen <sintonen@iki.fi>.
2006-05-24 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/ahi.c: Fixed to not use AmigaOS4 specific
function calls.
* arch/amigaos/amigamain.c: Fixed to use the dos/dos.h include
for all AmigaOS flavors.
* arch/amigaos/archdep.c, arch/amigaos/console.c,
arch/amigaos/uimon.c: Fixed for MorphOS, patch provided by
Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/joyll.c: Fixed the accidental mixup of left and
right direction.
2006-05-22 Marco van den Heuvel <blackystardust68@yahoo.com>
* arch/amigaos/ahi.c: Fixed ahi audio to resync if
doublebuffering drops out of sync, and fixed race condition at
subtask create and exit, patch provided by Harry Sintonen
<sintonen@iki.fi>.
* arch/amigaos/amigamain.c: Default minimum stack of 512KB for
MorphOS, patch provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/console.c, arch/amigaos/mui/mui.h,
arch/amigaos/ui.c, arch/amigaos/ui.h: Added missing includes,
patch provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/joyll.c: Fixed lowlevel joystick code, patch
provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/mui/filereq.c, arch/amigaos/mui/mui.c: Fixed
$VER, patch provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/private.h, arch/amigaos/vsyncapi.c: Added
proper timer code for MorphOS, no more sync problems, patch
provided by Harry Sintonen <sintonen@iki.fi>.
* arch/amigaos/timer.c, arch/amigaos/timer.h: Added proper
timer code for MorphOS, and simplified by using similar api
for all AmigaOS platforms, patch provided by Harry Sintonen
<sintonen@iki.fi>.
* arch/amigaos/uilib.c: Commented out not yet used functions.
* arch/amigaos/video.c: Fixed a read access to address