Changeset 116
- Timestamp:
- Dec 14, 2011, 2:31:02 PM (13 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk/build_os2.cmd
r110 r116 11 11 /* version 0.2.7 from 29.04.2010 Silvan (added smplayer version for sed'ing readme's */ 12 12 /* version 0.2.8 from 20.05.2010 Silvan (added version to zip) */ 13 /* version 0.2.9 from 11.11.2011 Silvan (adapted to Qt 4.7.3) */ 13 14 14 15 /* init the version string (don't forget to change) */ 15 version = "0.2. 8"16 version_date = " 20.05.2010"16 version = "0.2.9" 17 version_date = "11.11.2011" 17 18 smplayer_version = "0.6.9" 18 smplayer_build = "b eta1"19 internal_build = "0_6_9-b 2"19 smplayer_build = "build3" 20 internal_build = "0_6_9-b3" 20 21 '@echo off' 21 22 … … 113 114 114 115 /* copy the exe and the icon (including rename and setting the new LONGNAME EA) */ 115 ok = SysCopyObject(srcDir||'\ release\smplayer.exe',installDir)116 ok = SysCopyObject(srcDir||'\smplayer.exe',installDir) 116 117 ok = SysCopyObject(srcDir||'\smplayer_os2.ico',installDir) 117 118 address cmd 'ren 'installDir'\smplayer_os2.ico smplayer.ico' -
smplayer/trunk/liesmich.os2
r110 r116 270 270 ========================= 271 271 272 2011-11-11 273 * updated to Qt 4.7.3 274 * fixed a possible hang when ending smplayer while playing a movie (patch by Rudi) 275 272 276 2010-06-30 273 277 * fixed a nasty 1 second delay -
smplayer/trunk/lisezmoi.os2
r110 r116 309 309 ========================== 310 310 311 2011-11-11 312 * updated to Qt 4.7.3 313 * fixed a possible hang when ending smplayer while playing a movie (patch by Rudi) 314 311 315 2010-06-30 312 316 * fixed a nasty 1 second delay -
smplayer/trunk/readme.os2
r110 r116 260 260 ========== 261 261 262 2011-11-11 263 * updated to Qt 4.7.3 264 * fixed a possible hang when ending smplayer while playing a movie (patch by Rudi) 265 262 266 2010-06-30 263 267 * fixed a nasty 1 second delay -
smplayer/trunk/src/core.cpp
r112 r116 22 22 #include <QRegExp> 23 23 #include <QTextStream> 24 #include <QEventLoop> 24 25 25 26 #include <cmath> … … 2227 2228 } 2228 2229 2230 #ifdef Q_OS_OS2 2231 QEventLoop eventLoop; 2232 2233 connect(proc, SIGNAL(processExited()), &eventLoop, SLOT(quit())); 2234 2235 tellmp("quit"); 2236 2237 QTimer::singleShot(5000, &eventLoop, SLOT(quit())); 2238 eventLoop.exec(QEventLoop::ExcludeUserInputEvents); 2239 2240 if (proc->isRunning()) { 2241 qWarning("Core::stopMplayer: process didn't finish. Killing it..."); 2242 proc->kill(); 2243 } 2244 #else 2229 2245 tellmp("quit"); 2230 2246 … … 2234 2250 proc->kill(); 2235 2251 } 2252 #endif 2236 2253 2237 2254 qDebug("Core::stopMplayer: Finished. (I hope)");
Note:
See TracChangeset
for help on using the changeset viewer.