Skip to content

Commit

Permalink
Added more games
Browse files Browse the repository at this point in the history
Added Alien Swarm, Dota 2, and Left 4 Dead to the game list
  • Loading branch information
AndrSator committed Apr 22, 2014
1 parent 985237f commit 974292b
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 13 deletions.
6 changes: 5 additions & 1 deletion Documentation/Changelog.txt
@@ -1,4 +1,8 @@
 Version 2.1.1.1
 Version 2.1.1.2
- Added Alien Swarm, Dota 2, and Left 4 Dead to the game list
(The Dota 2 servers needs additional files for work properly.)

Version 2.1.1.1
- Added a checkbox for enable/disable the validation files ~ Request by CyberStars @ AlliedModders
- Added a header image for the Steam library
- Little improvement in logo and icon
Expand Down
8 changes: 3 additions & 5 deletions README.md
Expand Up @@ -11,11 +11,9 @@ SteamCMD GUI by Dio Joestar is licensed under a [Creative Commons Attribution-No

Last Version
============
######Version 2.1.1.1
* Added a checkbox for enable/disable the validation files ~ Request by CyberStars @ AlliedModders
* Added a header image for the Steam library
* Little improvement in logo and icon
* Removed the arrows when hover the cursor at borders of the window
######Version 2.1.1.2
* Added Alien Swarm, Dota 2, and Left 4 Dead to the game list
* (The Dota 2 servers needs additional files for work properly.)

Mirrors
============
Expand Down
Binary file modified Source Code/SteamCMD GUI.suo
Binary file not shown.
6 changes: 3 additions & 3 deletions Source Code/SteamCMD GUI/MainMenu.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 20 additions & 2 deletions Source Code/SteamCMD GUI/MainMenu.vb
Expand Up @@ -16,8 +16,8 @@ Public Class MainMenu

Private Sub Form1_Load() Handles MyBase.Load
Me.Icon = My.Resources.SteamCMDGUI_Icon
GamesList.SelectedIndex = 0
ModList.SelectedIndex = 0
GamesList.SelectedIndex = 1
ModList.SelectedIndex = 1
NetworkComboBox.SelectedIndex = 0
Status.Text = ""
Tips()
Expand Down Expand Up @@ -169,6 +169,9 @@ Public Class MainMenu
End Sub

Private Sub GamesList_SelectedIndexChanged() Handles GamesList.SelectedIndexChanged, GamesList.EnabledChanged
If GamesList.Text = "Alien Swarm" Then
SteamAppID = "635"
End If
If GamesList.Text = "Counter-Strike: Global Offensive" Then
SteamAppID = "740"
End If
Expand All @@ -178,12 +181,18 @@ Public Class MainMenu
If GamesList.Text = "Day of Defeat: Source" Then
SteamAppID = "232290"
End If
If GamesList.Text = "Dota 2" Then
SteamAppID = "570"
End If
If GamesList.Text = "Garry's Mod" Then
SteamAppID = "4020"
End If
If GamesList.Text = "Half-Life 2: Deathmatch" Then
SteamAppID = "232370"
End If
If GamesList.Text = "Left 4 Dead" Then
SteamAppID = "510"
End If
If GamesList.Text = "Left 4 Dead 2" Then
SteamAppID = "222860"
End If
Expand Down Expand Up @@ -288,6 +297,9 @@ Public Class MainMenu
End Sub

Private Sub ModList_SelectedIndex() Handles ModList.SelectedIndexChanged, ModList.EnabledChanged
If ModList.Text = "Alien Swarm" Then
GameMod = "alienswarm"
End If
If ModList.Text = "Counter-Strike: Global Offensive" Then
GameMod = "csgo"
End If
Expand All @@ -297,12 +309,18 @@ Public Class MainMenu
If ModList.Text = "Day of Defeat: Source" Then
GameMod = "dod"
End If
If ModList.Text = "Dota 2" Then
GameMod = "dota"
End If
If ModList.Text = "Garry's Mod" Then
GameMod = "garrysmod"
End If
If ModList.Text = "Half-Life 2: Deathmatch" Then
GameMod = "hl2mp"
End If
If ModList.Text = "Left 4 Dead" Then
GameMod = "left4dead"
End If
If ModList.Text = "Left 4 Dead 2" Then
GameMod = "left4dead2"
End If
Expand Down
4 changes: 2 additions & 2 deletions Source Code/SteamCMD GUI/My Project/AssemblyInfo.vb
Expand Up @@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
' mediante el asterisco ('*'), como se muestra a continuación:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("2.1.1.1")>
<Assembly: AssemblyFileVersion("2.1.1.1")>
<Assembly: AssemblyVersion("2.1.1.2")>
<Assembly: AssemblyFileVersion("2.1.1.2")>

<Assembly: NeutralResourcesLanguageAttribute("en")>
Binary file modified SteamCMD GUI.zip
Binary file not shown.

0 comments on commit 974292b

Please sign in to comment.