diff --git a/gui/UpdateDialog.ui b/gui/UpdateDialog.ui index 5e01a3f3..a44681dd 100644 --- a/gui/UpdateDialog.ui +++ b/gui/UpdateDialog.ui @@ -483,7 +483,7 @@ - :/icons/accept.png:/icons/accept.png + :/icons/shield_admin.png:/icons/shield_admin.png @@ -585,6 +585,8 @@ + + diff --git a/res/Icons.qrc b/res/Icons.qrc index 2a5b16b1..762d87ef 100644 --- a/res/Icons.qrc +++ b/res/Icons.qrc @@ -69,6 +69,9 @@ icons/script.png icons/script_edit.png icons/server_error.png + icons/shield_admin.png + icons/shield_exclamation.png + icons/shield_green.png icons/sound.png icons/star.png icons/table_edit.png diff --git a/res/icons/shield_admin.png b/res/icons/shield_admin.png new file mode 100644 index 00000000..e3b82d5e Binary files /dev/null and b/res/icons/shield_admin.png differ diff --git a/res/icons/shield_exclamation.png b/res/icons/shield_exclamation.png new file mode 100644 index 00000000..e99eae1c Binary files /dev/null and b/res/icons/shield_exclamation.png differ diff --git a/res/icons/shield_green.png b/res/icons/shield_green.png new file mode 100644 index 00000000..914473b3 Binary files /dev/null and b/res/icons/shield_green.png differ diff --git a/src/Config.h b/src/Config.h index e8b1a2f9..35d0e5fa 100644 --- a/src/Config.h +++ b/src/Config.h @@ -26,7 +26,7 @@ #define VER_LAMEXP_MINOR_HI 0 #define VER_LAMEXP_MINOR_LO 1 #define VER_LAMEXP_BUILD 400 -#define VER_LAMEXP_SUFFIX Beta-12 +#define VER_LAMEXP_SUFFIX Beta-13 /* * Tools versions diff --git a/src/Dialog_Update.cpp b/src/Dialog_Update.cpp index ab4fa7df..6cf4c50a 100644 --- a/src/Dialog_Update.cpp +++ b/src/Dialog_Update.cpp @@ -316,21 +316,21 @@ void UpdateDialog::checkForUpdates(void) { installButton->setEnabled(true); statusLabel->setText(tr("A new version of LameXP is available!")); - hintIcon->setPixmap(QIcon(":/icons/bell.png").pixmap(16,16)); + hintIcon->setPixmap(QIcon(":/icons/shield_exclamation.png").pixmap(16,16)); hintLabel->setText(tr("We highly recommend all users to install this update as soon as possible.")); hintIcon->show(); hintLabel->show(); - WinSevenTaskbar::setOverlayIcon(this->parentWidget(), &QIcon(":/icons/bell.png")); + WinSevenTaskbar::setOverlayIcon(this->parentWidget(), &QIcon(":/icons/shield_exclamation.png")); MessageBeep(MB_ICONINFORMATION); } else if(m_updateInfo->m_buildNo == lamexp_version_build()) { statusLabel->setText(tr("No new updates available at this time.")); - hintIcon->setPixmap(QIcon(":/icons/information.png").pixmap(16,16)); + hintIcon->setPixmap(QIcon(":/icons/shield_green.png").pixmap(16,16)); hintLabel->setText(tr("Your version of LameXP is still up-to-date. Please check for updates regularly!")); hintIcon->show(); hintLabel->show(); - WinSevenTaskbar::setOverlayIcon(this->parentWidget(), &QIcon(":/icons/information.png")); + WinSevenTaskbar::setOverlayIcon(this->parentWidget(), &QIcon(":/icons/shield_green.png")); MessageBeep(MB_ICONINFORMATION); } else