Skip to content

Commit

Permalink
update download routes
Browse files Browse the repository at this point in the history
  • Loading branch information
gogodr committed Oct 8, 2022
1 parent e70b4b2 commit 69d38a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def launcher_check_config(self):
AppLogger().info(f"Launcher needs update")
playUpdateDetected()
self.download = LostArkMarketLauncherDownload({
"url": f'https://github.com/gogodr/LostArk-Market-Launcher/releases/download/{Config().launcher_version}/{Config().launcher_file}.exe',
"url": f'https://github.com/Lost-Ark-Market-Online/LostArk-Market-Launcher/releases/download/{Config().launcher_version}/{Config().launcher_file}.exe',
"title": f'New version of the Lost Ark Market Launcher Found: v{Config().launcher_version}',
"file": f'{Config().launcher_file}.exe.new'
})
Expand Down Expand Up @@ -92,7 +92,7 @@ def check_config(self):
if Config().watcher_needs_update == True:
playUpdateDetected()
self.download = LostArkMarketLauncherDownload({
"url": f'https://github.com/gogodr/LostArk-Market-Watcher/releases/download/{Config().watcher_version}/{Config().watcher_file}.exe',
"url": f'https://github.com/Lost-Ark-Market-Online/LostArk-Market-Watcher/releases/download/{Config().watcher_version}/{Config().watcher_file}.exe',
"title": f'New version of the Lost Ark Market Watcher Found: v{Config().watcher_version}',
"file": f'{Config().watcher_file}.exe.new'
})
Expand Down
2 changes: 1 addition & 1 deletion modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class Config(metaclass=Singleton):
version = "1.2.6.2"
version = "1.2.6.3"
debug = False
id_token: str = None
refresh_token: str = None
Expand Down

0 comments on commit 69d38a0

Please sign in to comment.