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

Commit

Permalink
fix unhashable daemon error
Browse files Browse the repository at this point in the history
  • Loading branch information
leminlimez committed Jan 1, 2025
1 parent 95562af commit 66df1f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from tweaks.custom_gestalt_tweaks import CustomGestaltTweaks, ValueTypeStrings
from tweaks.daemons_tweak import Daemon

App_Version = "4.2.2"
App_Version = "4.2.3"
App_Build = 0

class Page(Enum):
Expand Down
12 changes: 6 additions & 6 deletions tweaks/daemons_tweak.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ class Daemon(Enum):
VPN = ["com.apple.racoon"]
ChineseLAN = ["com.apple.wapic"]
HealthKit = ["com.apple.healthd"]
AirPrint = ["com.apple.printd"],
AssistiveTouch = ["com.apple.assistivetouchd"],
iCloud = ["com.apple.itunescloudd"],
InternetTethering = ["com.apple.MobileInternetSharing"],
PassBook = ["com.apple.passd"],
Spotlight = ["com.apple.searchd"],
AirPrint = ["com.apple.printd"]
AssistiveTouch = ["com.apple.assistivetouchd"]
iCloud = ["com.apple.itunescloudd"]
InternetTethering = ["com.apple.MobileInternetSharing"]
PassBook = ["com.apple.passd"]
Spotlight = ["com.apple.searchd"]
VoiceControl = [
"com.apple.assistant_service",
"com.apple.assistantd",
Expand Down

0 comments on commit 66df1f1

Please sign in to comment.