This commit is contained in:
afkarxyz
2025-10-11 18:17:07 +07:00
parent 4b7316636e
commit 56a1d29d78
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -455,7 +455,7 @@ class ServiceComboBox(QComboBox):
class SpotiFLACGUI(QWidget):
def __init__(self):
super().__init__()
self.current_version = "4.7"
self.current_version = "4.8"
self.tracks = []
self.all_tracks = []
self.successful_downloads = []
+2 -1
View File
@@ -12,8 +12,9 @@ from typing import Dict, Any, List, Tuple
def get_random_user_agent():
return f"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_{randrange(11, 15)}_{randrange(4, 9)}) AppleWebKit/{randrange(530, 537)}.{randrange(30, 37)} (KHTML, like Gecko) Chrome/{randrange(80, 105)}.0.{randrange(3000, 4500)}.{randrange(60, 125)} Safari/{randrange(530, 537)}.{randrange(30, 36)}"
# https://github.com/xyloflake/spot-secrets-go
def generate_totp():
url = "https://raw.githubusercontent.com/Thereallo1026/spotify-secrets/refs/heads/main/secrets/secretBytes.json"
url = "https://raw.githubusercontent.com/afkarxyz/secretBytes/refs/heads/main/secrets/secretBytes.json"
try:
resp = requests.get(url, timeout=10)