[Fuse-for-macosx-commits] SF.net SVN: fuse-for-macosx: [520] trunk/fuse
Brought to you by:
fredm
|
From: <fr...@us...> - 2008-04-29 12:23:54
|
Revision: 520
http://fuse-for-macosx.svn.sourceforge.net/fuse-for-macosx/?rev=520&view=rev
Author: fredm
Date: 2008-04-29 05:24:00 -0700 (Tue, 29 Apr 2008)
Log Message:
-----------
Add UI support for .udi, .fdi and .scl files for Beta disk images.
Modified Paths:
--------------
trunk/fuse/TODO
trunk/fuse/fusepb/controllers/FuseController.m
trunk/fuse/fusepb/resources/Fuse Help/html/changelog.html
Modified: trunk/fuse/TODO
===================================================================
--- trunk/fuse/TODO 2008-04-28 13:55:35 UTC (rev 519)
+++ trunk/fuse/TODO 2008-04-29 12:24:00 UTC (rev 520)
@@ -2,9 +2,11 @@
* Pentagon port #ff returning floating bus issues - it does it because the RusFAQ says so?
* Timex 2068 fusetests
-* Other disk write formats
+* Add TITLE tags to help files
* Console mode GUI
-* SZX ZX Printer block
+* C version of standard tape loader
+* Add "proper" preferences window
+* SZX ZX Printer block?
* PAL Compsite emulation
* Seperate out sound buffer interleaving code to allow for the use of hardware etc.
sound mixing
Modified: trunk/fuse/fusepb/controllers/FuseController.m
===================================================================
--- trunk/fuse/fusepb/controllers/FuseController.m 2008-04-28 13:55:35 UTC (rev 519)
+++ trunk/fuse/fusepb/controllers/FuseController.m 2008-04-29 12:24:00 UTC (rev 520)
@@ -204,7 +204,7 @@
[plus3FileTypes retain];
betaFileTypes = [NSMutableArray arrayWithObjects:@"trd", @"TRD", @"scl",
- @"SCL", nil];
+ @"SCL", @"udi", @"UDI", @"fdi", "@FDI", nil];
[betaFileTypes retain];
plusdFileTypes = [NSMutableArray arrayWithObjects:@"dsk", @"DSK", @"mgt",
@@ -1756,7 +1756,10 @@
[[DisplayOpenGLView instance] pause];
NSString *title = [NSString stringWithFormat:@"Write Beta Disk %c: As", drive];
- filename = cocoaui_savepanel_get_filename( title, [NSArray arrayWithObjects:@"trd", nil] );
+ filename =
+ cocoaui_savepanel_get_filename( title,
+ [NSArray arrayWithObjects:@"trd", @"scl",
+ @"udi", @"fdi", nil] );
if( !filename ) { [[DisplayOpenGLView instance] unpause]; return 1; }
@@ -1785,8 +1788,10 @@
[[DisplayOpenGLView instance] pause];
NSString *title = [NSString stringWithFormat:@"Write +D Disk %c: As", drive];
- filename = cocoaui_savepanel_get_filename( title,
- [NSArray arrayWithObjects:@"mgt", @"img", nil] );
+ filename =
+ cocoaui_savepanel_get_filename( title,
+ [NSArray arrayWithObjects:@"mgt", @"img",
+ nil] );
if( !filename ) { [[DisplayOpenGLView instance] unpause]; return 1; }
Modified: trunk/fuse/fusepb/resources/Fuse Help/html/changelog.html
===================================================================
--- trunk/fuse/fusepb/resources/Fuse Help/html/changelog.html 2008-04-28 13:55:35 UTC (rev 519)
+++ trunk/fuse/fusepb/resources/Fuse Help/html/changelog.html 2008-04-29 12:24:00 UTC (rev 520)
@@ -30,6 +30,14 @@
</font><font face="Lucida Grande,Helvetica,Arial">graphics mode
in SpotLight importer
(Fredrick Meunier)</font><font face="Lucida Grande,Helvetica,Arial">.</font></li>
+ <li><font face="Lucida Grande,Helvetica,Arial">Add UI support for
+.udi and .fdi files to
+be opened as Beta disk images</font><font
+ face="Lucida Grande,Helvetica,Arial"> (Fredrick Meunier).</font></li>
+ <li><font face="Lucida Grande,Helvetica,Arial">Add UI support for </font><font
+ face="Lucida Grande,Helvetica,Arial">.udi, .fdi and .scl files to
+be saved as Beta disk images</font><font
+ face="Lucida Grande,Helvetica,Arial"> (Fredrick Meunier).</font></li>
</ul>
</ul>
<h2><font face="Lucida Grande,Helvetica,Arial">What's new in Fuse
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|