dstorey said:
Heres the list
1) Better windows networking
Being able to read and write to post fat32 file systems would be nice
Panther added read-only NTFS. It's a start...
Support for quicktime content/screensavers as a background image. Having images fade in and out and possibly pan would would add to the wow effect if done correctly. Although a full movie would be too distracting, a movie that slowly changed over time would be nice, with subtle changes
You can do this already. (It's not supported or very easy, but you don't have to recompile your kernel or anything, IIRC.) Search on Mac OS X Hints.
Being able to switch off eye candy for old machines would be nice
Since Panther, I really haven't had any complaints on my trusty old iBook. I appreciate that iTunes doesn't do live window resizing--it would be nice to have that for more apps (as an easily configurable option).
6) Compatibility
FreeBSD has a linux compatibility layer, why not os x? PPC Linux apps are not as wide spread as x86 but it would add options, especially for none open source linux apps such as DB2 etc.
MOSR (not the best of sources) says it's coming...
X11/Linux apps to be more integrated a la carbon/cocoa and java apps. Make it so they use aqua look and feel by default where possible.
I'm pretty sure the natures of X11 and Quartz make that almost impossible.
Make it so you dont have to open X11 first. Add X11 to System Preferences pane to set the options.
Yeah, those would both be nice...
Add QT and Gnome libs to allow KDE/Gnome apps to work in OS X
It's already being done. Check out
http://ranger.befunk.com/blog/.
Add DarwinPorts with a GUI as an optional install or core install.
This showed up in some of the earlier builds of Panther (the WWDC preview until 7Bsomething). I'd have to assume it's coming at some point...
Improve textEdits doc format capability and mails enchange capability.
Definitely.
Allow doc reading/writing to be system wide using frameworks in cocoa.
I think that's already happened...
7) File System
May as well jump on the BeOS file system. I've not used BeOS but i hear its good. I'm reading the guys book at the moment.
He's worked for Apple for the last couple of years now. BeOS-style
something is coming...we just don't know what.
🙂
11) iChat
voice/video mail would be nice (to mac only users at present i guess as wont be supported in aol im)
Eh? We already have AV chat with AIM 5.5 or later...
15) Quicktime
Abouttime full screen was allowed for free.
This is my take on an AppleScript that you can find all over the place, including on Mac OS X Hints. It's not the most convenient thing ever, and I barely know AppleScript so I'm sure there's plenty of syntactical or other weirdness, but I use it when necessary and it works fine:
Code:
tell application "QuickTime Player"
set request to display dialog "Select a size, or cancel. If you choose Double Size, you can switch among half, normal, and double sizes using Command-0, Command-1, and Command-2, respectively." buttons {"Cancel", "Double Size", "Full Screen"} default button "Full Screen"
if button returned of request is "Double Size" then
present movie 1 scale double
else if button returned of request is "Full Screen" then
present movie 1 scale screen
end if
end tell
Oh, I forgot to mention: I think the script's dialog looks better if you add a line break or two after "respectively." (note the period) but before the end quote.
FWIW
WM