Commit cafbde3b authored by Antoine Cellerier's avatar Antoine Cellerier

* prepare 0.8.2-test1

 * update NEWS
parent b88c8a03
This diff is collapsed.
$Id$ $Id$
Changes between 0.8.1 and 0.8.2-svn2: Changes between 0.8.1 and 0.8.2-test1:
----------------------------------------------------- -----------------------------------------------------
Core support: Core support:
...@@ -19,8 +19,11 @@ Core support: ...@@ -19,8 +19,11 @@ Core support:
* Renamed --spumargin to --sub-margin * Renamed --spumargin to --sub-margin
* Renamed --audio-channel to --audio-track * Renamed --audio-channel to --audio-track
* Renamed --filter to --vout-filter * Renamed --filter to --vout-filter
Multiple video filters are now seperated by ',' instead of ':' * filters, extra interfaces, visualizations and service discovery modules are
now seperated by ':' instead of ','
* Access filter architecture
* Track selection based on preferred language (--sub-language and --audio-language) * Track selection based on preferred language (--sub-language and --audio-language)
* Zsh autocompletion for vlc's arguments
* Many bugfixes... * Many bugfixes...
Input/Demuxers: Input/Demuxers:
...@@ -32,6 +35,7 @@ Input/Demuxers: ...@@ -32,6 +35,7 @@ Input/Demuxers:
* RTSP UDP->TCP rollover support * RTSP UDP->TCP rollover support
* Massive Matroska improvements * Massive Matroska improvements
* Support for XA and VOC audio files * Support for XA and VOC audio files
* TiVo demuxer
* Samba (Windows shares) access module * Samba (Windows shares) access module
* Improved CDDAX module (uses several playlist items) * Improved CDDAX module (uses several playlist items)
* Fixes to Linux DVB support * Fixes to Linux DVB support
...@@ -43,13 +47,18 @@ Decoders / Encoders: ...@@ -43,13 +47,18 @@ Decoders / Encoders:
* Improvements to DVB subtitles encoder * Improvements to DVB subtitles encoder
* Support for Apple Lossless Audio Codec * Support for Apple Lossless Audio Codec
Services discovery Access filters:
* New Record and Timeshift filters
Services discovery:
* New type of modules, that add items to the playlist * New type of modules, that add items to the playlist
* Brand new SAP module * Brand new SAP module
* To enable SAP, you now need to use "-S sap" or add SAP in * To enable SAP, you now need to use "-S sap" or add SAP in
the "Manage->Services Discovery" menu the "Manage->Services Discovery" menu
( IPv6 SAP is now enabled by default )
* HAL (Hardware Abstraction Layer) discovery * HAL (Hardware Abstraction Layer) discovery
* DAAP (iTunes shares) support * DAAP (iTunes shares) support
* Shoutcast
Audio output: Audio output:
* Support for 20/24 bits LPCM * Support for 20/24 bits LPCM
...@@ -59,7 +68,6 @@ Video output: ...@@ -59,7 +68,6 @@ Video output:
* Image file video output (png) * Image file video output (png)
* Motion detection filter (can trigger playlist actions) * Motion detection filter (can trigger playlist actions)
* Improvements to wall video filter * Improvements to wall video filter
* Mosaic (picture-in-picture system)
* Support for font color and opacity * Support for font color and opacity
* Fixed Mac OS X OpenGL output * Fixed Mac OS X OpenGL output
...@@ -69,16 +77,19 @@ Stream output: ...@@ -69,16 +77,19 @@ Stream output:
* VLM / VoD * VLM / VoD
- Ability to load a configuration file on startup - Ability to load a configuration file on startup
- Seeking support in VoD streams - Seeking support in VoD streams
* Mosaic (picture-in-picture system)
Interfaces: Interfaces:
* wxWidgets * wxWidgets
- Redesigned playlist : add playlist, add directory, ... - Redesigned playlist : add playlist, add directory, ...
- Improved preferences - Improved preferences
- Improvements to the wizard - Improvements to the wizard
- DVD, VCD and Audio CD navigation buttons - DVD, VCD and Audio CD navigation buttons
* MacOS X * MacOS X
- Redesigned playlist - Redesigned playlist
- Improved preferences
* Skins * Skins
- Support for multiple actions
- Fixes - Fixes
* HTTP * HTTP
- Support for the new playlist system - Support for the new playlist system
...@@ -90,13 +101,16 @@ Windows port: ...@@ -90,13 +101,16 @@ Windows port:
* DirectShow tuner configuration * DirectShow tuner configuration
* Support for no-decoration windows * Support for no-decoration windows
MacOS X port:
* Many Tiger related fixes
BeOS port: BeOS port:
* Support for single-buffered overlay * Support for single-buffered overlay
Pocket PC port: Pocket PC port:
* Many fixes * Many fixes
* New interface * New interface
* New video output * New video output
Mozilla Plugin: Mozilla Plugin:
* Javascript fixes * Javascript fixes
...@@ -107,9 +121,10 @@ IE Plugin: ...@@ -107,9 +121,10 @@ IE Plugin:
Translations: Translations:
The following languages were added The following languages were added
* Catalan
* Danish * Danish
* Greek * Greek
* Hindi * Hindi
* Pashto * Pashto
* Burmese * Burmese
* Tetum * Tetum
......
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
dnl $Id$ dnl $Id$
AC_INIT(vlc,0.8.2-svn2) AC_INIT(vlc,0.8.2-test1)
CONFIGURE_LINE="$0 $*" CONFIGURE_LINE="$0 $*"
CODENAME="Janus" CODENAME="Janus"
...@@ -13,7 +13,7 @@ AC_CANONICAL_SYSTEM ...@@ -13,7 +13,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.8.2-svn2) AM_INIT_AUTOMAKE(vlc,0.8.2-test1)
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.8.2-svn"; CFBundleShortVersionString = "0.8.2-test1";
CFBundleGetInfoString = "VLC media player 0.8.2-svn, Copyright (c) 1996-2004 VideoLAN."; CFBundleGetInfoString = "VLC media player 0.8.2-test1, Copyright (c) 1996-2005 VideoLAN.";
NSHumanReadableCopyright = "Copyright (c) 1996-2004 VideoLAN."; NSHumanReadableCopyright = "Copyright (c) 1996-2005 VideoLAN.";
...@@ -659,7 +659,7 @@ ...@@ -659,7 +659,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>VLC</string> <string>VLC</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>VLC media player 0.8.2-svn, Copyright (c) 1996-2003 VideoLAN.</string> <string>VLC media player 0.8.2-test1, Copyright (c) 1996-2004 VideoLAN.</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string>vlc.icns</string> <string>vlc.icns</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
...@@ -671,7 +671,7 @@ ...@@ -671,7 +671,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.8.2-svn</string> <string>0.8.2-test1</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VLC#</string> <string>VLC#</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
...@@ -728,7 +728,7 @@ ...@@ -728,7 +728,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.8.2-svn</string> <string>0.8.2-test1</string>
<key>NSAppleScriptEnabled</key> <key>NSAppleScriptEnabled</key>
<string>YES</string> <string>YES</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
......
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