-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
645 changed files
with
6,986 additions
and
155,504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.