Changeset 110
- Timestamp:
- Jun 30, 2010, 6:45:00 PM (15 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk/build_os2.cmd
r105 r110 10 10 /* version 0.2.6 from 29.01.2010 Silvan (added more readmes) */ 11 11 /* version 0.2.7 from 29.04.2010 Silvan (added smplayer version for sed'ing readme's */ 12 /* version 0.2.8 from 20.05.2010 Silvan (added version to zip) */ 12 13 13 14 /* init the version string (don't forget to change) */ 14 version = "0.2. 7"15 version_date = "2 9.04.2010"15 version = "0.2.8" 16 version_date = "20.05.2010" 16 17 smplayer_version = "0.6.9" 17 18 smplayer_build = "beta1" 19 internal_build = "0_6_9-b2" 18 20 '@echo off' 19 21 … … 134 136 /* zip all up */ 135 137 ok = directory(installDir) 136 address cmd 'zip -r smplayer.zip *' 138 cmdtorun = 'zip -r smplayer-' || internal_build || '.zip *' 139 address cmd cmdtorun 137 140 ok = directory(rootdir) 138 141 end -
smplayer/trunk/liesmich.os2
r104 r110 93 93 * Qt4 dll 94 94 95 ftp://ftp.netlabs.org/pub/qt4/qt-lib-4_5_1-xx.wpi (ersetzen Sie xx mit der aktuellsten version) 96 falls die GA verfgbar ist, befindet sie sich im Unterverzeichniss 4.5.1-ga. 97 95 unter http://svn.netlabs.org/qt4 finden Sie die ntigen Angaben wo Sie Qt4 bekommen und wie man es installiert 96 98 97 * MPlayer 99 98 … … 271 270 ========================= 272 271 272 2010-06-30 273 * fixed a nasty 1 second delay 274 273 275 2010-04-29 274 276 * updated to Qt4 4.6.2 -
smplayer/trunk/lisezmoi.os2
r104 r110 113 113 * Qt4 dll 114 114 115 ftp://ftp.netlabs.org/pub/qt4/qt-lib-4_5_1-xx.wpi (exchange xx with the most current available) 116 if GA is available it's in it's own subdir 4.5.1-ga 115 see http://svn.netlabs.org/qt4 for more information whats needed 117 116 118 117 * MPlayer … … 310 309 ========================== 311 310 311 2010-06-30 312 * fixed a nasty 1 second delay 313 312 314 2010-04-29 313 315 * updated to Qt4 4.6.2 -
smplayer/trunk/readme.os2
r104 r110 80 80 * Qt4 dll 81 81 82 ftp://ftp.netlabs.org/pub/qt4/qt-lib-4_5_1-xx.wpi (exchange xx with the most current available) 83 if GA is available it's in it's own subdir 4.5.1-ga 82 see http://svn.netlabs.org/qt4 for more information whats needed 84 83 85 84 * MPlayer … … 261 260 ========== 262 261 262 2010-06-30 263 * fixed a nasty 1 second delay 264 263 265 2010-04-29 264 266 * updated to Qt4 4.6.2 -
smplayer/trunk/src/mplayerprocess.cpp
r93 r110 129 129 return; 130 130 131 // as things could hang when pipe communication is done direct here, i do a seperate thread for it */131 // as things could hang when pipe communication is done direct here, i do a seperate thread for it 132 132 pipeThread = new PipeThread(text, hpipe); 133 133 134 134 pipeThread->start(); 135 135 while (!pipeThread->isRunning() && !pipeThread->isFinished()) { 136 qDebug("we s pleep");136 qDebug("we sleep"); 137 137 DosSleep(10); 138 138 } 139 if (!pipeThread->wait(2000)) { 139 // we wait for max 2 seconds for the thread to be ended (we to this with max 20 loops) 140 int count = 0; 141 while (!pipeThread->wait(100) && count < 20) { 142 count ++; 143 } 144 if (count >= 20) { 140 145 pipeThread->terminate(); 141 146 qDebug("pipe communication terminated"); … … 889 894 return; 890 895 891 qDebug("pipe connected");896 // qDebug("pipe connected"); 892 897 DosWrite( hpipe, text.data(), strlen( text.data() ), &cbActual ); 893 898 -
smplayer/trunk/src/svn_revision.h
r93 r110 1 #define SVN_REVISION "SVN-r UNKNOWN"1 #define SVN_REVISION "SVN-r92"
Note:
See TracChangeset
for help on using the changeset viewer.