~ubuntu-branches/ubuntu/wily/smplayer/wily

« back to all changes in this revision

Viewing changes to setup/scripts/install_smplayer.cmd

  • Committer: Package Import Robot
  • Author(s): Maia Kozheva, Maia Kozheva, Alessio Treglia
  • Date: 2012-04-14 12:01:57 UTC
  • mfrom: (1.1.13)
  • mto: (20.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: package-import@ubuntu.com-20120414120157-mndwobcslgisomso
[ Maia Kozheva ]
* New upstream release:
  - Changes since 0.7.1:
    + A toolbar editor has been added. Now it's possible to select the
      buttons and controls that want to appear in the toolbars.
    + New video filters: gradfun, blur and sharpen.
    + Now it's possible to change the GUI (default, mini, mpc) at runtime,
      no restart required.
    + sub files from opensubtitles should work again.
    + (Youtube) Recognize short urls (like this one:
      http://y2u.be/F5OcZBVPwOA)
    + Better support for chapters in video files.
    + Bug fix: remote m3u files work from the favorites menu or command line.
    + Internal changes in the single instance option (switch to 
      QtSingleApplication).
  - Fixes since 0.7.0:
    + SMPlayer took more than 10 seconds to show when running for the very
      first time.
    + The links to download subtitles from Opensubtitles were wrong.
    + SMPlayer crashed in the favorite editor when trying to select a file
      if the KDE open dialog was used.
  - Changes since 0.7.0:
    + By default the screenshots are saved in the user's pictures folder
      instead of the SMPlayer's config folder.
    + Now it's possible to change the opensubtitles server.
    + Youtube: seeking is slow with flv videos, so now flv videos have the
      lowest priority.
    + Youtube: now it's possible to search and download videos from youtube.
      This is provided by an external application (in linux you have to
      install an independent package: smtube).
* debian/copyright:
  - Rewrite according to DEP-5 specification.
* debian/control:
  - Depend on mplayer2 | mplayer. (Closes: #638279)
  - Update Standards-Version to 3.9.3.
* Remove debian/patches/handle_local_urls.diff, merged upstream.

[ Alessio Treglia ]
* Mention smplayer is also a front-end for MPlayer2.
* Fix small typo in the description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
echo Warning: it will only work with sources from the SVN and the command svn has to be in the path
6
6
echo.
7
7
 
8
 
set /P QTVER="Qt Version (Default: 4.5.1): "
9
 
if "%QTVER%"=="" set QTVER=4.5.1
 
8
set /P QTVER="Qt Version (Default: 4.7.4): "
 
9
if "%QTVER%"=="" set QTVER=4.7.4
10
10
 
11
11
set OUTPUT_DIR=smplayer-build
12
12
 
13
13
set SMPLAYER_DIR=svn\smplayer
 
14
set SMTUBE_DIR=svn\smtube
14
15
set SMPLAYER_THEMES_DIR=svn\smplayer-themes
15
 
set MINGW_DIR=C:\MinGW
16
16
set MPLAYER_DIR=mplayer
17
 
set QT_DIR=C:\Qt\%QTVER%
18
 
set QXT_DIR=C:\development\libqxt
 
17
set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw
19
18
 
20
19
echo.
21
20
echo ######      SMPlayer, QT libs      #######
24
23
mkdir %OUTPUT_DIR%
25
24
copy %SMPLAYER_DIR%\src\release\smplayer.exe %OUTPUT_DIR%
26
25
copy %SMPLAYER_DIR%\dxlist\release\dxlist.exe %OUTPUT_DIR%
 
26
copy %SMPLAYER_DIR%\zlib-1.2.6\zlib1.dll %OUTPUT_DIR%
27
27
copy %SMPLAYER_DIR%\*.txt %OUTPUT_DIR%
28
28
copy %QT_DIR%\bin\QtCore4.dll %OUTPUT_DIR%
29
29
copy %QT_DIR%\bin\QtGui4.dll %OUTPUT_DIR%
30
30
copy %QT_DIR%\bin\QtNetwork4.dll %OUTPUT_DIR%
31
31
copy %QT_DIR%\bin\QtXml4.dll %OUTPUT_DIR%
32
 
copy %MINGW_DIR%\bin\mingwm10.dll %OUTPUT_DIR%
 
32
copy %QT_DIR%\bin\mingwm10.dll %OUTPUT_DIR%
33
33
if %QTVER% geq 4.6.0 (
34
 
copy %MINGW_DIR%\bin\libgcc_s_dw2-1.dll %OUTPUT_DIR%
 
34
copy %QT_DIR%\bin\libgcc_s_dw2-1.dll %OUTPUT_DIR%
35
35
)
36
36
 
37
37
mkdir %OUTPUT_DIR%\imageformats
38
38
copy %QT_DIR%\plugins\imageformats\qjpeg4.dll %OUTPUT_DIR%\imageformats\
39
39
 
40
40
echo.
41
 
echo ######           Libqxt            #######
42
 
echo.
43
 
copy %QXT_DIR%\lib\QxtCore.dll %OUTPUT_DIR%
44
 
 
45
 
echo.
46
41
echo ######        Translations         #######
47
42
echo.
48
43
 
52
47
echo.
53
48
echo ######       Qt Translations       #######
54
49
echo.
55
 
copy %QT_DIR%\translations\qt_de.qm %OUTPUT_DIR%\translations
56
 
copy %QT_DIR%\translations\qt_es.qm %OUTPUT_DIR%\translations
57
 
copy %QT_DIR%\translations\qt_ru.qm %OUTPUT_DIR%\translations
58
 
copy %QT_DIR%\translations\qt_sk.qm %OUTPUT_DIR%\translations
59
 
copy %QT_DIR%\translations\qt_sv.qm %OUTPUT_DIR%\translations
60
 
copy %QT_DIR%\translations\qt_zh_CN.qm %OUTPUT_DIR%\translations
 
50
copy %QT_DIR%\translations\qt_*.qm %OUTPUT_DIR%\translations
 
51
del %OUTPUT_DIR%\translations\qt_help_*.qm
61
52
 
62
53
echo.
63
54
echo ######         Shortcuts           #######
81
72
xcopy %MPLAYER_DIR% %OUTPUT_DIR%\mplayer\ /E
82
73
 
83
74
echo.
 
75
echo ######           SMTUBE           #######
 
76
echo.
 
77
copy %SMTUBE_DIR%\src\release\smtube.exe %OUTPUT_DIR%
 
78
copy %SMTUBE_DIR%\src\translations\*.qm %OUTPUT_DIR%\translations
 
79
mkdir %OUTPUT_DIR%\docs\smtube
 
80
copy %SMTUBE_DIR%\*.txt %OUTPUT_DIR%\docs\smtube
 
81
 
 
82
echo.