Skip to content

Commit

Permalink
Version 4.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Zeromix9 committed Jun 13, 2021
1 parent 78029de commit 512eff0
Show file tree
Hide file tree
Showing 645 changed files with 6,986 additions and 155,504 deletions.
2 changes: 2 additions & 0 deletions ERROR CODE MEANINGS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ERROR CODE 3 : CAN'T UNZIP STEAMCMD
ERROR CODE 2 : SteamCMD download failed
25 changes: 10 additions & 15 deletions Server Creation Tool.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30804.86
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server Creation Tool", "Server Creation Tool\Server Creation Tool.csproj", "{85E71E8C-9E94-400F-99D1-C9C33CADE381}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{10744169-EC50-4DD5-AA97-2BDD0CF08F3E}"
ProjectSection(SolutionItems) = preProject
Server Creation Tool\FodyWeavers.xml = Server Creation Tool\FodyWeavers.xml
EndProjectSection
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server Creation Tool", "Server Creation Tool\Server Creation Tool.csproj", "{B699DCA7-69B3-4887-A107-D194FE87AC4D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -18,19 +13,19 @@ Global
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|Any CPU.Build.0 = Debug|Any CPU
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|x86.ActiveCfg = Debug|x86
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Debug|x86.Build.0 = Debug|x86
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|Any CPU.ActiveCfg = Release|Any CPU
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|Any CPU.Build.0 = Release|Any CPU
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|x86.ActiveCfg = Release|x86
{85E71E8C-9E94-400F-99D1-C9C33CADE381}.Release|x86.Build.0 = Release|x86
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|x86.ActiveCfg = Debug|x86
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Debug|x86.Build.0 = Debug|x86
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|Any CPU.Build.0 = Release|Any CPU
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|x86.ActiveCfg = Release|x86
{B699DCA7-69B3-4887-A107-D194FE87AC4D}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FDBE2DC6-0C0E-4354-934A-D86335ABE893}
SolutionGuid = {812A3F67-8C15-4F42-AC0F-78AD69CF79A9}
EndGlobalSection
EndGlobal
73 changes: 25 additions & 48 deletions Server Creation Tool/AboutFrm.Designer.cs

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

44 changes: 10 additions & 34 deletions Server Creation Tool/AboutFrm.cs
Original file line number Diff line number Diff line change
@@ -1,50 +1,26 @@
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Server_Creation_Tool
{


public partial class AboutFrm : Form
public partial class aboutFrm : Form
{
// Form MainForm11 = null;
public AboutFrm()
public aboutFrm()
{
InitializeComponent();
}

private void LinkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://steamcommunity.com/id/zeromix");
}

private void LinkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
private void aboutFrm_FormClosing(object sender, FormClosingEventArgs e)
{
Process.Start("https://www.youtube.com/channel/UCA5MGs8_on46jz-e5HZoTPQ");
}

private void AboutFrm_Load(object sender, EventArgs e)
{

}
private void AboutFrm_FormClosing(object sender, FormClosingEventArgs e)
{
// var mainform = new MainForm();
e.Cancel = true;
this.Hide();


}

private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
{

}

private void linkLabel2_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
{

}
}
}
6 changes: 0 additions & 6 deletions Server Creation Tool/AboutFrm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,6 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="formFrameSkinner.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>39</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down
21 changes: 0 additions & 21 deletions Server Creation Tool/ApplicationCommands.cs

This file was deleted.

15 changes: 10 additions & 5 deletions Server Creation Tool/FodyWeavers.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<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>
<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>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<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>
<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>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
Expand Down Expand Up @@ -55,7 +55,12 @@
</xs:attribute>
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if (.NET Core) runtime assemblies are also embedded.</xs:documentation>
<xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCompression" type="xs:boolean">
Expand Down Expand Up @@ -90,12 +95,12 @@
</xs:attribute>
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<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>
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<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>
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged32Assemblies" type="xs:string">
Expand Down
Loading

0 comments on commit 512eff0

Please sign in to comment.