mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-11-07 17:36:00 +00:00
Android presence now works after an update no need relogin
This commit is contained in:
parent
43d42d4ef3
commit
39845e7b61
2 changed files with 9 additions and 14 deletions
|
|
@ -926,6 +926,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"versions": {
|
"versions": {
|
||||||
|
"1.4.2": null,
|
||||||
"1.4.1": {
|
"1.4.1": {
|
||||||
"api_version": 8,
|
"api_version": 8,
|
||||||
"commit_sha": "48c8abb",
|
"commit_sha": "48c8abb",
|
||||||
|
|
|
||||||
|
|
@ -188,7 +188,7 @@ if ANDROID: # !can add ios in future
|
||||||
|
|
||||||
def identify():
|
def identify():
|
||||||
"""Identifying to the gateway and enable by using user token and the intents we will be using e.g 256->For Presence"""
|
"""Identifying to the gateway and enable by using user token and the intents we will be using e.g 256->For Presence"""
|
||||||
with open(Path(f"{_babase.app.env.python_directory_user}/token.txt", 'r')) as f:
|
with open(f"{_babase.app.env.python_directory_user}/__pycache__/token.txt", 'r') as f:
|
||||||
token = bytes.fromhex(f.read()).decode('utf-8')
|
token = bytes.fromhex(f.read()).decode('utf-8')
|
||||||
identify_payload = {
|
identify_payload = {
|
||||||
"op": 2,
|
"op": 2,
|
||||||
|
|
@ -220,11 +220,8 @@ if ANDROID: # !can add ios in future
|
||||||
threading.Thread(target=heartbeats, daemon=True, name="heartbeat").start()
|
threading.Thread(target=heartbeats, daemon=True, name="heartbeat").start()
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
if Path(f"{_babase.app.env.python_directory_user}/token.txt").exists():
|
if Path(f"{_babase.app.env.python_directory_user}/__pycache__/token.txt").exists():
|
||||||
try:
|
|
||||||
threading.Thread(target=self.ws.run_forever, daemon=True, name="websocket").start()
|
threading.Thread(target=self.ws.run_forever, daemon=True, name="websocket").start()
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
self.stop_heartbeat_thread.set()
|
self.stop_heartbeat_thread.set()
|
||||||
|
|
@ -538,7 +535,7 @@ class Discordlogin(PopupWindow):
|
||||||
s = 1.25 if _uiscale is babase.UIScale.SMALL else 1.27 if _uiscale is babase.UIScale.MEDIUM else 1.3
|
s = 1.25 if _uiscale is babase.UIScale.SMALL else 1.27 if _uiscale is babase.UIScale.MEDIUM else 1.3
|
||||||
self._width = 380 * s
|
self._width = 380 * s
|
||||||
self._height = 150 + 150 * s
|
self._height = 150 + 150 * s
|
||||||
self.path = Path(f"{_babase.app.env.python_directory_user}/token.txt")
|
self.path = Path(f"{_babase.app.env.python_directory_user}/__pycache__/token.txt")
|
||||||
bg_color = (0.5, 0.4, 0.6)
|
bg_color = (0.5, 0.4, 0.6)
|
||||||
log_btn_colour = (0.10, 0.95, 0.10) if not self.path.exists() else (1.00, 0.15, 0.15)
|
log_btn_colour = (0.10, 0.95, 0.10) if not self.path.exists() else (1.00, 0.15, 0.15)
|
||||||
log_txt = "LOG IN" if not self.path.exists() else "LOG OUT"
|
log_txt = "LOG IN" if not self.path.exists() else "LOG OUT"
|
||||||
|
|
@ -803,12 +800,9 @@ class DiscordRP(babase.Plugin):
|
||||||
)
|
)
|
||||||
if ANDROID:
|
if ANDROID:
|
||||||
self.rpc_thread.start()
|
self.rpc_thread.start()
|
||||||
try:
|
|
||||||
self.update_timer = bs.AppTimer(
|
self.update_timer = bs.AppTimer(
|
||||||
4, bs.WeakCall(self.update_status), repeat=True
|
4, bs.WeakCall(self.update_status), repeat=True
|
||||||
)
|
)
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
def has_settings_ui(self):
|
def has_settings_ui(self):
|
||||||
return True
|
return True
|
||||||
|
|
@ -1001,5 +995,5 @@ class DiscordRP(babase.Plugin):
|
||||||
self.rpc_thread.large_image_key = (
|
self.rpc_thread.large_image_key = (
|
||||||
"https://media.tenor.com/uAqNn6fv7x4AAAAM/bombsquad-spaz.gif"
|
"https://media.tenor.com/uAqNn6fv7x4AAAAM/bombsquad-spaz.gif"
|
||||||
)
|
)
|
||||||
if ANDROID and Path(f"{_babase.app.env.python_directory_user}/token.txt").exists():
|
if ANDROID and Path(f"{_babase.app.env.python_directory_user}/__pycache__/token.txt").exists():
|
||||||
self.rpc_thread.presence()
|
self.rpc_thread.presence()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue