Skip to content

Commit

Permalink
autoplot: undo removinvg show release_info (#2552)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer authored Oct 5, 2024
1 parent 73035ac commit eee46f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mslib/msui/msui_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
from mslib.msui.icons import icons, python_powered
from mslib.utils.qt import get_open_filenames, get_save_filename, show_popup
from mslib.utils.config import read_config_file, config_loader
from mslib.utils import release_info
from PyQt5 import QtGui, QtCore, QtWidgets, QtTest
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas

Expand Down Expand Up @@ -407,6 +408,7 @@ def __init__(self, parent=None):
super().__init__(parent)
self.setupUi(self)
self.lblVersion.setText(f"Version: {__version__}")
self.lblNewVersion.setText(f"{release_info.check_for_new_release()[0]}")
self.milestone_url = f'https://github.com/Open-MSS/MSS/issues?q=is%3Aclosed+milestone%3A{__version__[:-1]}'
self.lblChanges.setText(f'<a href="{self.milestone_url}">New Features and Changes</a>')
blub = QtGui.QPixmap(python_powered())
Expand Down

0 comments on commit eee46f1

Please sign in to comment.