From c8ca1e881d4f9dd84f3152569c264d7888fea124 Mon Sep 17 00:00:00 2001 From: Dunestorm Date: Sat, 19 Aug 2023 19:50:26 +0100 Subject: [PATCH] LiquidGUI [1.0.1.3] Bugfix Release - Moved device init into dedicated function to prevent unwanted device re-init. - Library renaming. --- LiquidCTL_Helper.py | 2 +- main.pyw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LiquidCTL_Helper.py b/LiquidCTL_Helper.py index 174f658..1e6cbe1 100644 --- a/LiquidCTL_Helper.py +++ b/LiquidCTL_Helper.py @@ -46,4 +46,4 @@ class LiquidCTL_Helper(): with self.dev.connect(): cli._device_set_speed(self.dev, args={"": [], "": "fan", - "": [str(speed)]}) \ No newline at end of file + "": [str(speed)]}) diff --git a/main.pyw b/main.pyw index e6f2e02..23db9ee 100644 --- a/main.pyw +++ b/main.pyw @@ -11,7 +11,7 @@ from MessageHandler import MessageHandler class MainWindow(QMainWindow): def __init__(self, lctl): super(MainWindow, self).__init__() - self.setWindowTitle("LiquidGUI (v.1.1.0.0)") + self.setWindowTitle("LiquidGUI (v.1.0.2.0)") self.setFixedSize(450, 350) self.lctl = lctl