aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/main_window/MainWindowSlotFunction.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-01-04 10:49:11 +0000
committerSaturneric <[email protected]>2022-01-04 10:49:11 +0000
commitf297a701bbcfa5f0586cc02af29a4e9af281910c (patch)
tree00d869b86e967a780f90e51d30a85be3d236a230 /src/ui/main_window/MainWindowSlotFunction.cpp
parent<fix>(ui): improve ui. (diff)
downloadGpgFrontend-f297a701bbcfa5f0586cc02af29a4e9af281910c.tar.gz
GpgFrontend-f297a701bbcfa5f0586cc02af29a4e9af281910c.zip
<fix, refactor>(core, ui): fixed known bugs for v2.0.4-beta.1.
1. longer expire date for keygen. 2. version system improved and fixed. 3. include ui text not translated. 4. improve ui.
Diffstat (limited to 'src/ui/main_window/MainWindowSlotFunction.cpp')
-rw-r--r--src/ui/main_window/MainWindowSlotFunction.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/main_window/MainWindowSlotFunction.cpp b/src/ui/main_window/MainWindowSlotFunction.cpp
index 09f29958..d5aa262a 100644
--- a/src/ui/main_window/MainWindowSlotFunction.cpp
+++ b/src/ui/main_window/MainWindowSlotFunction.cpp
@@ -525,6 +525,11 @@ void MainWindow::slotVersionUpgrade(const SoftwareVersion& version) {
"Github Releases "
"Page.<br/>"))
.arg(version.latest_version.c_str()));
+ } else if (!version.CurrentVersionReleased()) {
+ statusBar()->showMessage(
+ QString(_("This maybe a BETA Version (Latest Stable Version: %1)."))
+ .arg(version.latest_version.c_str()),
+ 30000);
}
}