4 Commits

Author SHA1 Message Date
Maarten van Heusden
0c986c6dba added GitHub Discussions link 2020-12-15 09:02:16 +01:00
Maarten van Heusden
62ad7f9ec0 GitHub Discussions update 2020-12-15 08:49:28 +01:00
Maarten van Heusden
81ff5c99cf Update README.md 2020-12-01 14:01:23 +01:00
Maarten van Heusden
37052c2a3e Update hero.png 2020-11-30 17:19:09 +01:00
3 changed files with 14 additions and 6 deletions

View File

@@ -7,23 +7,26 @@
# DepotDownloaderGUI
A simple GUI tool based on [DepotDownloader][depotdownloader] for downloading older versions of Steam games.
A simple GUI tool based on [**DepotDownloader**][depotdownloader] for downloading older versions of Steam games.
![The Program](https://raw.githubusercontent.com/mmvanheusden/DepotDownloaderGUI/main/src/readme.md/hero.png "The Program")
## What can you do with the program?
You can download older versions of Steam games!!!:sunglasses:
## Want an example?
Go to [**This**][subnauticawiki] tutorial.
## How use the program?
### step 1:
Download and unzip the program. (You can download it [Here][latest])
Download and unzip the program. (You can download it [**Here**][latest])
### step 2:
Run DepotDownloaderGUI.exe.
### step 3:
First enter your Steam credentials at "Username" and "Password" (Don't worry, it's safe!)
### step 4:
Go to [SteamDB][steamdb].
Click on "SteamDB Instant Search".
### step 5:
Enter your game of choice at the search bar and select the game.
### step 6:
@@ -46,10 +49,11 @@ The downloaded game is stored in the folder "YourGame"
> :warning: **Once the download progress is complete, Move the downloaded files to a different folder!**
### Enjoy your game!
## If you have any questions, open a GitHub Issue.
## Need help?
### If you have any questions, use the shiny new ✨GitHub Discussions✨ page!
[latest]: https://github.com/mmvanheusden/DepotDownloaderGUI/releases/latest
[steamdb]: https://steamdb.info/
[depotdownloader]: https://github.com/SteamRE/DepotDownloader
[subnauticawiki]: https://github.com/mmvanheusden/DepotDownloaderGUI/wiki/How-to-Download-older-versions-of-Subnautica

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()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB