Commit e77da242 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: hide the 'embedded vout' setting, since we don't want it to be used. NEWS

parent 434bf4c6
...@@ -7,17 +7,18 @@ Various bugfixes: ...@@ -7,17 +7,18 @@ Various bugfixes:
* Resume playback for viewing content over FTP * Resume playback for viewing content over FTP
Security updates: Security updates:
* VideoLAN-SA-0704 * VideoLAN-SA-0801
- Subtitle demuxers - Subtitle demuxers
- HTTP Interface - HTTP Interface
* VideoLAN-SA-0705 * VideoLAN-SA-0802
- Mozilla and ActiveX plugins - Mozilla and ActiveX plugins
- M3U Playlist Demuxer - M3U Playlist Demuxer
Audio filter: Audio filter:
* Fixed DTS to S/PDIF converter * Fixed DTS to S/PDIF converter
Mac OS X Interface: Mac OS X Interface & Port:
* Restored compatibility with Mac OS X 10.3.9
* Corrected fullscreen behavior on multi-screen setups * Corrected fullscreen behavior on multi-screen setups
* Improved behavior of the Preferences window * Improved behavior of the Preferences window
* VLC no longer crashes on quit while playing * VLC no longer crashes on quit while playing
......
...@@ -677,23 +677,6 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -677,23 +677,6 @@ static VLCMain *_o_sharedMainInstance = nil;
[o_controls setupVarMenuItem: o_mi_add_intf target: (vlc_object_t *)p_intf [o_controls setupVarMenuItem: o_mi_add_intf target: (vlc_object_t *)p_intf
var: "intf-add" selector: @selector(toggleVar:)]; var: "intf-add" selector: @selector(toggleVar:)];
#if 0
/* check whether the user runs a valid version of OSX; alert is auto-released */
if( MACOS_VERSION < 10.4f )
{
NSAlert *ourAlert;
int i_returnValue;
ourAlert = [NSAlert alertWithMessageText: _NS("Your version of Mac OS X is not supported")
defaultButton: _NS("Quit")
alternateButton: NULL
otherButton: NULL
informativeTextWithFormat: _NS("VLC media player requires Mac OS X 10.4 or higher.")];
[ourAlert setAlertStyle: NSCriticalAlertStyle];
i_returnValue = [ourAlert runModal];
[NSApp terminate: self];
}
#endif
vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW ); vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
} }
......
...@@ -94,7 +94,7 @@ vlc_module_begin(); ...@@ -94,7 +94,7 @@ vlc_module_begin();
set_category( CAT_INTERFACE ); set_category( CAT_INTERFACE );
set_subcategory( SUBCAT_INTERFACE_MAIN ); set_subcategory( SUBCAT_INTERFACE_MAIN );
add_bool( "macosx-embedded", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT, add_bool( "macosx-embedded", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT,
VLC_FALSE ); VLC_TRUE );
add_bool( "macosx-fspanel", 1, NULL, FSPANEL_TEXT, FSPANEL_LONGTEXT, add_bool( "macosx-fspanel", 1, NULL, FSPANEL_TEXT, FSPANEL_LONGTEXT,
VLC_FALSE ); VLC_FALSE );
add_bool( "macosx-wizard-keep", 1, NULL, WIZARD_OPTIONS_SAVING_TEXT, add_bool( "macosx-wizard-keep", 1, NULL, WIZARD_OPTIONS_SAVING_TEXT,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment