Skip to content

Commit

Permalink
url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shinrax2 committed Apr 6, 2021
1 parent e10513b commit 99b608d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Features:
- Localized GUI
- Automatic updates

Grab the latest release [here](https://github.com/shinrax2/PS3GameUpdateDownloader/releases/tag/v006) and check the ["Getting Started"](https://github.com/shinrax2/PS3GameUpdateDownloader/wiki/Getting-Started) page on the wiki!
Grab the latest release [here](https://github.com/shinrax2/PS3GameUpdateDownloader/releases/latest) and check the ["Getting Started"](https://github.com/shinrax2/PS3GameUpdateDownloader/wiki/Getting-Started) page on the wiki!

# Contributions
Contributions in form of translations and bug fixes are welcome.
Expand Down
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ def buildheader(version, commitid , filepath , pyiver="None"):
lines = [ "Building PS3GameUpdateDownloader",
"Build script arguments: "+str(sys.argv[1:]),
"Version: "+version,
"Git Commit: "+commitid,
"Python version: "+sys.version
"Git Commit: "+commitid
]
if pyiver != "None":
lines.append("Python version: "+sys.version)
lines.append("PyInstaller version: "+pyiver)
lines.append("Platform: "+platform.system()+" "+platform.architecture()[0])
lines.append("")
Expand Down
3 changes: 1 addition & 2 deletions gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def mainWin(self):
if self.keyring_support_shown == False:
if self.ps3.getConfig("dont_show_again_keyring_support") == False:
self.keyring_supportWin()
self.keyring_support_shown = True
if self.ps3.useDefaultConfig == True:
self.configWin(nocancel=True)
if self.ps3.getConfig("checkForNewRelease"):
Expand All @@ -125,7 +124,6 @@ def mainWin(self):
if event == "Queue" and self.tryDl == False:
self.queueWin()
if event == "Enter" and self.tryDl == False:
#self.tryDl = True
self.ps3.checkForUpdates(value["titleid"])
self.selectWin()
if self.tryDl == True and len(self.ps3.DlList.queue) > 0:
Expand Down Expand Up @@ -364,6 +362,7 @@ def queueWin(self):
break

def keyring_supportWin(self):
self.keyring_support_shown = True
keyring_url = "https://github.com/jaraco/keyring"
layout = [
[sg.Text(self.loc.getKey("window_keyring_support_info_label", [keyring_url]))],
Expand Down

0 comments on commit 99b608d

Please sign in to comment.