]> git.sesse.net Git - vlc/commitdiff
* ALL: Bumped version to 0.5.3-cvs
authorDerk-Jan Hartman <hartman@videolan.org>
Fri, 14 Mar 2003 01:23:06 +0000 (01:23 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Fri, 14 Mar 2003 01:23:06 +0000 (01:23 +0000)
* modules/gui/macosx/info.m: Now we show strings (with accents) in ID3 tags
  correctly, but now the name of the file as reported in the playlist info
  gets displayed incorrectly if it has accents. (going for ID3 at the
  moment. filenames are named a plenty in the correct way)

configure.ac.in
extras/MacOSX/Resources/English.lproj/InfoPlist.strings
extras/MacOSX/vlc.pbproj/project.pbxproj
modules/gui/macosx/info.m

index 59c11e7a647529821f91300347c28c455ea68138..89d437cd18cfd2269ca2b1b8fd1fdbb2e2e09272 100644 (file)
@@ -1,6 +1,6 @@
 dnl Autoconf settings for vlc
 
-AC_INIT(vlc,0.5.2)
+AC_INIT(vlc,0.5.3-cvs)
 
 CONFIGURE_LINE="$0 $*"
 CODENAME="Natalya"
@@ -11,7 +11,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.5.2)
+AM_INIT_AUTOMAKE(vlc,0.5.3-cvs)
 AM_CONFIG_HEADER(config.h)
 
 dnl
index de7f2e8f09f5251ad055ac30b26f5391e9cb52d6..25f14fda568d2e23c671dc3953fdbbaad589fe42 100644 (file)
@@ -1,6 +1,6 @@
 /* Localized versions of Info.plist keys */
 
 CFBundleName = "VLC";
-CFBundleShortVersionString = "0.5.2-test3";
-CFBundleGetInfoString = "VLC media player 0.5.2-test3, Copyright (c) 1996-2003 VideoLAN.";
+CFBundleShortVersionString = "0.5.3-cvs";
+CFBundleGetInfoString = "VLC media player 0.5.3-cvs, Copyright (c) 1996-2003 VideoLAN.";
 NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN.";
index 66b13867ea705c12be152068116e5f46ef067125..baa4fa9179192e2ce42cbf1639e01359d80a03c6 100644 (file)
        <key>CFBundleExecutable</key>
        <string>VLC</string>
        <key>CFBundleGetInfoString</key>
-       <string>VLC media player 0.5.2, Copyright (c) 1996-2003 VideoLAN.</string>
+       <string>VLC media player 0.5.3-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.5.2</string>
+       <string>0.5.3-cvs</string>
        <key>CFBundleSignature</key>
        <string>VLC#</string>
        <key>CFBundleURLTypes</key>
                </dict>
        </array>
        <key>CFBundleVersion</key>
-       <string>0.5.2</string>
+       <string>0.5.3-cvs</string>
        <key>NSAppleScriptEnabled</key>
        <string>YES</string>
        <key>NSMainNibFile</key>
index 470bdaa1e44b23e63ec10a26e31a9f5c063caefe..70ce18c61e4382039c9a5ec4d72338e8d509e925 100644 (file)
@@ -2,7 +2,7 @@
  * info.m: MacOS X info panel
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: info.m,v 1.3 2003/02/23 05:53:53 jlj Exp $
+ * $Id: info.m,v 1.4 2003/03/14 01:23:06 hartman Exp $
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
  *
 
     while( p_info )
     {
-        [o_content appendFormat: @"%s: %s\n\n", p_info->psz_name,
-                                                p_info->psz_value]; 
+        [o_content appendFormat: @"%@: %@\n\n", [NSApp localizedString: p_info->psz_name],
+                                                [NSApp localizedString: p_info->psz_value]]; 
         p_info = p_info->p_next;
     }