-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSteamDowngrade.html
More file actions
105 lines (88 loc) · 2.29 KB
/
SteamDowngrade.html
File metadata and controls
105 lines (88 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steam Game Downgrader</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #000014;
color: #dcddf7;
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
margin: 0;
padding: 0;
}
section {
margin-bottom: 40px;
}
h2 {
border-bottom: 2px solid #dcddf7;
padding-bottom: 6px;
}
ul {
padding: 0;
list-style: none;
}
li {
margin-bottom: 10px;
}
code {
font-family: 'Courier New', Courier, monospace;
background-color: #282a36;
color: #f8f8f2;
padding: 2px 4px;
border-radius: 4px;
}
a {
color: #bf98ce;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Steam Game Downgrader</h1>
</header>
<section>
<h2>About</h2>
<p>Steam Game Downgrader is a user-friendly GUI tool designed to help gamers easily revert Steam games to previous versions. By utilizing the Steam API and steamcmd, it provides a seamless way to identify, download, and install specific game versions.</p>
</section>
<section>
<h2>Features</h2>
<ul>
<li>Easy identification of game versions with Steam App IDs</li>
<li>Automatic retrieval and display of game logo and title</li>
<li>Guided process for locating Depot and Manifest IDs</li>
<li>Quick steamcmd setup if not already installed</li>
<li>Effortless game version downgrading</li>
</ul>
</section>
<section>
<h2>How to Use</h2>
<p>Simply download or clone the repository, run <code>main.py</code>, and input the desired Steam App ID. Follow the intuitive on-screen instructions through confirmation of game title, Depot and Manifest ID input, and let the tool handle the rest.</p>
</section>
<section>
<h2>Contributing</h2>
<p>We welcome contributions, issues, and feature requests. Please visit our <a href="https://github.com/PuzzlingGGG/SteamDowngrade/issues">issues page</a> to contribute or report problems.</p>
</section>
<footer>
<p>Project Link: <a href="https://github.com/PuzzlingGGG/SteamDowngrade">https://github.com/PuzzlingGGG/SteamDowngrade</a></p>
</footer>
</body>
</html>