aboutsummaryrefslogtreecommitdiff
path: root/Histacom2
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-26 18:48:50 -0400
committerlempamo <[email protected]>2017-08-26 18:48:50 -0400
commit965a9beb4b7ac52816136a8c701a26d3d80ae398 (patch)
tree04d86d71bfeb71498c3275c3aaa942ad102296dc /Histacom2
parent12d308ccee2c052f97df9b7f0ad38381d0df0dab (diff)
downloadhistacom2-2.0.1.tar.gz
histacom2-2.0.1.tar.bz2
histacom2-2.0.1.zip
off to the next version!v2.0.1
Diffstat (limited to 'Histacom2')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs2
-rw-r--r--Histacom2/Properties/AssemblyInfo.cs4
-rw-r--r--Histacom2/TitleScreen.cs8
3 files changed, 8 insertions, 6 deletions
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();
}
}