ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/ChangeLog
(Generate patch)

Comparing BasiliskII/ChangeLog (file contents):
Revision 1.68 by cebix, 2001-06-30T12:58:05Z vs.
Revision 1.92 by gbeauche, 2005-11-22T21:20:30Z

# Line 1 | Line 1
1   V1.0 (snapshot) - <date>
2 <        - added support for on-the-fly video resolution and depth seitching
3 <        - fsave/frestore emulation under AmigaOS and NetBSD/m68k always behave
4 <          like a 68882/68040 FPU, eliminating the need for 68060 FPU patches
2 > - fixed support for volumes larger than 4 GB
3 > - fixed the problem with Ticks getting incremented on every interrupt, not
4 >   just 60Hz (e.g. moving the mouse made the caret blink faster)
5 > - JIT: integrated dynamic translator for Linux/x86 and FreeBSD/x86
6 > - JIT: ported backend to support Linux/x86_64 (AMD64 and EM64T platforms)
7 > - JIT: fixed translation through constant jumps ("jitinline" config option)
8 > - JIT: improve detection of newer CPUs based on the P4 core but
9 >   fallback to a safe default, if necessary
10 > - Unix: moved minimum autoconf support to 2.52+
11 > - Unix: add large file support for 2+ GB hard disk images
12 > - Unix: cleaned up pthread attributes [Brian Johnson]
13 > - Unix: fixed floppy problems under Linux
14 > - Unix: implemented "ignoresegv" feature on Linux/x86, Linux/ppc, Darwin/ppc
15 > - Unix: serial port baud rates are now set correctly
16 > - Unix: it is now possible to make the serial drivers pipe their input/output
17 >   to programs by using a '|' followed by a command line as the modem or
18 >   printer port setting (instead of a device name like '/dev/ttyS0')
19 >   [Brian Johnson]
20 > - Unix: the option "--config FILE" tells B2 to use a different config file
21 > - Unix: new prefs options "dsp" and "mixer" to set the OSS device names
22 >   instead of the hardcoded '/dev/dsp' and '/dev/mixer'
23 > - Unix: new ether prefs option 'tun' to use a TUN/TAP interface. The
24 >   configure script used can be overriden with "etherconfig"
25 > - Unix: SDL audio and video output are now available in option
26 > - Unix: sheep_net driver ported to kernel 2.6 (patches from Mac-On-Linux)
27 > - Unix: fix network code to work correctly on 64-bit platforms
28 > - Unix: add user-mode network emulation stack, enabled with 'slirp'
29 > - Unix: implement X11 to MacOS exchange of text through the clipboard
30 > - Unix: improve overall responsiveness on NetBSD platforms
31 > - Unix: fix GUI to build with newer GTK+2
32 > - Unix: fix crash when exitting the GUI early
33 > - Unix: fix fullscreen DGA mode with the VidMode extension
34 > - Windows: a new port derived from Lauri's work is now available
35 >
36 > V1.0 (snapshot) - 15.Jan.2002
37 > - added support for on-the-fly video resolution and depth switching, and
38 >   gamma tables
39 > - fsave/frestore emulation under AmigaOS and NetBSD/m68k always behaves like
40 >   a 68882/68040 FPU, eliminating the need for 68060 FPU patches
41 > - added support for platform-independant mutexes, used by adb.cpp for
42 >   thread-safe mouse handling
43 > - the TIME_OFFSET constant has been replaced by a (portable) function
44 >   TimeToMacTime(); file dates in ExtFS should now be correct
45 > - ADBInterrupt() is no longer called from the 60Hz interrupt but has its own
46 >   interrupt flag, potentially increasing the smoothness of mouse movement
47 > - ether.cpp: implemented relatively platform-independant "AppleTalk over UDP"
48 >   mode that doesn't require any special kernel modules or network drivers but
49 >   can only interconnect instances of Basilisk II; this is enabled by setting
50 >   "udptunnel" to true
51 > - Unix: windowed display mode supports different resolutions and color depths,
52 >   which can be switched on-the-fly
53 > - Unix: Ctrl-F5 grabs mouse in windowed mode (enhanced compatibility with
54 >   games like flight simulators)
55 > - Unix: X11 events are handled as soon as they arrive, outside of the 60Hz
56 >   video refresh raster
57 > - Unix: audio sample rate, bit depth and channel count are adjustable in the
58 >   MacOS "Sound" control panel
59  
60   V0.9 (release 0.9-1) - 31.May 2001
61 <        - final adjustments for 0.9 release
61 > - final adjustments for 0.9 release
62  
63   V0.9 (snapshot) - 29.May 2001
64 <        - added help for command line arguments, PrefsInit() now removes
65 <          all processed options
66 <        - serial_unix.cpp: input/output_thread_cancel weren't initialized
67 <          [Kolja Waschk]
68 <        - Unix: some performance improvements to VOSF screen update code
69 <          [Brian J. Johnson]
70 <        - Unix: renewed SIGSEGV support functions. Side effect: configure
71 <          script cleanups and probable Direct Addressing/VOSF support for
72 <          other platforms (NetBSD, AIX, OSF/1, Irix) [Gwenole Beauchesne]
73 <        - Unix: -Ofast option is supplied to MIPSPro compiler [Brian J. Johnson]
74 <        - Unix: workaround for IRIX pthreads bug in Delay_usec()
75 <          [Brian J. Johnson]
76 <        - Unix: FreeBSD configure script cleanups [Michael Alyn Miller]
77 <        - Unix: ether_linux.cpp moved and renamed to ether_unix.cpp, now
78 <          also works with the tap driver under FreeBSD [Michael Alyn Miller]
79 <        - BeOS: fixed some bugs in the extfs file types handling
26 <        - AmigaOS: SCSI buffer type can be selected
64 > - added help for command line arguments, PrefsInit() now removes all processed
65 >   options
66 > - serial_unix.cpp: input/output_thread_cancel weren't initialized
67 >   [Kolja Waschk]
68 > - Unix: some performance improvements to VOSF screen update code
69 >   [Brian J. Johnson]
70 > - Unix: renewed SIGSEGV support functions. Side effect: configure script
71 >   cleanups and probable Direct Addressing/VOSF support for other platforms
72 >   (NetBSD, AIX, OSF/1, Irix) [Gwenole Beauchesne]
73 > - Unix: -Ofast option is supplied to MIPSPro compiler [Brian J. Johnson]
74 > - Unix: workaround for IRIX pthreads bug in Delay_usec() [Brian J. Johnson]
75 > - Unix: FreeBSD configure script cleanups [Michael Alyn Miller]
76 > - Unix: ether_linux.cpp moved and renamed to ether_unix.cpp, now also works
77 >   with the tap driver under FreeBSD [Michael Alyn Miller]
78 > - BeOS: fixed some bugs in the extfs file types handling
79 > - AmigaOS: SCSI buffer type can be selected
80  
81   V0.9 (snapshot) - 17.Feb.2001
82 <        - adapted for cxmon V3.0 which is now the required minimum
83 <        - UAE cpu: fixed a bug in the memory handlers preventing from
84 <          correctly updating 15 and 16 bpp displays on big endian systems
85 <        - Unix: added (experimental) real addressing mode [Gwenole Beauchesne]
86 <          (activated through the "--enable-addressing=real" configure option)
87 <        - Unix: added direct addressing mode [Gwenole Beauchesne]
88 <          (default addressing mode, if possible)
89 <        - Unix: added screen updates on SEGV signals [Gwenole Beauchesne]
90 <          (activated through the "--enable-vosf" configure option)
91 <        - Unix: added IRIX audio driver [Brian J. Johnson]
92 <        - Unix: improved timing of periodic threads
93 <        - Unix: command line options now use '--'-prefix, e.g. "--rominfo"
94 <        - AmigaOS: enabled floppy support, fixed floppy bugs [Jürgen Lachmann]
95 <        - AmigaOS: Amiga mouse pointer is hidden inside windowed Mac displays
96 <        - AmigaOS/sys_amiga.cpp: workaround for 2060scsi.device bug when
97 <          when reading from CD-ROM [Jürgen Lachmann]
98 <        - AmigaOS/prefs_editor_amiga.cpp: fixed bug when adding volumes
99 <          [Jürgen Lachmann]
100 <        - AmigaOS: added MacsBug support (tested with MacsBug6.6.1),
101 <          fixed <move sr,(sp)> bug [Jürgen Lachmann]
102 <        - AmigaOS: disabled 68060 Super Bypass mode because of CPU bug triggered
103 <          by MacOS 8
104 <        - AmigaOS: implemented XPRAM watchdog task
105 <        - AmigaOS/Unix/extfs_*.cpp: .finf helper file now stores complete
106 <          FInfo/FXInfo, replaced get/set_finder_*() functions by get/set_finfo()
107 <        - AmigaOS/Unix: it's possible to specify preferences items on the
108 <          command line
109 <        - BeOS: implemented the "powerrom_cpu" CPU engine for BeOS/PPC that
110 <          uses the 680x0 emulator contained in an Apple PowerMac ROM to run
111 <          Basilisk II (ca. 4x speed improvement); when running on a BeBox,
112 <          a PCI PowerMac ROM image is needed to use this (the path name of the
113 <          ROM file can be set with the preferences item "powerrom", default
114 <          is "PowerROM")
115 <        - include/macos_util.h: defines FOURCC() macro to make MacOS-like
116 <          four-character-codes, replaced most instances of multi-character
117 <          constants in the sources by this macro to avoid compiler warnings
118 <        - cdrom.cpp: implemented Status(6) call (return format list)
119 <          [Landon Fuller]
67 <        - Imported some changes from the Windows port, most notably FPU fixes
68 <          and the 1Hz interrupt [Lauri Pesonen]
69 <        - Ported Lauri Pesonen's FPU core to GCC/i386 [Gwenole Beauchesne]
82 > - adapted for cxmon V3.0 which is now the required minimum
83 > - UAE cpu: fixed a bug in the memory handlers preventing from correctly
84 >   updating 15 and 16 bpp displays on big endian systems
85 > - Unix: added (experimental) real addressing mode [Gwenole Beauchesne]
86 >   (activated through the "--enable-addressing=real" configure option)
87 > - Unix: added direct addressing mode [Gwenole Beauchesne] (default addressing
88 >   mode, if possible)
89 > - Unix: added screen updates on SEGV signals [Gwenole Beauchesne] (activated
90 >   through the "--enable-vosf" configure option)
91 > - Unix: added IRIX audio driver [Brian J. Johnson]
92 > - Unix: improved timing of periodic threads
93 > - Unix: command line options now use '--'-prefix, e.g. "--rominfo"
94 > - AmigaOS: enabled floppy support, fixed floppy bugs [Jürgen Lachmann]
95 > - AmigaOS: Amiga mouse pointer is hidden inside windowed Mac displays
96 > - AmigaOS/sys_amiga.cpp: workaround for 2060scsi.device bug when when reading
97 >   from CD-ROM [Jürgen Lachmann]
98 > - AmigaOS/prefs_editor_amiga.cpp: fixed bug when adding volumes
99 >   [Jürgen Lachmann]
100 > - AmigaOS: added MacsBug support (tested with MacsBug6.6.1), fixed
101 >   <move sr,(sp)> bug [Jürgen Lachmann]
102 > - AmigaOS: disabled 68060 Super Bypass mode because of CPU bug triggered by
103 >   MacOS 8
104 > - AmigaOS: implemented XPRAM watchdog task
105 > - AmigaOS/Unix/extfs_*.cpp: .finf helper file now stores complete
106 >   FInfo/FXInfo, replaced get/set_finder_*() functions by get/set_finfo()
107 > - AmigaOS/Unix: it's possible to specify preferences items on the command line
108 > - BeOS: implemented the "powerrom_cpu" CPU engine for BeOS/PPC that uses the
109 >   680x0 emulator contained in an Apple PowerMac ROM to run Basilisk II (ca.
110 >   4x speed improvement); when running on a BeBox, a PCI PowerMac ROM image is
111 >   needed to use this (the path name of the ROM file can be set with the
112 >   preferences item "powerrom", default is "PowerROM")
113 > - include/macos_util.h: defines FOURCC() macro to make MacOS-like
114 >   four-character-codes, replaced most instances of multi-character constants
115 >   in the sources by this macro to avoid compiler warnings
116 > - cdrom.cpp: implemented Status(6) call (return format list) [Landon Fuller]
117 > - Imported some changes from the Windows port, most notably FPU fixes and the
118 >   1Hz interrupt [Lauri Pesonen]
119 > - Ported Lauri Pesonen's FPU core to GCC/i386 [Gwenole Beauchesne]
120  
121   V0.8 (snapshot) - 13.Jul.2000
122 <        - Unix: runs natively on NetBSD/m68k
123 <        - Unix: compiles without pthreads, but without serial/ethernet/audio
124 <          support
125 <        - Unix: "--without-mon" configure option now works
126 <        - Unix/video_x.cpp: DGA and SHM are only tried on local X11 displays
127 <        - Unix/video_x.cpp: re-integrated old window update method; frameskip=0
128 <          ("Dynamic") selects new method, other values select old method
129 <        - Unix/prefs_editor_unix.cpp: new "Input" pane, containing keycode
130 <          and mouse wheel options
131 <        - AmigaOS: added support for CyberGraphX [Jürgen Lachmann]
132 <        - audio.cpp: audio_data is cleared on reset [Lauri Pesonen]
133 <        - prefs.cpp: empty string prefs items could be written to prefs file
134 <          but not read back correctly
135 <        - clip_*.cpp: added prefs item "noclipconversion" for turning off
86 <          charset conversion of text clips (only CR->LF gets translated),
87 <          [Toshimitsu Tanaka]
122 > - Unix: runs natively on NetBSD/m68k
123 > - Unix: compiles without pthreads, but without serial/ethernet/audio support
124 > - Unix: "--without-mon" configure option now works
125 > - Unix/video_x.cpp: DGA and SHM are only tried on local X11 displays
126 > - Unix/video_x.cpp: re-integrated old window update method; frameskip=0
127 >   ("Dynamic") selects new method, other values select old method
128 > - Unix/prefs_editor_unix.cpp: new "Input" pane, containing keycode and mouse
129 >   wheel options
130 > - AmigaOS: added support for CyberGraphX [Jürgen Lachmann]
131 > - audio.cpp: audio_data is cleared on reset [Lauri Pesonen]
132 > - prefs.cpp: empty string prefs items could be written to prefs file but not
133 >   read back correctly
134 > - clip_*.cpp: added prefs item "noclipconversion" for turning off charset
135 >   conversion of text clips (only CR->LF gets translated) [Toshimitsu Tanaka]
136  
137   V0.8 (snapshot) - 14.Mar.2000
138 <        - Unix/video_x.cpp: new window refresh code [Samuel Lander]
139 <        - Unix/timer_unix.cpp: fixed time zone handling under Linux and SVR4
138 > - Unix/video_x.cpp: new window refresh code [Samuel Lander]
139 > - Unix/timer_unix.cpp: fixed time zone handling under Linux and SVR4
140  
141   V0.8 (release 0.8-1) - 30.Jan.2000
142 <        - extfs: extended size of finf helper files to 32 bytes to eventually
143 <          allow storing the complete FInfo/FXInfo in it
142 > - extfs: extended size of finf helper files to 32 bytes to eventually allow
143 >   storing the complete FInfo/FXInfo in it
144  
145   V0.8 (snapshot) - 22.Dec.1999
146 <        - imported UAE CPU 0.8.10 changes
147 <        - new utility functions Mac_memset, Mac2Host_memcpy, Host2Mac_memcpu
148 <          and Mac2Mac_memcpy
149 <        - extfs.cpp: fixed bug in fs_rename() and fs_cat_move() (auxiliary
150 <          IOParam block was not in Mac address space and FSItem parent IDs
151 <          didn't get swapped) [Lauri Pesonen]
152 <        - extfs.cpp: several fixes [Lauri Pesonen]
153 <        - some provisions for using UAE CPU compiler (doesn't work yet)
154 <        - video_x.cpp: XFree86 VidMode extension is used to switch modes
107 <          in DGA mode
146 > - imported UAE CPU 0.8.10 changes
147 > - new utility functions Mac_memset, Mac2Host_memcpy, Host2Mac_memcpu and
148 >   Mac2Mac_memcpy
149 > - extfs.cpp: fixed bug in fs_rename() and fs_cat_move() (auxiliary IOParam
150 >   block was not in Mac address space and FSItem parent IDs didn't get swapped)
151 >   [Lauri Pesonen]
152 > - extfs.cpp: several fixes [Lauri Pesonen]
153 > - some provisions for using UAE CPU compiler (doesn't work yet)
154 > - video_x.cpp: XFree86 VidMode extension is used to switch modes in DGA mode
155  
156   V0.8 (snapshot) - 2.Nov.1999
157 <        - fixed many UAE FPU bugs [Lauri Pesonen]
158 <        - added replacement for BlockMove() trap
159 <        - removed Windows sources from the source archive; a version of
160 <          these that actually compiles and works can be downloaded from
161 <          Lauri Pesonen's site
162 <        - removed the MemoryDispatch() replacement routine; the routine
163 <          in the ROM is now always used; this fixes the MacOS 8 Finder
164 <          copying bug and also most "unimplemented trap" errors on MacOS
165 <          bootup; yeah :-)
166 <        - a warning is issued if the ROM seems to require an FPU but FPU
167 <          emulation is turned off
168 <        - medium removal is allowed in CDROMExit()
169 <        - added (incomplete) emulation of 68040 instructions (CINV, CPUSH,
170 <          MOVE16 (Ax)+,(Ay)+, and FPU stack frames), enough to boot MacOS
171 <        - UAE CPU: opcode routines no longer return the cycle count
172 <        - extfs.cpp: fixed bug with fsResolveWDCB in fs_get_wd_info()
173 <        - Unix: added support for ESD audio output; merged with OSS audio
174 <          and put in a new "audio_oss_esd.cpp" file which is also used under
175 <          FreeBSD 3.x
176 <        - Unix: added mkinstalldirs to "make install" target
177 <        - Unix: cleaned up the configure script
178 <        - Unix: ROM breakpoint can be specified with "-break" command line
179 <          argument
180 <        - Unix: "-rominfo" command line argument to print information
181 <          about ROM version and tables
182 <        - Unix: ExtFS supports resource forks and Finder info (these are
183 <          kept in hidden ".finf" and ".rsrc" directories)
184 <        - Unix/audio_oss_esd.cpp: AudioStatus is re-set after determining
185 <          audio device capabilities (actual sample rate is also determined)
186 <          [Alexander R. Pruss]
187 <        - Unix/audio_oss_esd.cpp: "silence" in 8-bit mode used wrong fill
188 <          value (0 instead of 0x80) [Alexander R. Pruss]
189 <        - Unix/video_x.cpp: added mouse wheel support [Alexander R. Pruss]
143 <        - Unix/sys_unix.cpp: device size is read correctly under Linux
144 <        - AmigaOS: removed support for SAS/C
145 <        - AmigaOS/sys_amiga.cpp: supports 64-bit device I/O (NSD)
146 <        - AmigaOS/sys_amiga.cpp: device block size is respected on writes
157 > - fixed many UAE FPU bugs [Lauri Pesonen]
158 > - added replacement for BlockMove() trap
159 > - removed Windows sources from the source archive; a version of these that
160 >   actually compiles and works can be downloaded from Lauri Pesonen's site
161 > - removed the MemoryDispatch() replacement routine; the routine in the ROM is
162 >   now always used; this fixes the MacOS 8 Finder copying bug and also most
163 >   "unimplemented trap" errors on MacOS bootup; yeah :-)
164 > - a warning is issued if the ROM seems to require an FPU but FPU emulation is
165 >   turned off
166 > - medium removal is allowed in CDROMExit()
167 > - added (incomplete) emulation of 68040 instructions (CINV, CPUSH,
168 >   MOVE16 (Ax)+,(Ay)+, and FPU stack frames), enough to boot MacOS
169 > - UAE CPU: opcode routines no longer return the cycle count
170 > - extfs.cpp: fixed bug with fsResolveWDCB in fs_get_wd_info()
171 > - Unix: added support for ESD audio output; merged with OSS audio and put in
172 >   a new "audio_oss_esd.cpp" file which is also used under FreeBSD 3.x
173 > - Unix: added mkinstalldirs to "make install" target
174 > - Unix: cleaned up the configure script
175 > - Unix: ROM breakpoint can be specified with "-break" command line argument
176 > - Unix: "-rominfo" command line argument to print information about ROM
177 >   version and tables
178 > - Unix: ExtFS supports resource forks and Finder info (these are kept in
179 >   hidden ".finf" and ".rsrc" directories)
180 > - Unix/audio_oss_esd.cpp: AudioStatus is re-set after determining audio
181 >   device capabilities (actual sample rate is also determined)
182 >   [Alexander R. Pruss]
183 > - Unix/audio_oss_esd.cpp: "silence" in 8-bit mode used wrong fill value
184 >   (0 instead of 0x80) [Alexander R. Pruss]
185 > - Unix/video_x.cpp: added mouse wheel support [Alexander R. Pruss]
186 > - Unix/sys_unix.cpp: device size is read correctly under Linux
187 > - AmigaOS: removed support for SAS/C
188 > - AmigaOS/sys_amiga.cpp: supports 64-bit device I/O (NSD)
189 > - AmigaOS/sys_amiga.cpp: device block size is respected on writes
190  
191   V0.8 (snapshot) - 21.Oct.1999
192 <        - sony.cpp/disk.cpp/cdrom.cpp: disk insertions are now checked for
193 <          by an interrupt routine
194 <        - localizable strings are now split into a common and a platform-
195 <          specific set
196 <        - added external file system to access host OS files from the MacOS;
197 <          root directory is specified by the "extfs" prefs item
198 <        - moved most initialization/deinitialization code to InitAll() and
199 <          ExitAll() in main.cpp
200 <        - added patches for NetBSD [Bernd Sieker]
201 <        - corrected TimerDateTime() in timer_unix.cpp and timer_beos.cpp
202 <          [Toshimitsu Tanaka]
203 <        - AmigaOS: fixed crash when gtlayout.library was not present
204 <        - AmigaOS: now compiles with GCC (Geek Gadgets)
205 <        - AmigaOS/clip_amiga.cpp: fixed small bug in CR->LF translation
206 <          [Giacomo Magnini]
207 <        - Unix: compilation of cpuemu.cpp is now split in 8 parts
208 <        - Unix: volume list in GTK prefs editor is reorderable
209 <        - Unix: added fbdev DGA support and SPARC assembly optimizations to
167 <          UAE core [Gwenole Beauchesne]
192 > - sony.cpp/disk.cpp/cdrom.cpp: disk insertions are now checked for by an
193 >   interrupt routine
194 > - localizable strings are now split into a common and a platform-specific set
195 > - added external file system to access host OS files from the MacOS; root
196 >   directory is specified by the "extfs" prefs item
197 > - moved most initialization/deinitialization code to InitAll() and ExitAll()
198 >   in main.cpp
199 > - added patches for NetBSD [Bernd Sieker]
200 > - corrected TimerDateTime() in timer_unix.cpp and timer_beos.cpp
201 >   [Toshimitsu Tanaka]
202 > - AmigaOS: fixed crash when gtlayout.library was not present
203 > - AmigaOS: now compiles with GCC (Geek Gadgets)
204 > - AmigaOS/clip_amiga.cpp: fixed small bug in CR->LF translation
205 >   [Giacomo Magnini]
206 > - Unix: compilation of cpuemu.cpp is now split in 8 parts
207 > - Unix: volume list in GTK prefs editor is reorderable
208 > - Unix: added fbdev DGA support and SPARC assembly optimizations to UAE core
209 >   [Gwenole Beauchesne]
210  
211   V0.7 (release 0.7-2) - 6.Oct.1999
212 <        - Added BasiliskII.spec for making RPMs [with assistance from
213 <          Roman Niewiarowski]
214 <        - Unix: "basilisk_ii_keycodes" renamed to "keycodes", default
215 <          location of keycodes file is now /usr/local/share/BasiliskII/keycodes
216 <        - Unix: improved the install target, added uninstall target
217 <        - Unix/Windows: fixed bugs in protocol removal [Lauri Pesonen]
218 <        - Unix/Linux/NetDriver: removed MAKEDEV, functionality now included
219 <          in Makefile ("make dev")
220 <        - Unix/sys_unix.cpp: Sys_open() checks whether an HFS volume is currently
221 <          mounted under Linux and tries to unmount it
222 <        - Unix/sys_unix.cpp: implemented SysAddDiskPrefs() for Linux (scans
223 <          /etc/fstab to find HFS volumes)
224 <        - Unix/sys_unix.cpp: implemented Sys(Prevent/Allow)Removal() [Ryan Cumming]
225 <        - Unix/main_unix.cpp: added call to gtk_set_locale() before gtk_init()
226 <          [Toshimitsu Tanaka]
227 <        - Unix/video_x.cpp: "dga" screen preferences now takes width and
228 <          height as parameters (e.g. dga/640/480), like "win" [Pablo Averbuj]
229 <        - Unix/video_x.cpp: Caps Lock behaves as expected [Pablo Averbuj]
230 <        - Unix/prefs_editor_gtk.cpp: made the window width/height widgets
231 <          comboboxes providing some useful defaults
212 > - Added BasiliskII.spec for making RPMs [with assistance from Roman
213 >   Niewiarowski]
214 > - Unix: "basilisk_ii_keycodes" renamed to "keycodes", default location of
215 >   keycodes file is now /usr/local/share/BasiliskII/keycodes
216 > - Unix: improved the install target, added uninstall target
217 > - Unix/Windows: fixed bugs in protocol removal [Lauri Pesonen]
218 > - Unix/Linux/NetDriver: removed MAKEDEV, functionality now included in
219 >   Makefile ("make dev")
220 > - Unix/sys_unix.cpp: Sys_open() checks whether an HFS volume is currently
221 >   mounted under Linux and tries to unmount it
222 > - Unix/sys_unix.cpp: implemented SysAddDiskPrefs() for Linux (scans /etc/fstab
223 >   to find HFS volumes)
224 > - Unix/sys_unix.cpp: implemented Sys(Prevent/Allow)Removal() [Ryan Cumming]
225 > - Unix/main_unix.cpp: added call to gtk_set_locale() before gtk_init()
226 >   [Toshimitsu Tanaka]
227 > - Unix/video_x.cpp: "dga" screen preferences now takes width and height as
228 >   parameters (e.g. dga/640/480), like "win" [Pablo Averbuj]
229 > - Unix/video_x.cpp: Caps Lock behaves as expected [Pablo Averbuj]
230 > - Unix/prefs_editor_gtk.cpp: made the window width/height widgets comboboxes
231 >   providing some useful defaults
232  
233   V0.7 (alpha) - 25.Jul.1999
234 <        - with 32-bit clean ROMs, the CPU type is now reported as a 68030
235 <          (for those OpenTransport fans :-)
236 <        - added new prefs item "nosound" to disable sound output
237 <        - sound output implemented for BeOS, Linux, Solaris and AmigaOS
238 <          (requires Sound Manager 3.x)
239 <        - dummy/audio_dummy.cpp: created
240 <        - dummy/prefs_dummy.cpp: created
241 <        - dummy/xpram_dummy.cpp: created
242 <        - macos_util.cpp: added FileDiskLayout()
243 <        - video.cpp: removed useless BlankMousePointer flag
244 <        - uae_cpu: updated to UAE 0.8.9
245 <        - uae_cpu/gencpu.c: fixed bug in CAS2, OpenTransport works now
246 <        - Unix: moved Linux- and FreeBSD-specific files to their respective
247 <          directories
248 <        - Unix: added 64-bit data types (needed by timer_unix.cpp)
249 <        - Unix: added keyboard translation method using raw keycodes instead of
250 <          keysyms (controlled by "keycodes" and "keycodefile" prefs items) which
251 <          doesn't depend on the selected keymap
252 <        - Unix: when running as root, Basilisk II tries to assign real-time
253 <          priorities to some threads
254 <        - Unix: calls to nanosleep() protected by autoconf define
255 <        - Unix/main_unix.cpp: tick thread replaced by POSIX.4 timer when possible
256 <        - Unix/timer_unix.cpp: uses POSIX.4 timing facilities when possible
257 <        - Unix/video_x.cpp: all X calls during emulation are now done from
258 <          the redraw thread which is also active in DGA mode; as a result,
259 <          XLockServer()/XUnlockServer() are no longer necessary
260 <        - Unix/sysdeps.h: changed C++ comments to C comments as this file is
261 <          included by some *.c files in uae_cpu [Brian J. Johnson]
262 <        - Unix/sysdeps.h: added unaligned access functions for SGI MIPSPro
263 <          compiler [Brian J. Johnson]
264 <        - Unix/Irix/unaligned.c: created [Brian J. Johnson]
265 <        - Windows: updated sources
234 > - with 32-bit clean ROMs, the CPU type is now reported as a 68030 (for those
235 >   OpenTransport fans :-)
236 > - added new prefs item "nosound" to disable sound output
237 > - sound output implemented for BeOS, Linux, Solaris and AmigaOS (requires
238 >   Sound Manager 3.x)
239 > - dummy/audio_dummy.cpp: created
240 > - dummy/prefs_dummy.cpp: created
241 > - dummy/xpram_dummy.cpp: created
242 > - macos_util.cpp: added FileDiskLayout()
243 > - video.cpp: removed useless BlankMousePointer flag
244 > - uae_cpu: updated to UAE 0.8.9
245 > - uae_cpu/gencpu.c: fixed bug in CAS2, OpenTransport works now
246 > - Unix: moved Linux- and FreeBSD-specific files to their respective
247 >   directories
248 > - Unix: added 64-bit data types (needed by timer_unix.cpp)
249 > - Unix: added keyboard translation method using raw keycodes instead of
250 >   keysyms (controlled by "keycodes" and "keycodefile" prefs items) which
251 >   doesn't depend on the selected keymap
252 > - Unix: when running as root, Basilisk II tries to assign real-time priorities
253 >   to some threads
254 > - Unix: calls to nanosleep() protected by autoconf define
255 > - Unix/main_unix.cpp: tick thread replaced by POSIX.4 timer when possible
256 > - Unix/timer_unix.cpp: uses POSIX.4 timing facilities when possible
257 > - Unix/video_x.cpp: all X calls during emulation are now done from the redraw
258 >   thread which is also active in DGA mode; as a result,
259 >   XLockServer()/XUnlockServer() are no longer necessary
260 > - Unix/sysdeps.h: changed C++ comments to C comments as this file is included
261 >   by some *.c files in uae_cpu [Brian J. Johnson]
262 > - Unix/sysdeps.h: added unaligned access functions for SGI MIPSPro compiler
263 >   [Brian J. Johnson]
264 > - Unix/Irix/unaligned.c: created [Brian J. Johnson]
265 > - Windows: updated sources
266  
267   V0.6 (alpha) - 12.Jul.1999
268 <        - Unix: Basilisk II now accepts a "-display <display>" argument to
269 <          specify the X display to use
270 <        - Unix: mounting floppies with Ctrl-F1 now works
271 <        - Unix/ether_linux.cpp: now works when ethertap is configured for
272 <          multicast support
273 <        - Unix/main_unix.cpp: XOpenDisplay() is now called from main()
274 <        - Unix/scsi_freebsd.cpp: added support for FreeBSD 2.x [Orlando Bassotto]
275 <        - Unix/posix_sem.cpp: updated [Orlando Bassotto]
276 <        - Unix/prefs_editor_gtk.cpp: serial pane recognizes FreeBSD serial/
277 <          printer devices [Orlando Bassotto]
278 <        - Unix/serial_unix.cpp: FreeBSD printer devices are recognized
279 <          [Orlando Bassotto]
280 <        - Unix/sys_unix.cpp: FreeBSD CD-ROM/floppy support, correct default
281 <          serial prefs for FreeBSD [Orlando Bassotto]
282 <        - Unix/sys_unix.cpp: fixed SysIsDiskInserted for Linux floppy
283 <        - Unix/FreeBSD/scsidump.cpp: added [Orlando Bassotto]
268 > - Unix: Basilisk II now accepts a "-display <display>" argument to specify the
269 >   X display to use
270 > - Unix: mounting floppies with Ctrl-F1 now works
271 > - Unix/ether_linux.cpp: now works when ethertap is configured for multicast
272 >   support
273 > - Unix/main_unix.cpp: XOpenDisplay() is now called from main()
274 > - Unix/scsi_freebsd.cpp: added support for FreeBSD 2.x [Orlando Bassotto]
275 > - Unix/posix_sem.cpp: updated [Orlando Bassotto]
276 > - Unix/prefs_editor_gtk.cpp: serial pane recognizes FreeBSD serial/printer
277 >   devices [Orlando Bassotto]
278 > - Unix/serial_unix.cpp: FreeBSD printer devices are recognized
279 >   [Orlando Bassotto]
280 > - Unix/sys_unix.cpp: FreeBSD CD-ROM/floppy support, correct default serial
281 >   prefs for FreeBSD [Orlando Bassotto]
282 > - Unix/sys_unix.cpp: fixed SysIsDiskInserted for Linux floppy
283 > - Unix/FreeBSD/scsidump.cpp: added [Orlando Bassotto]
284  
285   V0.6 (alpha) - 5.Jul.1999
286 <        - fixed mouse for Classic ROM and MacOS 6.x/7.x
287 <        - Unix/ether_linux.cpp: added ethertap support (see README for details)
288 <        - dummy/clip_dummy.cpp: created
286 > - fixed mouse for Classic ROM and MacOS 6.x/7.x
287 > - Unix/ether_linux.cpp: added ethertap support (see README for details)
288 > - dummy/clip_dummy.cpp: created
289  
290   V0.6 (alpha) - 2.Jul.1999
291 <        - rom_patches.cpp: added CheckROM() which has to be called before
292 <          PatchROM()
293 <        - rom_patches.cpp: started ROM patches for Classic/SE ROMs
294 <        - adb.cpp: ADB handlers get ADBBase passed in a3
295 <        - adb.cpp: moved temporary data area to ADBBase+0x163 (Mac Classic
296 <          mouse handler wants it there)
297 <        - emul_op.cpp/EMUL_OP_CLKNOMEM: reading from the RTC time registers
298 <          yields the correct time and date
299 <        - uae_cpu/cpu_emulation.h: added FLAYOUT_NONE to disable frame buffer
300 <          mapping
301 <        - uae_cpu/basilisk_glue.cpp: RAMBaseMac/ROMBaseMac are now set in
302 <          Init680x0() (instead of main_*.cpp)
303 <        - uae_cpu/memory.cpp: added support for Mac Plus/II memory maps
304 <          and 24 bit addressing
305 <        - uae_cpu/newcpu.cpp: re-implemented support for 68000/010 emulation
306 <        - uae_cpu/cpuopti.c: patched for egcs [Orlando Bassotto]
307 <        - main_*.cpp: added TwentyFourBitAddressing flag
308 <        - main_*.cpp: CPU type and addressing mode depends on ROM version
309 <        - main_*.cpp: tick thread changed to use new TimerDateTime() function
310 <        - include/video.h: VideoInit() takes "classic" parameter to select
311 <          "Classic" video mode (512x342, 1-bit)
312 <        - include/timer.h: new function TimerDateTime() to get local date/time
313 <          in Mac format
314 <        - Unix: support for FreeBSD [Orlando Bassotto]
315 <        - Unix/scsi_freebsd-cam.cpp: created [Orlando Bassotto]
316 <        - Unix/posix_sem.cpp: created [Orlando Bassotto]
317 <        - Unix/main_unix.cpp: added call to XF86DGAForkApp()
318 <        - Unix/video_x.cpp: support for Classic video mode and display on
319 <          1-bit screens
320 <        - Unix/video_x.cpp: added check whether screen is really DGA capable
321 <        - Unix/video_x.cpp: added check for image endianess
322 <        - Unix/sys_unix.cpp: added replacement for Linux llseek() for platforms
323 <          that don't have it
324 <        - Unix/*.cpp: replaced sleep()/usleep() by nanosleep()
283 <        - Amiga/prefs_editor_amiga.cpp: ROM file selection via file requester
284 <          didn't work
291 > - rom_patches.cpp: added CheckROM() which has to be called before PatchROM()
292 > - rom_patches.cpp: started ROM patches for Classic/SE ROMs
293 > - adb.cpp: ADB handlers get ADBBase passed in a3
294 > - adb.cpp: moved temporary data area to ADBBase+0x163 (Mac Classic mouse
295 >   handler wants it there)
296 > - emul_op.cpp/EMUL_OP_CLKNOMEM: reading from the RTC time registers yields
297 >   the correct time and date
298 > - uae_cpu/cpu_emulation.h: added FLAYOUT_NONE to disable frame buffer mapping
299 > - uae_cpu/basilisk_glue.cpp: RAMBaseMac/ROMBaseMac are now set in Init680x0()
300 >   (instead of main_*.cpp)
301 > - uae_cpu/memory.cpp: added support for Mac Plus/II memory maps and 24 bit
302 >   addressing
303 > - uae_cpu/newcpu.cpp: re-implemented support for 68000/010 emulation
304 > - uae_cpu/cpuopti.c: patched for egcs [Orlando Bassotto]
305 > - main_*.cpp: added TwentyFourBitAddressing flag
306 > - main_*.cpp: CPU type and addressing mode depends on ROM version
307 > - main_*.cpp: tick thread changed to use new TimerDateTime() function
308 > - include/video.h: VideoInit() takes "classic" parameter to select "Classic"
309 >   video mode (512x342, 1-bit)
310 > - include/timer.h: new function TimerDateTime() to get local date/time in Mac
311 >   format
312 > - Unix: support for FreeBSD [Orlando Bassotto]
313 > - Unix/scsi_freebsd-cam.cpp: created [Orlando Bassotto]
314 > - Unix/posix_sem.cpp: created [Orlando Bassotto]
315 > - Unix/main_unix.cpp: added call to XF86DGAForkApp()
316 > - Unix/video_x.cpp: support for Classic video mode and display on 1-bit
317 >   screens
318 > - Unix/video_x.cpp: added check whether screen is really DGA capable
319 > - Unix/video_x.cpp: added check for image endianess
320 > - Unix/sys_unix.cpp: added replacement for Linux llseek() for platforms that
321 >   don't have it
322 > - Unix/*.cpp: replaced sleep()/usleep() by nanosleep()
323 > - Amiga/prefs_editor_amiga.cpp: ROM file selection via file requester didn't
324 >   work
325  
326   V0.6 (alpha) - 22.Jun.1999
327 <        - fixed small compilation problems on BeOS/x86
328 <        - rsrc_patches.cpp: fixed for MacOS 7.6.1
329 <        - dummy/scsi_dummy.cpp: scsi_send_cmd() was missing timeout parameter
330 <        - Unix/video_x.cpp: fixed compilation problem on systems without DGA
331 <        - BeOS/prefs_editor_beos.cpp: it is now possible to drop ROM files on
332 <          the "ROM File" control
333 <        - BeOS/sys_beos.cpp: Basilisk II will not try to unmount volumes (from
334 <          BeOS) that are to be mounted read-only
327 > - fixed small compilation problems on BeOS/x86
328 > - rsrc_patches.cpp: fixed for MacOS 7.6.1
329 > - dummy/scsi_dummy.cpp: scsi_send_cmd() was missing timeout parameter
330 > - Unix/video_x.cpp: fixed compilation problem on systems without DGA
331 > - BeOS/prefs_editor_beos.cpp: it is now possible to drop ROM files on the
332 >   "ROM File" control
333 > - BeOS/sys_beos.cpp: Basilisk II will not try to unmount volumes (from BeOS)
334 >   that are to be mounted read-only
335  
336   V0.6 (alpha) - 20.Jun.1999
337 <        - scsi.cpp: added "timeout" parameter to scsi_send_cmd()
338 <        - scsi_*.cpp: fixed S/G table processing bug in scsi_send_cmd()
339 <          (every entry was written to/read from the same buffer address)
340 <        - Unix/scsi_linux.cpp: implemented
341 <        - Unix/video_x.cpp: new hotkeys: Ctrl-Esc = emergency quit from DGA mode,
342 <          Ctrl-Tab = suspend DGA mode
343 <        - Unix/video_x.cpp: implemented VideoQuitFullScreen() (used by
344 <          ErrorAlert())
345 <        - BeOS/video_beos.cpp: implemented VideoQuitFullScreen() (used by
306 <          ErrorAlert())
337 > - scsi.cpp: added "timeout" parameter to scsi_send_cmd()
338 > - scsi_*.cpp: fixed S/G table processing bug in scsi_send_cmd() (every entry
339 >   was written to/read from the same buffer address)
340 > - Unix/scsi_linux.cpp: implemented
341 > - Unix/video_x.cpp: new hotkeys:
342 >     Ctrl-Esc = emergency quit from DGA mode,
343 >     Ctrl-Tab = suspend DGA mode
344 > - Unix/video_x.cpp: implemented VideoQuitFullScreen() (used by ErrorAlert())
345 > - BeOS/video_beos.cpp: implemented VideoQuitFullScreen() (used by ErrorAlert())
346  
347   V0.6 (alpha) - 19.Jun.1999
348 <        - sys_*.cpp: 400K DiskCopy disk images are now recognized (84 byte
349 <          header)
350 <        - user_strings.cpp: added strings for GTK preferences editor
351 <        - Unix: implemented preferences editor (requires GTK)
352 <        - Unix: added "install" target to Makefile
353 <        - Unix: created minimal man page
354 <        - Unix/main_unix.cpp: ErrorAlert() and WarningAlert() pop up dialog
355 <          boxes when GTK is present
356 <        - BeOS/prefs_editor_beos.cpp: added "Create" button to volume list
318 <        - BeOS/prefs_editor_beos.cpp: "About" dialog added
348 > - sys_*.cpp: 400K DiskCopy disk images are now recognized (84 byte header)
349 > - user_strings.cpp: added strings for GTK preferences editor
350 > - Unix: implemented preferences editor (requires GTK)
351 > - Unix: added "install" target to Makefile
352 > - Unix: created minimal man page
353 > - Unix/main_unix.cpp: ErrorAlert() and WarningAlert() pop up dialog boxes when
354 >   GTK is present
355 > - BeOS/prefs_editor_beos.cpp: added "Create" button to volume list
356 > - BeOS/prefs_editor_beos.cpp: "About" dialog added
357  
358   V0.5 (alpha) - 13.Jun.1999
359 <        - prefs.cpp: added ZapPRAM()
360 <        - prefs.cpp: PrefsReplaceString() can now take an index
361 <        - user_strings.cpp: added strings for preferences editor
362 <        - prefs_editor_*.*: created
363 <        - sys.h: SysCDStop() now takes the MSF address of the lead-out track
364 <          as a parameter
365 <        - AmigaOS: start offset and size of devices is now given in blocks,
366 <          not bytes
367 <        - AmigaOS: implemented preferences editor
368 <        - BeOS: implemented preferences editor
369 <        - AmigaOS/sys_amiga.cpp: added checks for NSD and 64-bit TD commands
370 <          (not yet used)
371 <        - AmigaOS/sys_amiga.cpp: implemented CD audio commands
372 <        - Unix/sys_unix.cpp: CD-ROM devices are opened with O_NONBLOCK flag
373 <        - Unix/sys_unix.cpp: using CDROM_DRIVE_STATUS to check for inserted
374 <          disks if drive supports it
375 <        - Unix/sys_unix.cpp: CD-ROM devices are closed and reopened on eject
376 <          to clear the driver's internal buffers
377 <        - Unix/video_x.cpp: added incremental refresh mode [David Lawrence]
340 <        - Unix/video_x.cpp: small changes to the DGA code
359 > - prefs.cpp: added ZapPRAM()
360 > - prefs.cpp: PrefsReplaceString() can now take an index
361 > - user_strings.cpp: added strings for preferences editor
362 > - prefs_editor_*.*: created
363 > - sys.h: SysCDStop() now takes the MSF address of the lead-out track as a
364 >   parameter
365 > - AmigaOS: start offset and size of devices is now given in blocks, not bytes
366 > - AmigaOS: implemented preferences editor
367 > - BeOS: implemented preferences editor
368 > - AmigaOS/sys_amiga.cpp: added checks for NSD and 64-bit TD commands (not yet
369 >   used)
370 > - AmigaOS/sys_amiga.cpp: implemented CD audio commands
371 > - Unix/sys_unix.cpp: CD-ROM devices are opened with O_NONBLOCK flag
372 > - Unix/sys_unix.cpp: using CDROM_DRIVE_STATUS to check for inserted disks if
373 >   drive supports it
374 > - Unix/sys_unix.cpp: CD-ROM devices are closed and reopened on eject to clear
375 >   the driver's internal buffers
376 > - Unix/video_x.cpp: added incremental refresh mode [David Lawrence]
377 > - Unix/video_x.cpp: small changes to the DGA code
378  
379   V0.5 (alpha) - 17.May 1999
380 <        - new "fpu" prefs item to enable/disable the (buggy) UAE FPU emulation
381 <        - Defaults for platform-specific prefs items can be set in the new
382 <          AddPlatformPrefsDefault() function which gets called by PrefsInit()
383 <        - added dummy audio component, so MacOS versions >=7.5 should be more
384 <          stable when running programs that try to do something with sound
385 <        - adb.cpp: relative mouse mode should work a bit better
386 <        - macos_util.cpp: new function HasMacStarted() to check Mac warm
387 <          start flag
388 <        - macos_util.cpp: new function MountVolume() to aid implementation
389 <          of manual volume mounting
390 <        - cdrom.cpp: added CDROMMountVolume()
391 <        - BeOS: replaced "Mount floppy" menu item by submenu with list of all
392 <          removable volumes
356 <        - Win32: many fixes and improvements [Lauri Pesonen]
380 > - new "fpu" prefs item to enable/disable the (buggy) UAE FPU emulation
381 > - Defaults for platform-specific prefs items can be set in the new
382 >   AddPlatformPrefsDefault() function which gets called by PrefsInit()
383 > - added dummy audio component, so MacOS versions >=7.5 should be more stable
384 >   when running programs that try to do something with sound
385 > - adb.cpp: relative mouse mode should work a bit better
386 > - macos_util.cpp: new function HasMacStarted() to check Mac warm start flag
387 > - macos_util.cpp: new function MountVolume() to aid implementation of manual
388 >   volume mounting
389 > - cdrom.cpp: added CDROMMountVolume()
390 > - BeOS: replaced "Mount floppy" menu item by submenu with list of all
391 >   removable volumes
392 > - Win32: many fixes and improvements [Lauri Pesonen]
393  
394   V0.5 (alpha) - 8.May 1999
395 <        - added information about GPL to all source files
396 <        - rom_patches.cpp: fixed one unaligned access problem (Sparc)
397 <        - replaced "off_t" by "loff_t" to allow 64 bit disk access under Linux
398 <        - created "dummy" platform directory containing generic "do-nothing"
399 <          versions of certain files to aid in testing and porting
400 <        - Unix: improved autoconf stuff and sysdeps.h
401 <        - Unix: now compiles under Solaris
402 <        - Unix/video_x.cpp: automatic SHM detection, fallback to XPutImage
395 > - added information about GPL to all source files
396 > - rom_patches.cpp: fixed one unaligned access problem (Sparc)
397 > - replaced "off_t" by "loff_t" to allow 64 bit disk access under Linux
398 > - created "dummy" platform directory containing generic "do-nothing" versions
399 >   of certain files to aid in testing and porting
400 > - Unix: improved autoconf stuff and sysdeps.h
401 > - Unix: now compiles under Solaris
402 > - Unix/video_x.cpp: automatic SHM detection, fallback to XPutImage
403  
404   V0.5 (alpha) - 26.Apr.1999
405 <        - main_*.cpp: ramsize is rounded down to 1MB boundary
406 <        - uae_cpu/memory.h: added "REGPARAM2" in more places [Lauri Pesonen]
407 <        - uae_cpu/memory.cpp: changed "Diff" variables from "uae_8 *" to
408 <          "uae_u32" [Lauri Pesonen]
409 <        - uae_cpu/memory.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
410 <        - uae_cpu/newcpu.h: added "REGPARAM2" in more places [Lauri Pesonen]
411 <        - uae_cpu/newcpu.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
412 <        - Windows/*: integrated updated Windows sources from Lauri Pesonen
405 > - main_*.cpp: ramsize is rounded down to 1MB boundary
406 > - uae_cpu/memory.h: added "REGPARAM2" in more places [Lauri Pesonen]
407 > - uae_cpu/memory.cpp: changed "Diff" variables from "uae_8 *" to "uae_u32"
408 >   [Lauri Pesonen]
409 > - uae_cpu/memory.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
410 > - uae_cpu/newcpu.h: added "REGPARAM2" in more places [Lauri Pesonen]
411 > - uae_cpu/newcpu.cpp: added "REGPARAM2" in more places [Lauri Pesonen]
412 > - Windows/*: integrated updated Windows sources from Lauri Pesonen
413  
414   V0.5 (alpha) - 25.Apr.1999
415 <        - prefs.cpp/PrefsRemoveItem(): deleting the last item now works
416 <        - uae_cpu/memory.cpp: changed "uae_u8 REGPARAM2 *func()" to
417 <          "uae_u8 *REGPARAM2 func()"
418 <        - Unix/ether_unix.cpp: implemented
419 <        - Unix/Linux/NetDriver: created
420 <        - Unix/video_x.cpp: added support for 32 bit screens, cleaned up
421 <          VisualInfo code
422 <        - BeOS/ether_beos.cpp: cleaned up the code
423 <        - BeOS/video_beos.cpp: full screen video mode and color depth can now
424 <          be set via prefs("scr/<mode>")
415 > - prefs.cpp/PrefsRemoveItem(): deleting the last item now works
416 > - uae_cpu/memory.cpp: changed "uae_u8 REGPARAM2 *func()" to
417 >   "uae_u8 *REGPARAM2 func()"
418 > - Unix/ether_unix.cpp: implemented
419 > - Unix/Linux/NetDriver: created
420 > - Unix/video_x.cpp: added support for 32 bit screens, cleaned up VisualInfo
421 >   code
422 > - BeOS/ether_beos.cpp: cleaned up the code
423 > - BeOS/video_beos.cpp: full screen video mode and color depth can now be set
424 >   via prefs("scr/<mode>")
425  
426   V0.4 (alpha) - 15.Apr.1999
427 <        - Added some literature references to the source files
428 <        - Modularized CPU engine: the interface of the CPU engine is now
429 <          defined in cpu_emulation.h, so different CPU engines can be
430 <          substituted more easily [as requested by Bill Huey]
431 <        - uae_cpu/gencpu.c: duplicate_carry() was missing in SUB and NBCD routines
432 <        - Unix: added autoconf stuff
433 <        - Unix: modified the makefile so it won't fail if cpuopti didn't work
434 <          [Daniel Thompson]
427 > - Added some literature references to the source files
428 > - Modularized CPU engine: the interface of the CPU engine is now defined in
429 >   cpu_emulation.h, so different CPU engines can be substituted more easily
430 >   [as requested by Bill Huey]
431 > - uae_cpu/gencpu.c: duplicate_carry() was missing in SUB and NBCD routines
432 > - Unix: added autoconf stuff
433 > - Unix: modified the makefile so it won't fail if cpuopti didn't work
434 >   [Daniel Thompson]
435  
436   V0.4 (alpha) - 11.Apr.1999
437 <        - cdrom.cpp: find_hfs_partition() bailed out too soon when finding no
438 <          "PN" signature [Lauri Pesonen]
439 <        - prefs.cpp: prefs file allows more whitespace between keyword and value
440 <          [Lauri Pesonen]
441 <        - prefs.cpp: remodeled to allow platform-specific prefs items (list of
442 <          keywords is kept in table)
443 <        - video.cpp/cscSetEntries: luminance mapping uses integer instead of
444 <          floating point math
445 <        - video_*.cpp: on most systems, the frame buffer is allocated with
446 <          two additional lines as some ROM versions seem to write behind
447 <          the frame buffer proper
448 <        - BeOS/Unix/sysdeps.h: defined X86_ASSEMBLY on i386/GCC systems
449 <        - BeOS/Unix/sysdeps.h: redefined get/put_mem() functions to take and
450 <          return an uae_u32 value, added some more x86 optimizations
451 <        - Unix/serial_unix.cpp/kSERDBaudRate: rates between 57600 and 65535
452 <          result in a rate of 57600 [Lauri Pesonen]
437 > - cdrom.cpp: find_hfs_partition() bailed out too soon when finding no "PN"
438 >   signature [Lauri Pesonen]
439 > - prefs.cpp: prefs file allows more whitespace between keyword and value
440 >   [Lauri Pesonen]
441 > - prefs.cpp: remodeled to allow platform-specific prefs items (list of
442 >   keywords is kept in table)
443 > - video.cpp/cscSetEntries: luminance mapping uses integer instead of floating
444 >   point math
445 > - video_*.cpp: on most systems, the frame buffer is allocated with two
446 >   additional lines as some ROM versions seem to write behind the frame buffer
447 >   proper
448 > - BeOS/Unix/sysdeps.h: defined X86_ASSEMBLY on i386/GCC systems
449 > - BeOS/Unix/sysdeps.h: redefined get/put_mem() functions to take and return
450 >   an uae_u32 value, added some more x86 optimizations
451 > - Unix/serial_unix.cpp/kSERDBaudRate: rates between 57600 and 65535 result in
452 >   a rate of 57600 [Lauri Pesonen]
453  
454   V0.4 (alpha) - 10.Apr.1999
455 <        - upgraded to UAE 0.8.8 CPU, CPU is now built with "gencpu", UAE sources
456 <          moved to "uae" directory
457 <        - new preferences item "rom" to specify the path of the ROM file
458 <        - new preferences item "ether" for Ethernet driver
459 <        - new INTFLAG_ETHER interrupt flag
460 <        - main_*.cpp: added ChoiceAlert()
461 <        - main_*.cpp: disabled UAE FPU (as it is buggy)
462 <        - serial_*.cpp: device_name is now a "const char *"
463 <        - serial_*.cpp: implemented monitor (#define MONITOR 1 to activate)
464 <        - *.h: changed "#ifdef _XXX_H_" to "#ifdef XXX_H" as symbols starting
465 <          with an underscore are reserved
466 <        - rom_patches.cpp: icon data moved to sony/disk/cdrom.cpp
467 <        - rom_patches.cpp: removed unnecessary a0/a1 save/restore from drivers
468 <        - slot_rom.cpp: removed unnecessary a0/a1 save/restore from drivers
469 <        - serial_defs.h: added error codes
470 <        - AmigaOS: the Kickstart ROM is no longer used to redirect NIL pointer
471 <          accesses as this crashes some machines (especially 68040-based);
472 <          a scratch memory block is used instead
473 <        - AmigaOS/serial_amiga.cpp: implemented
474 <        - AmigaOS/ether_amiga.cpp: implemented
475 <        - AmigaOS/sys_amiga.cpp: SysAddSerialPrefs() now returns real defaults
476 <        - AmigaOS/main_amiga.cpp: when the memory for the Mac RAM and ROM
477 <          cannot be allocated, an error message is displayed (instead of crashing)
478 <        - AmigaOS/main_amiga.cpp: interrupts are disabled during execution
479 <          of an EMUL_OP routine
480 <        - AmigaOS/asm_support.asm: the CTRL-C handler checks for pending
481 <          AmigaDOS operations
482 <        - AmigaOS/asm_support.asm: the interrupt signal exception is rethrown
483 <          when the interrupt level in EmulatedSR gets lowered while interrupts
484 <          are pending
485 <        - BeOS: switched from project files to Be supplied makefile system
486 <        - BeOS/ether_beos.cpp: implemented
487 <        - BeOS/serial_beos.cpp: modem status of parallel device is returned
488 <          as (dsrEvent | dcdEvent | ctsEvent)
489 <        - BeOS/serial_beos.cpp: implemented kSERDBaudRate
490 <        - BeOS/serial_beos.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
491 <        - Unix/serial_unix.cpp: added support for parallel ports
492 <        - Unix/serial_unix.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
493 <        - Unix/video_x.cpp: pressing F12 and q will quit Basilisk II in DGA mode
458 <          (useful when it crashed)
455 > - upgraded to UAE 0.8.8 CPU, CPU is now built with "gencpu", UAE sources moved
456 >   to "uae" directory
457 > - new preferences item "rom" to specify the path of the ROM file
458 > - new preferences item "ether" for Ethernet driver
459 > - new INTFLAG_ETHER interrupt flag
460 > - main_*.cpp: added ChoiceAlert()
461 > - main_*.cpp: disabled UAE FPU (as it is buggy)
462 > - serial_*.cpp: device_name is now a "const char *"
463 > - serial_*.cpp: implemented monitor (#define MONITOR 1 to activate)
464 > - *.h: changed "#ifdef _XXX_H_" to "#ifdef XXX_H" as symbols starting with an
465 >   underscore are reserved
466 > - rom_patches.cpp: icon data moved to sony/disk/cdrom.cpp
467 > - rom_patches.cpp: removed unnecessary a0/a1 save/restore from drivers
468 > - slot_rom.cpp: removed unnecessary a0/a1 save/restore from drivers
469 > - serial_defs.h: added error codes
470 > - AmigaOS: the Kickstart ROM is no longer used to redirect NIL pointer
471 >   accesses as this crashes some machines (especially 68040-based); a scratch
472 >   memory block is used instead
473 > - AmigaOS/serial_amiga.cpp: implemented
474 > - AmigaOS/ether_amiga.cpp: implemented
475 > - AmigaOS/sys_amiga.cpp: SysAddSerialPrefs() now returns real defaults
476 > - AmigaOS/main_amiga.cpp: when the memory for the Mac RAM and ROM cannot be
477 >   allocated, an error message is displayed (instead of crashing)
478 > - AmigaOS/main_amiga.cpp: interrupts are disabled during execution of an
479 >   EMUL_OP routine
480 > - AmigaOS/asm_support.asm: the CTRL-C handler checks for pending AmigaDOS
481 >   operations
482 > - AmigaOS/asm_support.asm: the interrupt signal exception is rethrown when the
483 >   interrupt level in EmulatedSR gets lowered while interrupts are pending
484 > - BeOS: switched from project files to Be supplied makefile system
485 > - BeOS/ether_beos.cpp: implemented
486 > - BeOS/serial_beos.cpp: modem status of parallel device is returned as
487 >   (dsrEvent | dcdEvent | ctsEvent)
488 > - BeOS/serial_beos.cpp: implemented kSERDBaudRate
489 > - BeOS/serial_beos.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
490 > - Unix/serial_unix.cpp: added support for parallel ports
491 > - Unix/serial_unix.cpp: serdtDCE is set in PrimeIn()/PrimeOut()
492 > - Unix/video_x.cpp: pressing F12 and q will quit Basilisk II in DGA mode
493 >   (useful when it crashed)
494  
495   V0.3 (alpha) - 14.Mar.1999
496 <        - Unix/video_x.cpp: added 15, 16 and 32 bit window modes [Bill Huey]
497 <        - BeOS/video_beos.cpp: "screen" prefs item is now either
498 <          "win/<width>/<height>" for window mode or "scr" for full-screen
499 <          mode
465 <        - added documentation of preferences file format to README
496 > - Unix/video_x.cpp: added 15, 16 and 32 bit window modes [Bill Huey]
497 > - BeOS/video_beos.cpp: "screen" prefs item is now either "win/<width>/<height>"
498 >   for window mode or "scr" for full-screen mode
499 > - added documentation of preferences file format to README
500  
501   V0.2 (alpha) - 11.Mar.1999
502 <        - tested with ROM versions 19 and 26
503 <        - prefs.cpp: renamed TYPE_BOOL to TYPE_BOOLEAN beacuse of name clash on
504 <          BeOS R4.1
505 <        - uae_memory.cpp: added support for frame buffer pixel type conversion
506 <          in virtual addressing mode, the Mac frame buffer layout now has to be
507 <          specified in MacFrameLayout (video.h)
508 <        - Unix/video_x.cpp: the "screen" prefs item is now read to select
509 <          window mode (with a specified window size) or DGA mode
510 <        - Unix/video_x.cpp: DGA mode supports 15, 16 and 32 bit modes (packed
511 <          24 bit pixels don't work)
512 <        - Unix/Makefile.linux: added -D_REENTRANT to compiler flags
502 > - tested with ROM versions 19 and 26
503 > - prefs.cpp: renamed TYPE_BOOL to TYPE_BOOLEAN beacuse of name clash on BeOS
504 >   R4.1
505 > - uae_memory.cpp: added support for frame buffer pixel type conversion in
506 >   virtual addressing mode, the Mac frame buffer layout now has to be specified
507 >   in MacFrameLayout (video.h)
508 > - Unix/video_x.cpp: the "screen" prefs item is now read to select window mode
509 >   (with a specified window size) or DGA mode
510 > - Unix/video_x.cpp: DGA mode supports 15, 16 and 32 bit modes (packed 24 bit
511 >   pixels don't work)
512 > - Unix/Makefile.linux: added -D_REENTRANT to compiler flags
513  
514   V0.2 (alpha) - 23.Jan.1999
515 <        - first alpha release
515 > - first alpha release

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines