]> git.sesse.net Git - vlc/commitdiff
* ALL: bumped version number to 0.6.2-cvs
authorGildas Bazin <gbazin@videolan.org>
Sat, 2 Aug 2003 14:06:23 +0000 (14:06 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sat, 2 Aug 2003 14:06:23 +0000 (14:06 +0000)
* modules/video_output/x11/xcommon.c: closing the video window or using the escape key doesn't exit VLC anymore but stop the input instead.

NEWS
configure.ac
extras/MacOSX/Resources/English.lproj/InfoPlist.strings
extras/MacOSX/vlc.pbproj/project.pbxproj
modules/video_output/x11/xcommon.c

diff --git a/NEWS b/NEWS
index 29cf7bef30e4570607c26c61a49e4039ee637e5c..3ef3e7e281a9828f91a80017ef83fae64caa3c41 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,7 @@
-$Id: NEWS,v 1.60 2003/07/28 20:23:58 jpsaman Exp $
+$Id: NEWS,v 1.61 2003/08/02 14:06:22 gbazin Exp $
+
+Changes between 0.6.1 and 0.6.2:
+---------------------------------
 
 Changes between 0.6.0 and 0.6.1:
 ---------------------------------
index 670d9124a7c6f8ec3ef144e2a76f6436ac83bc80..dba950db06fbd08f0db3464862080faa8b19644c 100644 (file)
@@ -1,7 +1,7 @@
 dnl Autoconf settings for vlc
-dnl $Id: configure.ac,v 1.51 2003/08/01 00:40:05 fenrir Exp $
+dnl $Id: configure.ac,v 1.52 2003/08/02 14:06:22 gbazin Exp $
 
-AC_INIT(vlc,0.6.1)
+AC_INIT(vlc,0.6.2-cvs)
 
 CONFIGURE_LINE="$0 $*"
 CODENAME="Trevelyan"
@@ -13,7 +13,7 @@ AC_CANONICAL_SYSTEM
 
 dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
 dnl them. And we need the comma otherwize automake will choke on it.
-AM_INIT_AUTOMAKE(vlc,0.6.1)
+AM_INIT_AUTOMAKE(vlc,0.6.2-cvs)
 AM_CONFIG_HEADER(config.h)
 
 dnl
index f70620ac14f27bada51103fedbbc7e0ba53c1d39..dca415e2e9e57e081d94dcd9f2a933c6a6d135b4 100644 (file)
@@ -1,6 +1,6 @@
 /* Localized versions of Info.plist keys */
 
 CFBundleName = "VLC";
-CFBundleShortVersionString = "0.6.1";
-CFBundleGetInfoString = "VLC media player 0.6.1, Copyright (c) 1996-2003 VideoLAN.";
+CFBundleShortVersionString = "0.6.2-cvs";
+CFBundleGetInfoString = "VLC media player 0.6.2-cvs, Copyright (c) 1996-2003 VideoLAN.";
 NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN.";
index 9d0fe38705979e5b0666da42b1e4afea5b37a767..a682d268d9dff9b30a7acdc5d684c3df1fcb93d9 100644 (file)
        <key>CFBundleExecutable</key>
        <string>VLC</string>
        <key>CFBundleGetInfoString</key>
-       <string>VLC media player 0.6.1, Copyright (c) 1996-2003 VideoLAN.</string>
+       <string>VLC media player 0.6.2-cvs, Copyright (c) 1996-2003 VideoLAN.</string>
        <key>CFBundleIconFile</key>
        <string>vlc.icns</string>
        <key>CFBundleIdentifier</key>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
-       <string>0.6.1</string>
+       <string>0.6.2-cvs</string>
        <key>CFBundleSignature</key>
        <string>VLC#</string>
        <key>CFBundleURLTypes</key>
                </dict>
        </array>
        <key>CFBundleVersion</key>
-       <string>0.6.1</string>
+       <string>0.6.2-cvs</string>
        <key>NSAppleScriptEnabled</key>
        <string>YES</string>
        <key>NSMainNibFile</key>
index 8c7a360ccd5189a276d6a4cd0cb657fae9c513d2..9c1a300ad9108a292760c06497fe02c5a25ed1df 100644 (file)
@@ -2,7 +2,7 @@
  * xcommon.c: Functions common to the X11 and XVideo plugins
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: xcommon.c,v 1.26 2003/07/29 21:14:10 gbazin Exp $
+ * $Id: xcommon.c,v 1.27 2003/08/02 14:06:22 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -525,7 +525,16 @@ static int ManageVideo( vout_thread_t *p_vout )
                 }
                 else
                 {
-                    p_vout->p_vlc->b_die = 1;
+                    /* the user wants to close the window */
+                    playlist_t * p_playlist =
+                        (playlist_t *)vlc_object_find( p_vout,
+                                                       VLC_OBJECT_PLAYLIST,
+                                                       FIND_ANYWHERE );
+                    if( p_playlist != NULL )
+                    {
+                        playlist_Stop( p_playlist );
+                        vlc_object_release( p_playlist );
+                    }
                 }
                 break;
             case XK_Menu:
@@ -820,7 +829,15 @@ static int ManageVideo( vout_thread_t *p_vout )
                && ((Atom)xevent.xclient.data.l[0]
                      == p_vout->p_sys->p_win->wm_delete_window ) )
         {
-            p_vout->p_vlc->b_die = 1;
+            /* the user wants to close the window */
+            playlist_t * p_playlist =
+                (playlist_t *)vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST,
+                                               FIND_ANYWHERE );
+            if( p_playlist != NULL )
+            {
+                playlist_Stop( p_playlist );
+                vlc_object_release( p_playlist );
+            }
         }
     }