Commit 9940fc7b authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

ALL: fixed: http://bugzilla.videolan.org/cgi-bin/bugzilla/show_bug.cgi?id=425

     having two close buttons in one window goes against Apple's UIG.
parent 9c841645
$Id: NEWS,v 1.28 2003/03/05 00:05:23 sigmunau Exp $
$Id: NEWS,v 1.29 2003/03/06 12:05:05 hartman Exp $
Changes between 0.5.1a and 0.5.2:
--------------------------------
......@@ -12,6 +12,7 @@ Core support:
Codecs:
* support for DV audio through the ffmpeg library.
* new but basic MPEG video decoder based on libmpeg2.
* fixed a major bug in LPCM code ( fixes a problem with iDVD disks )
UNIX ports:
* fixed the GNU-pth support.
......@@ -23,8 +24,9 @@ Win32 port:
* fixed the MSVC project files generation.
Mac OS X port:
* several fixes for multi channel audio devices. AC3 over SPDIF with M-Audio Sonica Theater still does not work. this is most likely a driver bug and has been reported to M-Audio. ( Delta, Griffin iMate and MOTU firewire devices should work).
* several fixes for multi channel audio devices. AC3 over SPDIF with M-Audio Sonica Theater still does not work. this is most likely a driver bug and has been reported to M-Audio. ( Sonica, Revolution, Delta, Griffin iMate and MOTU firewire devices should work).
* new info panel.
* very prelimenary support for VLC control via applescript.
Linupy port:
* there is a whole new port for the linupy distribution used by o.a. the YOPY PDA. It is still experimental, please test it.
......
......@@ -134,7 +134,6 @@
"o_mi_vol_up" = id;
"o_mi_website" = id;
"o_msgs_btn_crashlog" = id;
"o_msgs_btn_ok" = id;
"o_msgs_panel" = id;
"o_mu_audio" = id;
"o_mu_controls" = id;
......
......@@ -23,9 +23,9 @@
</array>
<key>IBOpenObjects</key>
<array>
<integer>29</integer>
<integer>21</integer>
<integer>1194</integer>
<integer>29</integer>
</array>
<key>IBSystem Version</key>
<string>6I32</string>
......
......@@ -2,7 +2,7 @@
* intf.h: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.h,v 1.31 2003/03/06 11:43:07 hartman Exp $
* $Id: intf.h,v 1.32 2003/03/06 12:05:05 hartman Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -123,7 +123,6 @@ struct intf_sys_t
IBOutlet id o_messages; /* messages tv */
IBOutlet id o_msgs_panel; /* messages panel */
IBOutlet id o_msgs_btn_ok; /* messages btn */
NSMutableArray * o_msg_arr; /* messages array */
NSLock * o_msg_lock; /* messages lock */
IBOutlet id o_msgs_btn_crashlog; /* messages open crashlog */
......
......@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.66 2003/03/06 11:43:07 hartman Exp $
* $Id: intf.m,v 1.67 2003/03/06 12:05:05 hartman Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -293,7 +293,6 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
[o_msgs_panel setDelegate: self];
[o_msgs_panel setTitle: _NS("Messages")];
[o_msgs_panel setExcludedFromWindowsMenu: TRUE];
[o_msgs_btn_ok setTitle: _NS("Close")];
[o_msgs_btn_crashlog setTitle: _NS("Open CrashLog")];
/* main menu */
......
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