From 56a1d29d78727cfd902f571c0347705c171f923e Mon Sep 17 00:00:00 2001 From: afkarxyz Date: Sat, 11 Oct 2025 18:17:07 +0700 Subject: [PATCH] v4.8 --- SpotiFLAC.py | 2 +- getMetadata.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/SpotiFLAC.py b/SpotiFLAC.py index 925bbb3..556fb6d 100644 --- a/SpotiFLAC.py +++ b/SpotiFLAC.py @@ -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 = [] diff --git a/getMetadata.py b/getMetadata.py index 3e44d5c..c9ff223 100644 --- a/getMetadata.py +++ b/getMetadata.py @@ -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)