Skip to content

Commit 512eff0

Browse files
committed
Version 4.0
Version 4.0 - Full UI redesign Significant optimization (Increased performance and less system resource usage) Minor bug fixes Added Discord server button Added Button for starting steamCMD seperately Added button for cleaning steamCMD cache Added search result filtering (you can find a game using its "nickname". For example you can find Counter Strike: Global Offensive by searching "csgo". Also all the non matching results will be hidden.) Removed the "Reinstall" button
1 parent 78029de commit 512eff0

File tree

645 files changed

+6986
-155504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

645 files changed

+6986
-155504
lines changed

ERROR CODE MEANINGS.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ERROR CODE 3 : CAN'T UNZIP STEAMCMD
2+
ERROR CODE 2 : SteamCMD download failed

Server Creation Tool.sln

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30804.86
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server Creation Tool", "Server Creation Tool\Server Creation Tool.csproj", "{85E71E8C-9E94-400F-99D1-C9C33CADE381}"
7-
EndProject
8-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{10744169-EC50-4DD5-AA97-2BDD0CF08F3E}"
9-
ProjectSection(SolutionItems) = preProject
10-
Server Creation Tool\FodyWeavers.xml = Server Creation Tool\FodyWeavers.xml
11-
EndProjectSection
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server Creation Tool", "Server Creation Tool\Server Creation Tool.csproj", "{B699DCA7-69B3-4887-A107-D194FE87AC4D}"
127
EndProject
138
Global
149
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -18,19 +13,19 @@ Global
1813
Release|x86 = Release|x86
1914
EndGlobalSection
2015
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|Any CPU.Build.0 = Debug|Any CPU
23-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|x86.ActiveCfg = Debug|x86
24-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|x86.Build.0 = Debug|x86
25-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|Any CPU.ActiveCfg = Release|Any CPU
26-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|Any CPU.Build.0 = Release|Any CPU
27-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|x86.ActiveCfg = Release|x86
28-
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|x86.Build.0 = Release|x86
16+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|x86.ActiveCfg = Debug|x86
19+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|x86.Build.0 = Debug|x86
20+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|x86.ActiveCfg = Release|x86
23+
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|x86.Build.0 = Release|x86
2924
EndGlobalSection
3025
GlobalSection(SolutionProperties) = preSolution
3126
HideSolutionNode = FALSE
3227
EndGlobalSection
3328
GlobalSection(ExtensibilityGlobals) = postSolution
34-
SolutionGuid = {FDBE2DC6-0C0E-4354-934A-D86335ABE893}
29+
SolutionGuid = {812A3F67-8C15-4F42-AC0F-78AD69CF79A9}
3530
EndGlobalSection
3631
EndGlobal

Server Creation Tool/AboutFrm.Designer.cs

Lines changed: 25 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Server Creation Tool/AboutFrm.cs

Lines changed: 10 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,26 @@
11
using System;
2-
using System.Diagnostics;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
39
using System.Windows.Forms;
410

511
namespace Server_Creation_Tool
612
{
7-
8-
9-
public partial class AboutFrm : Form
13+
public partial class aboutFrm : Form
1014
{
11-
// Form MainForm11 = null;
12-
public AboutFrm()
15+
public aboutFrm()
1316
{
1417
InitializeComponent();
1518
}
1619

17-
private void LinkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
18-
{
19-
System.Diagnostics.Process.Start("http://steamcommunity.com/id/zeromix");
20-
}
21-
22-
private void LinkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
20+
private void aboutFrm_FormClosing(object sender, FormClosingEventArgs e)
2321
{
24-
Process.Start("https://www.youtube.com/channel/UCA5MGs8_on46jz-e5HZoTPQ");
25-
}
26-
27-
private void AboutFrm_Load(object sender, EventArgs e)
28-
{
29-
30-
}
31-
private void AboutFrm_FormClosing(object sender, FormClosingEventArgs e)
32-
{
33-
// var mainform = new MainForm();
3422
e.Cancel = true;
3523
this.Hide();
36-
37-
38-
}
39-
40-
private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
41-
{
42-
43-
}
44-
45-
private void linkLabel2_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
46-
{
47-
4824
}
4925
}
5026
}

Server Creation Tool/AboutFrm.resx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,6 @@
117117
<resheader name="writer">
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120-
<metadata name="formFrameSkinner.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121-
<value>17, 17</value>
122-
</metadata>
123-
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
124-
<value>39</value>
125-
</metadata>
126120
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
127121
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
128122
<value>

Server Creation Tool/ApplicationCommands.cs

Lines changed: 0 additions & 21 deletions
This file was deleted.

Server Creation Tool/FodyWeavers.xsd

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
</xs:element>
2020
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
2121
<xs:annotation>
22-
<xs:documentation>A list of (.NET Core) runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
22+
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
2323
</xs:annotation>
2424
</xs:element>
2525
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
2626
<xs:annotation>
27-
<xs:documentation>A list of (.NET Core) runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
27+
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
2828
</xs:annotation>
2929
</xs:element>
3030
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
@@ -55,7 +55,12 @@
5555
</xs:attribute>
5656
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
5757
<xs:annotation>
58-
<xs:documentation>Controls if (.NET Core) runtime assemblies are also embedded.</xs:documentation>
58+
<xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation>
59+
</xs:annotation>
60+
</xs:attribute>
61+
<xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean">
62+
<xs:annotation>
63+
<xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation>
5964
</xs:annotation>
6065
</xs:attribute>
6166
<xs:attribute name="DisableCompression" type="xs:boolean">
@@ -90,12 +95,12 @@
9095
</xs:attribute>
9196
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
9297
<xs:annotation>
93-
<xs:documentation>A list of (.NET Core) runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
98+
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
9499
</xs:annotation>
95100
</xs:attribute>
96101
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
97102
<xs:annotation>
98-
<xs:documentation>A list of (.NET Core) runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
103+
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
99104
</xs:annotation>
100105
</xs:attribute>
101106
<xs:attribute name="Unmanaged32Assemblies" type="xs:string">

0 commit comments

Comments
 (0)