Skip to content

Commit f3291d6

Browse files
committed
3.0.1.1
Fixed The Ability To Resize The Updater Tool. Fixed The Startup Position Of The Server Settings Tool And Updater Tool. Re-Added USMVer.dat File To Notify Old Versions Of New Update.
1 parent 2a623f8 commit f3291d6

File tree

7 files changed

+17
-7
lines changed

7 files changed

+17
-7
lines changed

Data/USMVer.dat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0.1.1

Data/Versions.zip

-2 Bytes
Binary file not shown.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----------- Unturned Server Manager -----------
22

3-
Version: Public 3.0.1.0
3+
Version: Public 3.0.1.1
44

55
[![Github Releases](https://img.shields.io/github/downloads/persiafighter/UnturnedServerManager/latest/total.svg?style=plastic)](https://github.com/persiafighter/UnturnedServerManager/releases/tag/v3.0.0.5) [![GitHub issues](https://img.shields.io/github/issues/persiafighter/UnturnedServerManager.svg?style=plastic)](https://github.com/persiafighter/UnturnedServerManager/issues) [![GitHub closed issues](https://img.shields.io/github/issues-closed/persiafighter/UnturnedServerManager.svg?style=plastic)]()
66

@@ -55,6 +55,12 @@ https://www.reddit.com/r/unturned/comments/546y67/unturned_server_manager/
5555

5656
#Changelog:
5757

58+
**V3.0.1.1** -
59+
60+
* Fixed The Ability To Resize The Updater Tool.
61+
* Fixed The Startup Position Of The Server Settings Tool And Updater Tool.
62+
* Re-Added USMVer.dat File To Notify Old Versions Of New Update.
63+
5864
**V3.0.1.0** -
5965

6066
* Fixed The Inability To Change The Server Path From GUI.

USM/ConstConfig.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

USM/Manager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ private void CheckLatestVersion()
186186
Downloader.Extract("USM.zip", Downloader.Temp);
187187
string LatestVersion = File.ReadAllLines(Downloader.Temp + @"\Versions.dat")[2];
188188
Logger.Log("Read data from latest USM version.");
189-
if (LatestVersion != "3.0.1.0")
189+
if (LatestVersion != "3.0.1.1")
190190
{
191191
Logger.Log("Version of the program is different than the latest one. Opened notification of a new update.");
192-
Notifier.ShowBalloonTip(5000, "New Version", "A new version for Unturned Server Manager is available! Head over to the github page for more information. Your version: 3.0.1.0, Latest Version: " + LatestVersion + ".", ToolTipIcon.None);
192+
Notifier.ShowBalloonTip(5000, "New Version", "A new version for Unturned Server Manager is available! Head over to the github page for more information. Your version: 3.0.1.1, Latest Version: " + LatestVersion + ".", ToolTipIcon.None);
193193
}
194194
Downloader.ShutOff();
195195
Logger.Log("Deleted temp download folder.");

USM/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
[assembly: AssemblyCulture("")]
1111
[assembly: ComVisible(false)]
1212
[assembly: Guid("2d1dcd0a-9719-44f5-8f0e-2fd79d918fb5")]
13-
[assembly: AssemblyVersion("3.0.1.0")]
14-
[assembly: AssemblyFileVersion("3.0.1.0")]
13+
[assembly: AssemblyVersion("3.0.1.1")]
14+
[assembly: AssemblyFileVersion("3.0.1.1")]

USM/Updater.Designer.cs

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

0 commit comments

Comments
 (0)