fix: Fixed updater being disabled.
This commit is contained in:
parent
8bb655eb40
commit
cb016ae98f
3 changed files with 13 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.10.x
|
## 0.10.x
|
||||||
|
### 0.10.1: Fixed Updater
|
||||||
|
- Fixed an issue where the updater was permanently disabled.
|
||||||
|
|
||||||
### 0.10.0: Multithreading for Preview Window
|
### 0.10.0: Multithreading for Preview Window
|
||||||
- The preview window now processes images in a separate thread, and live update preview is enabled by default.
|
- The preview window now processes images in a separate thread, and live update preview is enabled by default.
|
||||||
- This improves UI responsiveness.
|
- This improves UI responsiveness.
|
||||||
|
@ -10,6 +13,9 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
## 0.9.x
|
## 0.9.x
|
||||||
|
### 0.9.2: Enhanced updater
|
||||||
|
- Minor enhancments for the updater
|
||||||
|
|
||||||
### 0.9.1: Patch for Unsuccessful Successful Update
|
### 0.9.1: Patch for Unsuccessful Successful Update
|
||||||
- Addressed a rare issue where the package did not update correctly using the updater.
|
- Addressed a rare issue where the package did not update correctly using the updater.
|
||||||
- Unable to reproduce, but it may have been related to an older version and the restart process.
|
- Unable to reproduce, but it may have been related to an older version and the restart process.
|
||||||
|
|
|
@ -479,7 +479,7 @@ class UpdaterWindow(QMainWindow, Ui_Updater_Window):
|
||||||
super(UpdaterWindow, self).__init__()
|
super(UpdaterWindow, self).__init__()
|
||||||
self.ui = Ui_Updater_Window()
|
self.ui = Ui_Updater_Window()
|
||||||
self.ui.setupUi(self)
|
self.ui.setupUi(self)
|
||||||
self.dev_mode = True #True if optimalab35_localversion == "0.0.1" else False
|
self.dev_mode = True if optimalab35_localversion == "0.0.1" else False
|
||||||
#self.set_dev_ui()
|
#self.set_dev_ui()
|
||||||
from PyPiUpdater import PyPiUpdater
|
from PyPiUpdater import PyPiUpdater
|
||||||
# Update log file location
|
# Update log file location
|
||||||
|
|
|
@ -175,6 +175,9 @@
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="check_local_Button">
|
<widget class="QPushButton" name="check_local_Button">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>FOR DEVELOPER</string>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Check local</string>
|
<string>Check local</string>
|
||||||
</property>
|
</property>
|
||||||
|
@ -182,6 +185,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="update_local_Button">
|
<widget class="QPushButton" name="update_local_Button">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>FOR DEVELOPER</string>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Update local</string>
|
<string>Update local</string>
|
||||||
</property>
|
</property>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue