Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
bump build number
Browse files Browse the repository at this point in the history
  • Loading branch information
leminlimez committed Dec 12, 2024
1 parent bf7902b commit f178c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from tweaks.daemons_tweak import Daemon

App_Version = "4.2.1"
App_Build = 1
App_Build = 0

class Page(Enum):
Home = 0
Expand Down Expand Up @@ -906,12 +906,12 @@ def update_label(self, txt: str):
def update_bar(self, percent):
self.ui.restoreProgressBar.setValue(int(percent))
def on_removeTweaksBtn_clicked(self):
# TODO: Add safety here
# TODO: Add threading here
self.device_manager.apply_changes(resetting=True, update_label=self.update_label)
def on_resetGestaltBtn_clicked(self):
self.device_manager.reset_mobilegestalt(self.settings, update_label=self.update_label)

@QtCore.Slot()
def on_applyTweaksBtn_clicked(self):
# TODO: Add safety here
# TODO: Add threading here
self.device_manager.apply_changes(update_label=self.update_label)

0 comments on commit f178c29

Please sign in to comment.