1 Commits

Author SHA1 Message Date
Maarten van Heusden
0c986c6dba added GitHub Discussions link 2020-12-15 09:02:16 +01:00

View File

@@ -27,7 +27,6 @@ def execute():
manid = manifestid.get()
threading.Thread(target=test).start()
def dbsite():
webopen("https://steamdb.info/instantsearch/")
@@ -35,6 +34,9 @@ def dbsite():
def ghsite():
webopen("https://github.com/mmvanheusden/DepotDownloaderGUI")
def needhelp():
webopen("https://github.com/mmvanheusden/DepotDownloaderGUI/discussions")
window = Tk()
window.title("Steam Depot Downloader")
@@ -62,5 +64,7 @@ github = ttk.Button(window, text="GitHub Page", command=ghsite)
github.grid(row=7, column=1)
dload = ttk.Button(window, text="Start Download", command=execute)
dload.grid(row=5, column=0)
github = ttk.Button(window, text="Need Help?", command=needhelp)
github.grid(row=6, column=0)
window.mainloop()