Commit 99eda04a authored by Sam Hocevar's avatar Sam Hocevar

. updated version number

 . removed a verbose message in intf_sdl.c
parent 0b5a98ad
Thu Aug 18 00:21:33 BST 2000 0.1.99h :
0.1.99g :
* added support for the SDL vout : the --display fullscreen allows * added support for the SDL vout : the --display fullscreen allows
fullscreen when possible. Disabled by default. fullscreen when possible. Disabled by default.
...@@ -11,6 +10,7 @@ Thu Aug 18 00:21:33 BST 2000 ...@@ -11,6 +10,7 @@ Thu Aug 18 00:21:33 BST 2000
* fixed the input_file exit bug. * fixed the input_file exit bug.
* fixed a Makefile bug which removed the CVS directory. * fixed a Makefile bug which removed the CVS directory.
* removed the frame statistics output. * removed the frame statistics output.
* removed a verbose message in intf_sdl.c.
Wed Aug 16 01:07:14 CEST 2000 Wed Aug 16 01:07:14 CEST 2000
0.1.99g : 0.1.99g :
......
...@@ -592,7 +592,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ...@@ -592,7 +592,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$host" 1>&6 echo "$ac_t""$host" 1>&6
VLC_VERSION=0.1.99g VLC_VERSION=0.1.99h
VLC_CODENAME=Onatopp VLC_CODENAME=Onatopp
......
...@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h) ...@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h)
AC_CANONICAL_HOST AC_CANONICAL_HOST
VLC_VERSION=0.1.99g VLC_VERSION=0.1.99h
AC_SUBST(VLC_VERSION) AC_SUBST(VLC_VERSION)
VLC_CODENAME=Onatopp VLC_CODENAME=Onatopp
AC_SUBST(VLC_CODENAME) AC_SUBST(VLC_CODENAME)
......
...@@ -136,9 +136,7 @@ void intf_SDLManage( intf_thread_t *p_intf ) ...@@ -136,9 +136,7 @@ void intf_SDLManage( intf_thread_t *p_intf )
while ( SDL_PollEvent(&event) ) while ( SDL_PollEvent(&event) )
{ {
i_key = event.key.keysym.sym; /* forward it */ i_key = event.key.keysym.sym; /* forward it */
intf_ErrMsgImm("key :%c:\n",(char) i_key);
switch (event.type) { switch (event.type) {
case SDL_KEYDOWN: /* if a key is pressed */ case SDL_KEYDOWN: /* if a key is pressed */
...@@ -180,7 +178,8 @@ void intf_SDL_Keymap(intf_thread_t * p_intf ) ...@@ -180,7 +178,8 @@ void intf_SDL_Keymap(intf_thread_t * p_intf )
/* intf_AssignKey(p_intf,'G','G'); */ /* intf_AssignKey(p_intf,'G','G'); */
intf_AssignKey(p_intf, SDLK_c, 'c'); intf_AssignKey(p_intf, SDLK_c, 'c');
intf_AssignKey(p_intf, SDLK_SPACE, ' '); intf_AssignKey(p_intf, SDLK_SPACE, ' ');
intf_AssignKey(p_intf, 'i', 'i'); intf_AssignKey(p_intf, 'i', 'i');
intf_AssignKey(p_intf, SDLK_s, 's'); intf_AssignKey(p_intf, SDLK_s, 's');
} }
...@@ -106,8 +106,6 @@ plugin_info_t * GetConfig( void ) ...@@ -106,8 +106,6 @@ plugin_info_t * GetConfig( void )
p_info->i_score = 0x100; p_info->i_score = 0x100;
/* If this plugin was requested, score it higher */ /* If this plugin was requested, score it higher */
if( TestMethod( VOUT_METHOD_VAR, "sdl" ) ) if( TestMethod( VOUT_METHOD_VAR, "sdl" ) )
{ {
......
Name: vlc Name: vlc
Version: 0.1.99g Version: 0.1.99h
Release: 1 Release: 1
Copyright: GPL Copyright: GPL
Url: http://www.videolan.org/ Url: http://www.videolan.org/
Group: X11/Applications/Graphics Group: X11/Applications/Graphics
Source0: http://www.videolan.org/packages/0.1.99g/vlc-0.1.99g.tar.gz Source0: http://www.videolan.org/packages/0.1.99h/vlc-0.1.99h.tar.gz
Packager: Samuel Hocevar <sam@via.ecp.fr> Packager: Samuel Hocevar <sam@via.ecp.fr>
Buildroot: /tmp/vlc-build Buildroot: /tmp/vlc-build
......
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