mirror of
https://github.com/mmvanheusden/SteamDepotDownloaderGUI.git
synced 2026-02-08 07:31:16 +01:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c986c6dba | ||
|
|
62ad7f9ec0 | ||
|
|
81ff5c99cf | ||
|
|
37052c2a3e |
14
README.md
14
README.md
@@ -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.
|
||||
|
||||

|
||||
|
||||
## 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
|
||||
|
||||
6
main.py
6
main.py
@@ -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 |
Reference in New Issue
Block a user