Commit d8af1949 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* ALL: Bumped version to 0.5.3-cvs

* 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)
parent e496d0ea
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
AC_INIT(vlc,0.5.2) AC_INIT(vlc,0.5.3-cvs)
CONFIGURE_LINE="$0 $*" CONFIGURE_LINE="$0 $*"
CODENAME="Natalya" CODENAME="Natalya"
...@@ -11,7 +11,7 @@ AC_CANONICAL_SYSTEM ...@@ -11,7 +11,7 @@ AC_CANONICAL_SYSTEM
dnl XXX: we don't put any flags here, because automake 1.5 doesn't support 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. 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) AM_CONFIG_HEADER(config.h)
dnl dnl
......
/* Localized versions of Info.plist keys */ /* Localized versions of Info.plist keys */
CFBundleName = "VLC"; CFBundleName = "VLC";
CFBundleShortVersionString = "0.5.2-test3"; CFBundleShortVersionString = "0.5.3-cvs";
CFBundleGetInfoString = "VLC media player 0.5.2-test3, Copyright (c) 1996-2003 VideoLAN."; CFBundleGetInfoString = "VLC media player 0.5.3-cvs, Copyright (c) 1996-2003 VideoLAN.";
NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN."; NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN.";
...@@ -356,7 +356,7 @@ ...@@ -356,7 +356,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>VLC</string> <string>VLC</string>
<key>CFBundleGetInfoString</key> <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> <key>CFBundleIconFile</key>
<string>vlc.icns</string> <string>vlc.icns</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
...@@ -368,7 +368,7 @@ ...@@ -368,7 +368,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.5.2</string> <string>0.5.3-cvs</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VLC#</string> <string>VLC#</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
...@@ -415,7 +415,7 @@ ...@@ -415,7 +415,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.5.2</string> <string>0.5.3-cvs</string>
<key>NSAppleScriptEnabled</key> <key>NSAppleScriptEnabled</key>
<string>YES</string> <string>YES</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* info.m: MacOS X info panel * info.m: MacOS X info panel
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * 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> * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
* *
...@@ -135,8 +135,8 @@ ...@@ -135,8 +135,8 @@
while( p_info ) while( p_info )
{ {
[o_content appendFormat: @"%s: %s\n\n", p_info->psz_name, [o_content appendFormat: @"%@: %@\n\n", [NSApp localizedString: p_info->psz_name],
p_info->psz_value]; [NSApp localizedString: p_info->psz_value]];
p_info = p_info->p_next; p_info = p_info->p_next;
} }
......
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