]> git.sesse.net Git - vlc/commitdiff
ALL: fixed: http://bugzilla.videolan.org/cgi-bin/bugzilla/show_bug.cgi?id=425
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 6 Mar 2003 12:05:05 +0000 (12:05 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 6 Mar 2003 12:05:05 +0000 (12:05 +0000)
     having two close buttons in one window goes against Apple's UIG.

NEWS
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
modules/gui/macosx/intf.h
modules/gui/macosx/intf.m

diff --git a/NEWS b/NEWS
index 46a8047e767154b639e3fa1e08b1326bdde295bc..d9b24bb7b8374cd13e955c5c7606c1df913117f3 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-$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.
index 0c4e77c8c6132d50ade4df50b1683890e0c486e5..46fa025f1ced044f4d8ea1547bacf8fce6ee44d6 100644 (file)
                 "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; 
index 7bf4a3cf0e3d28e2c8f03d4f45ed26806093d4f7..4f7956f9be638c1aab7b63bd64d821701db3e626 100644 (file)
@@ -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>
index b0abf493a6e76e5b239546dc4bd03e88efafdb46..fadbaa1dac41f8a6fc3e4186f50867b6fda6223e 100644 (file)
Binary files a/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib and b/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib differ
index 1c8866510ee951a1b32b833206a976f534fc3a70..a5dda7767bd9c75dfb14ce4f2d9f6a92113df527 100644 (file)
@@ -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 */
index 7c2f3b91346a5e63658209082b2b9497ff1aca18..fc3f576a7633004ba331db906e88bc7adeb07f5a 100644 (file)
@@ -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 */