From 3306d36ecbc024775972e5cf7971b2a7a70671d0 Mon Sep 17 00:00:00 2001 From: lempamo Date: Wed, 23 Aug 2017 13:38:40 -0400 Subject: Renaming the game! --- Histacom2/Properties/AssemblyInfo.cs | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Histacom2/Properties/AssemblyInfo.cs (limited to 'Histacom2/Properties/AssemblyInfo.cs') diff --git a/Histacom2/Properties/AssemblyInfo.cs b/Histacom2/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..387ec5b --- /dev/null +++ b/Histacom2/Properties/AssemblyInfo.cs @@ -0,0 +1,39 @@ +using System.Resources; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Histacom2")] +[assembly: AssemblyDescription("Revival of the original hacking simulator!")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Histacom2Devs")] +[assembly: AssemblyProduct("Histacom2")] +[assembly: AssemblyCopyright("Copyright © Histacom2Devs 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("b958aa5f-8aed-456c-9c07-9e4c6c027042")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("2.0.0.3")] +[assembly: AssemblyFileVersion("2.0.0.3")] +[assembly: NeutralResourcesLanguage("en-US")] + -- cgit v1.2.3 From 965a9beb4b7ac52816136a8c701a26d3d80ae398 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sat, 26 Aug 2017 18:48:50 -0400 Subject: off to the next version! --- Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs | 2 ++ Histacom2/Properties/AssemblyInfo.cs | 4 ++-- Histacom2/TitleScreen.cs | 8 ++++---- 3 files changed, 8 insertions(+), 6 deletions(-) (limited to 'Histacom2/Properties/AssemblyInfo.cs') diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs index 83f8b5d..674bb23 100644 --- a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs @@ -97,6 +97,7 @@ namespace Histacom2.OS.Win95.Win95Apps WindowManager wm = new WindowManager(); wm.StartWin95(opendownload, "Downloader", null, false, true); opendownload.appName.Text = "Downloading: Web Chat 1998"; + opendownload.amountToDL = 35; } else if (objListViewItem.Text == "Time Distorter Setup.exe") { @@ -111,6 +112,7 @@ namespace Histacom2.OS.Win95.Win95Apps WindowManager wm = new WindowManager(); wm.StartWin95(opendownload, "Downloader", null, false, true); opendownload.appName.Text = "Downloading: Guess The Number V1"; + opendownload.amountToDL = 16; } } } diff --git a/Histacom2/Properties/AssemblyInfo.cs b/Histacom2/Properties/AssemblyInfo.cs index 387ec5b..981eb39 100644 --- a/Histacom2/Properties/AssemblyInfo.cs +++ b/Histacom2/Properties/AssemblyInfo.cs @@ -33,7 +33,7 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.0.0.3")] -[assembly: AssemblyFileVersion("2.0.0.3")] +[assembly: AssemblyVersion("2.0.1")] +[assembly: AssemblyFileVersion("2.0.1")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/Histacom2/TitleScreen.cs b/Histacom2/TitleScreen.cs index 8ff5e3d..1cefa9c 100644 --- a/Histacom2/TitleScreen.cs +++ b/Histacom2/TitleScreen.cs @@ -126,7 +126,7 @@ namespace Histacom2 Resources.google.Save(Path.Combine(DataDirectory, "google.jpg")); // Set GameVersion - gameversion.Text = "Version 2.0.0.3"; + gameversion.Text = "Version 2.0.1"; // Initialize Font File.WriteAllBytes(DataDirectory + "\\LeviWindows.ttf", Resources.LeviWindows); @@ -268,7 +268,7 @@ namespace Histacom2 private void gameversion_MouseLeave(object sender, EventArgs e) { - gameversion.Text = "Version 2.0.0.3"; + gameversion.Text = "Version 2.0.1"; } private void startbutton_Click(object sender, EventArgs e) @@ -291,9 +291,9 @@ namespace Histacom2 private void updateText_Tick(object sender, EventArgs e) { - if (gameversion.Text != "Version 2.0.0.3") + if (gameversion.Text != "Version 2.0.1") { - gameversion.Text = "Version 2.0.0.3"; + gameversion.Text = "Version 2.0.1"; updateText.Stop(); } } -- cgit v1.2.3