[Fuse-for-macosx-commits] SF.net SVN: fuse-for-macosx:[568] branches/Release-0_10_0-branch/fuse
Brought to you by:
fredm
From: <fr...@us...> - 2008-12-12 12:14:07
|
Revision: 568 http://fuse-for-macosx.svn.sourceforge.net/fuse-for-macosx/?rev=568&view=rev Author: fredm Date: 2008-12-12 12:14:01 +0000 (Fri, 12 Dec 2008) Log Message: ----------- Merge in vendor 0.10.0.1 release changes. Modified Paths: -------------- branches/Release-0_10_0-branch/fuse/ChangeLog branches/Release-0_10_0-branch/fuse/Makefile.am branches/Release-0_10_0-branch/fuse/README branches/Release-0_10_0-branch/fuse/compat/unix/file.c branches/Release-0_10_0-branch/fuse/configure.in branches/Release-0_10_0-branch/fuse/hacking/ChangeLog branches/Release-0_10_0-branch/fuse/hacking/cvs-tags branches/Release-0_10_0-branch/fuse/man/fuse.1 branches/Release-0_10_0-branch/fuse/ui/fb/Makefile.am Modified: branches/Release-0_10_0-branch/fuse/ChangeLog =================================================================== --- branches/Release-0_10_0-branch/fuse/ChangeLog 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/ChangeLog 2008-12-12 12:14:01 UTC (rev 568) @@ -1,5 +1,15 @@ -2008-11-?? Philip Kendall <phi...@sh...> +2008-12-10 Philip Kendall <phi...@sh...> + * Fuse 0.10.0.1 released + + * Writing files would not truncate the file at the correct point, + leading to corrupt files when overwriting an existing file + (Philip Kendall; thanks, Matthew Westcott). + + * Distribute ui/fb/fbmouse.h (Fredrick Meunier; thanks, rkd77). + +2008-12-03 Philip Kendall <phi...@sh...> + * Fuse 0.10.0 released * New upd765 FDC emulation; all known +3 DSK images now work (Gergely Modified: branches/Release-0_10_0-branch/fuse/Makefile.am =================================================================== --- branches/Release-0_10_0-branch/fuse/Makefile.am 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/Makefile.am 2008-12-12 12:14:01 UTC (rev 568) @@ -134,6 +134,7 @@ @WINDRES_OBJ@ fuse_DEPENDENCIES = @UI_LIBS@ \ + compat/@COMPAT_OSNAME@/libcompatos.a disk/libdisk.a \ debugger/libdebugger.a \ machines/libmachines.a \ Modified: branches/Release-0_10_0-branch/fuse/README =================================================================== --- branches/Release-0_10_0-branch/fuse/README 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/README 2008-12-12 12:14:01 UTC (rev 568) @@ -1,5 +1,5 @@ -The Free Unix Spectrum Emulator (Fuse) 0.10.0 -============================================= +The Free Unix Spectrum Emulator (Fuse) 0.10.0.1 +=============================================== Fuse (the Free Unix Spectrum Emulator) was originally, and somewhat unsurprisingly, an emulator of the ZX Spectrum (a popular 1980s home @@ -150,6 +150,6 @@ ( http://www.worldofspectrum.org/faq/index.html ) first! Philip Kendall <phi...@sh...> -3 December 2008 +10 December 2008 $Id: README 3866 2008-11-29 17:05:40Z pak21 $ Modified: branches/Release-0_10_0-branch/fuse/compat/unix/file.c =================================================================== --- branches/Release-0_10_0-branch/fuse/compat/unix/file.c 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/compat/unix/file.c 2008-12-12 12:14:01 UTC (rev 568) @@ -47,7 +47,8 @@ compat_fd compat_file_open( const char *path, int write ) { - int flags = write ? O_WRONLY | O_CREAT | O_BINARY : O_RDONLY | O_BINARY; + int flags = O_BINARY; + flags |= write ? O_WRONLY | O_CREAT | O_TRUNC : O_RDONLY; return open( path, flags, 0666 ); } Modified: branches/Release-0_10_0-branch/fuse/configure.in =================================================================== --- branches/Release-0_10_0-branch/fuse/configure.in 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/configure.in 2008-12-12 12:14:01 UTC (rev 568) @@ -24,7 +24,7 @@ AC_CANONICAL_SYSTEM dnl Use automake to produce `Makefile.in' -AM_INIT_AUTOMAKE(fuse, 0.10.0) +AM_INIT_AUTOMAKE(fuse, 0.10.0.1) dnl Checks for programs. AC_PROG_CC Modified: branches/Release-0_10_0-branch/fuse/hacking/ChangeLog =================================================================== --- branches/Release-0_10_0-branch/fuse/hacking/ChangeLog 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/hacking/ChangeLog 2008-12-12 12:14:01 UTC (rev 568) @@ -2954,3 +2954,8 @@ 20081129 configure.in,man/fuse.1,README: final tweaks for 0.10.0 release (Release_0_10_0-branch). 20081201 fuse.c: update libspectrum version needed (Release_0_10_0-branch). +20081206 ui/fb/Makefile.am: distribute fbmouse.h (thanks, rkd77) (Fred). +20081210 Makefile.am,compat/unix/file.c: must open files for writing with + O_TRUNC to ensure that any old data is cleared out. Also fix a + dependency problem (thanks, Matthew Westcott). +20081210 ChangeLog,configure.in,man/fuse.1,README: update for 0.10.0.1 release. Modified: branches/Release-0_10_0-branch/fuse/hacking/cvs-tags =================================================================== --- branches/Release-0_10_0-branch/fuse/hacking/cvs-tags 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/hacking/cvs-tags 2008-12-12 12:14:01 UTC (rev 568) @@ -164,6 +164,10 @@ | | Release-0_9_0-branch | +-\ -| | Release-0_10_0-branch +| | Release_0_10_0-pre1 +| | Release_0_10_0 +| | Release_0_10_0_1 +| | +| | Release_0_10_0-branch | HEAD Modified: branches/Release-0_10_0-branch/fuse/man/fuse.1 =================================================================== --- branches/Release-0_10_0-branch/fuse/man/fuse.1 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/man/fuse.1 2008-12-12 12:14:01 UTC (rev 568) @@ -23,7 +23,7 @@ .\" E-mail: phi...@sh... .\" .\" -.TH fuse 1 "3rd December, 2008" "Version 0.10.0" "Emulators" +.TH fuse 1 "10th December, 2008" "Version 0.10.0.1" "Emulators" .\" .\"------------------------------------------------------------------ .\" Modified: branches/Release-0_10_0-branch/fuse/ui/fb/Makefile.am =================================================================== --- branches/Release-0_10_0-branch/fuse/ui/fb/Makefile.am 2008-12-12 12:00:42 UTC (rev 567) +++ branches/Release-0_10_0-branch/fuse/ui/fb/Makefile.am 2008-12-12 12:14:01 UTC (rev 568) @@ -42,6 +42,7 @@ @PERL@ -I$(srcdir)/../../perl $(srcdir)/../../keysyms.pl fb $(srcdir)/../../keysyms.dat > $@.tmp && mv $@.tmp $@ noinst_HEADERS = fbdisplay.h \ - fbkeyboard.h + fbkeyboard.h \ + fbmouse.h CLEANFILES = keysyms.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |