Ignore:
Timestamp:
Dec 3, 2012, 7:05:11 PM (13 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to 0.8.2

Location:
smplayer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/setup/scripts/install_smplayer.cmd

    r135 r139  
    1414set SMTUBE_DIR=svn\smtube
    1515set SMPLAYER_THEMES_DIR=svn\smplayer-themes
     16set SMPLAYER_SKINS_DIR=svn\smplayer-skins
    1617set MPLAYER_DIR=mplayer
    1718set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw
     
    2526copy %SMPLAYER_DIR%\dxlist\release\dxlist.exe %OUTPUT_DIR%
    2627copy %SMPLAYER_DIR%\zlib\zlib1.dll %OUTPUT_DIR%
     28copy %SMPLAYER_DIR%\setup\sample.avi %OUTPUT_DIR%
    2729copy %SMPLAYER_DIR%\*.txt %OUTPUT_DIR%
    2830copy %QT_DIR%\bin\QtCore4.dll %OUTPUT_DIR%
     
    6870
    6971echo.
     72echo ######         Skins Themes         #######
     73echo.
     74svn export --force %SMPLAYER_SKINS_DIR%\themes %OUTPUT_DIR%\themes
     75
     76echo.
    7077echo ######           MPlayer           #######
    7178echo.
  • smplayer/trunk/setup/scripts/make_pkgs.cmd

    r135 r139  
    55echo Be sure to have a compiled portable smplayer.exe, renamed as
    66echo `smplayer-portable.exe` in the same directory as this script or an
    7 echo alternate location you specify in this script.
     7echo alternate location you specify in this script when creating the portable
     8echo packages.
    89echo.
    910echo Configure your build environment at the beginning of this script.
    1011echo.
    1112echo 7zip command-line (http://7zip.org) is required by this script.
    12 echo.
    13 echo * Release Packages
    1413echo.
    1514echo 1 - NSIS SMPlayer Packages
     
    1716echo 3 - SMPlayer Package w/o MPlayer
    1817echo 4 - MPlayer Package
    19 echo.
    20 echo * Update Packages
    21 echo.
    22 echo 5 - SMPlayer SVN Update Package
    23 echo 6 - Qt DLL Package
    2418
    2519echo.
     
    3832set OUTPUT_DIR=%TOP_LEVEL_DIR%\output
    3933set PORTABLE_EXE_DIR=%TOP_LEVEL_DIR%\portable
    40 set QT_DIR=E:\Buildsys\Qt\%QTVER%
    4134
    4235:reask
     
    5548) else if "%USER_CHOICE%" == "4" (
    5649  goto mplayer
    57 
    58 ) else if "%USER_CHOICE%" == "5" (
    59   goto svn_updpkg
    60 
    61 ) else if "%USER_CHOICE%" == "6" (
    62   goto qtdlls
    6350
    6451) else (
     
    246233goto end
    247234
    248 :svn_updpkg
    249 echo.
    250 echo ---  Creating SVN Update Package  ---
    251 echo.
    252 
    253 set /P SMPLAYER_SVN="SMPlayer SVN Revision: "
    254 if "%SMPLAYER_SVN%"=="" goto end
    255 
    256 7za a -t7z %OUTPUT_DIR%\smplayer_update_svn_r%SMPLAYER_SVN%.7z %SMPLAYER_DIR%\smplayer.exe %SMPLAYER_DIR%\translations -mx9
    257 
    258 goto end
    259 
    260 :qtdlls
    261 
    262 set /P QTVER="Qt Version: "
    263 if "%QTVER%"=="" goto end
    264 
    265 echo.
    266 echo ---  Creating Qt DLL Package  ---
    267 echo.
    268 
    269 mkdir imageformats
    270 copy %QT_DIR%\%QTVER%\plugins\imageformats\qjpeg4.dll imageformats
    271 7za a -t7z %OUTPUT_DIR%\qt_%QTVER%_dlls.7z %QT_DIR%\%QTVER%\bin\libgcc_s_dw2-1.dll %QT_DIR%\%QTVER%\bin\mingwm10.dll %QT_DIR%\%QTVER%\bin\QtCore4.dll %QT_DIR%\%QTVER%\bin\QtGui4.dll %QT_DIR%\%QTVER%\bin\QtNetwork4.dll %QT_DIR%\%QTVER%\bin\QtXml4.dll imageformats -mx9
    272 rd /s /q imageformats
    273 
    274 goto end
    275 
    276235:end
    277236
Note: See TracChangeset for help on using the changeset viewer.