Commit 3a0e5d28 authored by Gildas Bazin's avatar Gildas Bazin

* INSTALL.win32: finally updated the instructions on how to build vlc for win32 :)
* install-win32, Makefile.am: updates for the win32 package.
* NEWS: added a few missing things.
parent bc0d451c
This diff is collapsed.
...@@ -575,8 +575,8 @@ package-win32: ...@@ -575,8 +575,8 @@ package-win32:
cp $$i tmp/skins/ || true ; \ cp $$i tmp/skins/ || true ; \
done done
cd doc/faq ; $(MAKE) html ; cd ../.. ; $(MAKE) -C doc/faq html ;
cp doc/faq/index.html tmp/FAQ.htm ; cp doc/faq/faq.html tmp/FAQ.htm ;
# Create package # Create package
wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} tmp/nsi wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} tmp/nsi
......
$Id: NEWS,v 1.40 2003/05/15 02:02:13 hartman Exp $ $Id: NEWS,v 1.41 2003/05/17 23:57:35 gbazin Exp $
Changes between 0.5.3 and 0.6.0: Changes between 0.5.3 and 0.6.0:
--------------------------------- ---------------------------------
Core Support: Core Support:
* Channel Server support was removed * Channel Server support was removed (was deprecated)
Input access: Input access:
* fixed a big bug in ftp and http access that prevented many platforms (OSX most prominently) to view ftp and http streams. * fixed a big bug in ftp and http access that prevented many platforms (OSX most prominently) to view ftp and http streams.
* fixed large file support on Windows * fixed large file support on Windows
* Video 4 Linux support * Video 4 Linux support
* CD Digital Audio support
Input demux: Input demux:
* Better detection of AAC and mp3 files * Better detection of AAC and mp3 files
...@@ -23,15 +24,17 @@ Codecs: ...@@ -23,15 +24,17 @@ Codecs:
* If ffmpeg cannot keep up, skip and try to recover instead of stopping altogether * If ffmpeg cannot keep up, skip and try to recover instead of stopping altogether
Interfaces: Interfaces:
* The wxWindows interface is now Unicode safe * The wxWindows interface is now fully useable as well as Unicode safe
* New http interface * New HTTP remote control interface
Stream output: Stream output:
* * New stream output scheme. It is now possible to build a chain of stream outputs allowing for instance to stream and display some content at the same time.
* The stream output now allows to transcode content on the fly.
Miscellaneous: Miscellaneous:
* New reset all option for preferences * New reset option for the preferences
* You can set your language in the prefences * You can set your language in the prefences
* New video chroma conversion module using ffmpeg
UNIX ports: UNIX ports:
* *
...@@ -51,6 +54,10 @@ Mac OS X port: ...@@ -51,6 +54,10 @@ Mac OS X port:
Win32 port: Win32 port:
* the wxWindows interface is now the default interface * the wxWindows interface is now the default interface
* The keyboard shortcuts are now identical to the linux version
* Fixed the "no sound" problem on NT4
* Improved skinnable interface (it now uses the wxWindows interface dialogs).
* Added support for compressed skins files (.vlt files)
BeOS port: BeOS port:
* Interface localization * Interface localization
......
...@@ -67,11 +67,12 @@ Section "Install" ...@@ -67,11 +67,12 @@ Section "Install"
File /r skins File /r skins
CreateDirectory "$SMPROGRAMS\VideoLAN" CreateDirectory "$SMPROGRAMS\VideoLAN"
CreateShortCut "$SMPROGRAMS\VideoLAN\vlc.lnk" "$INSTDIR\vlc.exe" CreateShortCut "$SMPROGRAMS\VideoLAN\vlc.lnk" \
CreateShortCut "$SMPROGRAMS\VideoLAN\vlc (wxwindows).lnk" \
"$INSTDIR\vlc.exe" "--intf wxwin" "$INSTDIR\vlc.exe" "--intf wxwin"
CreateShortCut "$SMPROGRAMS\VideoLAN\vlc (skins).lnk" \ CreateShortCut "$SMPROGRAMS\VideoLAN\vlc (skins).lnk" \
"$INSTDIR\vlc.exe" "--intf skins" "$INSTDIR\vlc.exe" "--intf skins"
CreateShortCut "$SMPROGRAMS\VideoLAN\vlc (custom).lnk" \
"$INSTDIR\vlc.exe"
CreateShortCut "$SMPROGRAMS\VideoLAN\FAQ.lnk" "$INSTDIR\FAQ.htm" CreateShortCut "$SMPROGRAMS\VideoLAN\FAQ.lnk" "$INSTDIR\FAQ.htm"
WriteRegStr HKLM \ WriteRegStr HKLM \
......
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