Changeset 6bbf004ec5813a76f7443fa627a3833bfd1b3d80

Show
Ignore:
Timestamp:
04/07/03 23:51:27 (5 years ago)
Author:
Christophe Massiot <massiot@videolan.org>
git-committer:
Christophe Massiot <massiot@videolan.org> 1049752287 +0000
git-parent:

[57823d10590cb6c089a74293df217d2ba6af7610]

git-author:
Christophe Massiot <massiot@videolan.org> 1049752287 +0000
Message:

* Updated ChangeLog?
* src/libvlc.c: Darwin doesn't have a "translation" config variable

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ChangeLog

    r11eecc2 r6bbf004  
     12003-04-07 Monday 17:35  gbazin 
     2 
     3 * po/fr.po: small update. 
     4 * modules/codec/libmpeg2.c: we now bypass libmpeg2 buffer management. As a nice side effect, still pictures in dvd menus are working now :) 
     5 
     62003-04-07 Monday 16:02  gbazin 
     7 
     8 * modules/audio_output/directx.c, modules/audio_output/waveout.c: 
     9    cosmetic changes. 
     10 
     112003-04-07 Monday 13:46  gbazin 
     12 
     13 * src/libvlc.c: fixed the translation config option to also take into 
     14   account the value in the config file. 
     15 
     162003-04-07 Monday 13:01  gbazin 
     17 
     18 * src/libvlc.c: reload the main module in case the user asks for the 
     19    translation to be disabled. That way, the translation will even be 
     20    disabled in the preferences panel. 
     21 
     222003-04-07 Monday 12:41  hartman 
     23 
     24 * new dutch translation 
     25 * readded Mac OS X readme file to Mac OS X distribution 
     26 * fixed some errors in the readme 
     27 
     282003-04-07 Monday 11:48  gbazin 
     29 
     30 * src/misc/configuration.c: what the f??k, configuration variable names 
     31    and subtypes were being translated. 
     32 
     332003-04-07 Monday 09:25  gbazin 
     34 
     35 * modules/gui/wxwindows/interface.cpp: removed debug message. 
     36 
     372003-04-06 Sunday 23:44  massiot 
     38 
     39 * Renamed the "headphone" option to "headphone-opt" to avoid error 
     40 messages "option headphone does not exist". I'm not clever enough to find 
     41 out why it doesn't work when it's named "headphone". 
     42 
     432003-04-06 Sunday 23:21  massiot 
     44 
     45 * Bumped up revision number to 0.5.3 
     46 * po/* : run --update-po before the release 
     47 * ChangeLog : run --update-changelog 
     48 * toolbox : ChangeLog is UTC 
     49 * OS X : fixed a bug with the deinterlace menu and localizations (thanks 
     50   Felix) 
     51 
     522003-04-06 Sunday 23:00  hartman 
     53 
     54 * some small changes/fixes 
     55 
    1562003-04-06 Sunday 21:48  gbazin 
    257 
  • src/libvlc.c

    r032fff9 r6bbf004  
    33 ***************************************************************************** 
    44 * Copyright (C) 1998-2002 VideoLAN 
    5  * $Id: libvlc.c,v 1.75 2003/04/07 13:46:06 gbazin Exp $ 
     5 * $Id: libvlc.c,v 1.76 2003/04/07 21:51:27 massiot Exp $ 
    66 * 
    77 * Authors: Vincent Seguin <seguin@via.ecp.fr> 
     
    332332    config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ); 
    333333 
     334#   ifndef SYS_DARWIN 
    334335    if( !config_GetInt( p_vlc, "translation" ) ) 
    335336    { 
     
    343344        module_LoadMain( &libvlc ); 
    344345    } 
     346#   endif 
    345347#endif 
    346348