Updated UPX version on "About" screen.
This commit is contained in:
parent
db75b36e72
commit
093d4eadbe
@ -781,7 +781,7 @@ void AboutDialog::initSoftwareTab(void)
|
||||
moreAboutText += makeToolText
|
||||
(
|
||||
tr("UPX - The Ultimate Packer for eXecutables"),
|
||||
QString(), "v3.08",
|
||||
QString(), "v3.09",
|
||||
tr("Released under the terms of the GNU Lesser General Public License."),
|
||||
"http://upx.sourceforge.net/"
|
||||
);
|
||||
|
@ -132,6 +132,7 @@ void SplashScreen::showSplash(QThread *thread)
|
||||
{
|
||||
opacity = (i < opacitySteps) ? (OPACITY_DELTA * static_cast<double>(i)) : 1.0;
|
||||
splashScreen->setWindowOpacity(opacity);
|
||||
splashScreen->update();
|
||||
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents, FADE_DELAY);
|
||||
SET_TASKBAR_STATE(true);
|
||||
Sleep(FADE_DELAY);
|
||||
@ -161,6 +162,7 @@ void SplashScreen::showSplash(QThread *thread)
|
||||
{
|
||||
opacity = OPACITY_DELTA * static_cast<double>(i);
|
||||
splashScreen->setWindowOpacity(opacity);
|
||||
splashScreen->update();
|
||||
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents, FADE_DELAY);
|
||||
Sleep(FADE_DELAY);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user