Skip to content

Commit

Permalink
Drop 0.6.1 bump in otsconfig
Browse files Browse the repository at this point in the history
pyinstaller binary won't launch
  • Loading branch information
justin025 committed Sep 2, 2024
1 parent ec87de9 commit c424e6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/onthespot/otsconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ def __init__(self, cfg_path=None):
self.__cfg_path = cfg_path
self.platform = platform.system()
self.ext_ = ".exe" if self.platform == "Windows" else ""
self.version = 0.6.1
self.version = 0.6
self.session_uuid = str(uuid.uuid4())
print('OTS Version : ', self.version)
self.__template_data = {
"version": 0.6.1, # Application version
"version": 0.6, # Application version
"max_threads": 1, # Maximum number of thread we can spawn
"parsing_acc_sn": 1, # Serial number of account that will be used for parsing links
"download_root": os.path.join(os.path.expanduser("~"), "Music", "OnTheSpot"), # Root dir for downloads
Expand Down

0 comments on commit c424e6b

Please sign in to comment.