summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-02-08 19:51:28 -0300
committerJesusaves <cpntb1@ymail.com>2024-02-08 19:51:28 -0300
commit61478fa9524ee7dfb223730592200495fe08ee63 (patch)
tree7bc2c3a04d2fe3fc39f6eeb4101255546f149a6d
parentabcf0ffd3b6e440b82523c80a9c014b5dc591032 (diff)
downloadtkinter-61478fa9524ee7dfb223730592200495fe08ee63.tar.gz
tkinter-61478fa9524ee7dfb223730592200495fe08ee63.tar.bz2
tkinter-61478fa9524ee7dfb223730592200495fe08ee63.tar.xz
tkinter-61478fa9524ee7dfb223730592200495fe08ee63.zip
Remove uncoolness
-rwxr-xr-x__main__.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/__main__.py b/__main__.py
index 38a4d82..aa5cd49 100755
--- a/__main__.py
+++ b/__main__.py
@@ -92,7 +92,7 @@ if pref["discord"]:
try:
_rpc = discordrpc.RPC.set_id(app_id=840427221193195541)
_rpc.set_activity(
- state="The Mana World - Minimal",
+ state="The Mana World - Lite",
details="Main Menu",
large_image="launcher",
large_text="Mana Launcher",
@@ -120,7 +120,7 @@ def RPCUpdate(status, image):
if not pref["discord"] or _rpc is None:
return
_rpc.set_activity(
- state="The Mana World - Minimal",
+ state="Playing The Mana World",
details=status,
large_image=image,
large_text="Mana Launcher",
@@ -492,7 +492,7 @@ def settings():
if not sys.platform.startswith('win'):
c3 = tk.Checkbutton(root, text="Use original Mana client", variable=prefMana, bg="#0c3251", fg="#f70")
canva.create_window(200, 110, window=c3)
- #TODO: Download link broken
+ #TODO: Download link for M+ is broken
#c4 = tk.Checkbutton(root, text="Use ManaPlus client", variable=prefPlus, bg="#0c3251", fg="#f70")
#canva.create_window(200, 135, window=c4)
c5 = tk.Checkbutton(root, text="Verbose logging", variable=prefLogs, bg="#0c3251", fg="#f70")
@@ -529,7 +529,8 @@ def settings():
# For that, use a dropdown menu (select world), login, password, ...
# Then a button "LINK" and "UNLINK". Encapsulate the form in a box
# TODO: Change password or 2FA settings
- # TODO Then we can put some permanent multi-world bosses on CR? (Giving EXP)
+ # ...Or maybe all that should be on a web interface?
+ # TODO Then we can put some permanent multi-world bosses on CR? (Giving V-EXP)
## Save all your settings and return to World Selection screen
button = HoverButton(text="Save Settings", command=_settingSave, width=40, bg="#cc6600", fg="#fff", activebackground="#ee9933")