aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vs/TimeHACK/v15/.suobin165376 -> 159744 bytes
-rw-r--r--TimeHACK.Engine/GameSave/SaveData.cs16
-rw-r--r--TimeHACK.Engine/GameSave/SaveSystem.cs18
-rw-r--r--TimeHACK.Engine/TimeHACK.Engine.csproj2
-rw-r--r--TimeHACK.Engine/bin/Release/TimeHACK.Engine.dllbin185344 -> 185344 bytes
-rw-r--r--TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdbbin48640 -> 52736 bytes
-rw-r--r--TimeHACK.Engine/obj/Release/CoreCompileInputs.cache2
-rw-r--r--TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cachebin9614 -> 9510 bytes
-rw-r--r--TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cachebin2246 -> 2531 bytes
-rw-r--r--TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cachebin17117 -> 17117 bytes
-rw-r--r--TimeHACK.Engine/obj/Release/TimeHACK.Engine.dllbin185344 -> 185344 bytes
-rw-r--r--TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdbbin48640 -> 52736 bytes
-rw-r--r--TimeHACK.Main/NewGameDialog.Designer.cs125
-rw-r--r--TimeHACK.Main/NewGameDialog.cs43
-rw-r--r--TimeHACK.Main/NewGameDialog.resx120
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.Designer.cs5
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs14
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.resx2
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs105
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs17
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx3
-rw-r--r--TimeHACK.Main/TimeHACK.Main.csproj9
-rw-r--r--TimeHACK.Main/bin/Release/TimeHACK.Engine.dllbin185344 -> 185344 bytes
-rw-r--r--TimeHACK.Main/bin/Release/TimeHACK.Engine.pdbbin48640 -> 52736 bytes
-rw-r--r--TimeHACK.Main/bin/Release/TimeHACK.application21
-rw-r--r--TimeHACK.Main/bin/Release/TimeHACK.exebin4759040 -> 0 bytes
-rw-r--r--TimeHACK.Main/bin/Release/TimeHACK.exe.manifest469
-rw-r--r--TimeHACK.Main/bin/Release/TimeHACK.pdbbin183808 -> 0 bytes
-rw-r--r--TimeHACK.Main/bin/Release/app.publish/TimeHACK.exebin4759040 -> 0 bytes
-rw-r--r--TimeHACK.Main/obj/Release/CoreCompileInputs.cache2
-rw-r--r--TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cachebin73570 -> 73610 bytes
-rw-r--r--TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cachebin14191 -> 13911 bytes
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt1
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cachebin5634 -> 1093 bytes
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cachebin26715 -> 26715 bytes
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resourcesbin0 -> 180 bytes
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resourcesbin145349 -> 145349 bytes
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.application21
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.exebin4759040 -> 0 bytes
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.exe.manifest469
-rw-r--r--TimeHACK.Main/obj/Release/TimeHACK.pdbbin183808 -> 0 bytes
41 files changed, 478 insertions, 986 deletions
diff --git a/.vs/TimeHACK/v15/.suo b/.vs/TimeHACK/v15/.suo
index d20ff58..e149259 100644
--- a/.vs/TimeHACK/v15/.suo
+++ b/.vs/TimeHACK/v15/.suo
Binary files differ
diff --git a/TimeHACK.Engine/GameSave/SaveData.cs b/TimeHACK.Engine/GameSave/SaveData.cs
new file mode 100644
index 0000000..3ea901d
--- /dev/null
+++ b/TimeHACK.Engine/GameSave/SaveData.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TimeHACK.Engine.GameSave
+{
+ public class SaveData
+ {
+ static int OS
+ {
+ get; set;
+ }
+ }
+}
diff --git a/TimeHACK.Engine/GameSave/SaveSystem.cs b/TimeHACK.Engine/GameSave/SaveSystem.cs
new file mode 100644
index 0000000..e4b69d9
--- /dev/null
+++ b/TimeHACK.Engine/GameSave/SaveSystem.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Newtonsoft.Json;
+
+namespace TimeHACK.Engine
+{
+ public class SaveSystem
+ {
+ public void NewGame()
+ {
+ //int kool = 430634;
+ //JsonConvert.SerializeObject(kool);
+ }
+ }
+}
diff --git a/TimeHACK.Engine/TimeHACK.Engine.csproj b/TimeHACK.Engine/TimeHACK.Engine.csproj
index ecb6b48..5fc47e2 100644
--- a/TimeHACK.Engine/TimeHACK.Engine.csproj
+++ b/TimeHACK.Engine/TimeHACK.Engine.csproj
@@ -47,6 +47,8 @@
<ItemGroup>
<Compile Include="BSODCreator.cs" />
<None Include="Resources\WinClassic\Window\pjBg6mKP.bin" />
+ <Compile Include="GameSave\SaveData.cs" />
+ <Compile Include="GameSave\SaveSystem.cs" />
<Compile Include="TaskBarController.cs" />
<Compile Include="Template\Win9XBSOD.cs">
<SubType>Form</SubType>
diff --git a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll
index 4bb4674..2622978 100644
--- a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll
+++ b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll
Binary files differ
diff --git a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb
index bea88dc..be732e8 100644
--- a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb
+++ b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb
Binary files differ
diff --git a/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache b/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache
index 016901c..eefe581 100644
--- a/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache
+++ b/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache
@@ -1 +1 @@
-03f745c6a0e75bab98ef9919670fab0f1de5ece4
+bdbeecc076ab1435c4e764cd236cd99237fe8529
diff --git a/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
index 4103602..e421fcc 100644
--- a/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
+++ b/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
Binary files differ
diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache
index 7b238df..5860591 100644
--- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache
+++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache
Binary files differ
diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache
index 7f234df..2e5818a 100644
--- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache
+++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache
Binary files differ
diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll
index 4bb4674..2622978 100644
--- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll
+++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll
Binary files differ
diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb
index bea88dc..be732e8 100644
--- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb
+++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb
Binary files differ
diff --git a/TimeHACK.Main/NewGameDialog.Designer.cs b/TimeHACK.Main/NewGameDialog.Designer.cs
new file mode 100644
index 0000000..9aee1e0
--- /dev/null
+++ b/TimeHACK.Main/NewGameDialog.Designer.cs
@@ -0,0 +1,125 @@
+namespace TimeHACK
+{
+ partial class NewGameDialog
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.txtProfName = new System.Windows.Forms.TextBox();
+ this.label1 = new System.Windows.Forms.Label();
+ this.btnOk = new System.Windows.Forms.Button();
+ this.btnHelp = new System.Windows.Forms.Button();
+ this.btnCancl = new System.Windows.Forms.Button();
+ this.btnInfo = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // txtProfName
+ //
+ this.txtProfName.Location = new System.Drawing.Point(87, 12);
+ this.txtProfName.Name = "txtProfName";
+ this.txtProfName.Size = new System.Drawing.Size(370, 20);
+ this.txtProfName.TabIndex = 0;
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(12, 15);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(70, 13);
+ this.label1.TabIndex = 1;
+ this.label1.Text = "Profile Name:";
+ //
+ // btnOk
+ //
+ this.btnOk.Location = new System.Drawing.Point(382, 70);
+ this.btnOk.Name = "btnOk";
+ this.btnOk.Size = new System.Drawing.Size(75, 23);
+ this.btnOk.TabIndex = 2;
+ this.btnOk.Text = "OK";
+ this.btnOk.UseVisualStyleBackColor = true;
+ this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
+ //
+ // btnHelp
+ //
+ this.btnHelp.Location = new System.Drawing.Point(301, 70);
+ this.btnHelp.Name = "btnHelp";
+ this.btnHelp.Size = new System.Drawing.Size(75, 23);
+ this.btnHelp.TabIndex = 2;
+ this.btnHelp.Text = "Help";
+ this.btnHelp.UseVisualStyleBackColor = true;
+ this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
+ //
+ // btnCancl
+ //
+ this.btnCancl.Location = new System.Drawing.Point(220, 70);
+ this.btnCancl.Name = "btnCancl";
+ this.btnCancl.Size = new System.Drawing.Size(75, 23);
+ this.btnCancl.TabIndex = 2;
+ this.btnCancl.Text = "Cancel";
+ this.btnCancl.UseVisualStyleBackColor = true;
+ this.btnCancl.Click += new System.EventHandler(this.btnCancl_Click);
+ //
+ // btnInfo
+ //
+ this.btnInfo.Location = new System.Drawing.Point(7, 70);
+ this.btnInfo.Name = "btnInfo";
+ this.btnInfo.Size = new System.Drawing.Size(121, 23);
+ this.btnInfo.TabIndex = 2;
+ this.btnInfo.Text = "Technical Info";
+ this.btnInfo.UseVisualStyleBackColor = true;
+ this.btnInfo.Click += new System.EventHandler(this.btnInfo_Click);
+ //
+ // NewGameDialog
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(469, 96);
+ this.Controls.Add(this.btnInfo);
+ this.Controls.Add(this.btnCancl);
+ this.Controls.Add(this.btnHelp);
+ this.Controls.Add(this.btnOk);
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.txtProfName);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+ this.MaximizeBox = false;
+ this.MinimizeBox = false;
+ this.Name = "NewGameDialog";
+ this.Text = "New Game";
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.TextBox txtProfName;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Button btnOk;
+ private System.Windows.Forms.Button btnHelp;
+ private System.Windows.Forms.Button btnCancl;
+ private System.Windows.Forms.Button btnInfo;
+ }
+} \ No newline at end of file
diff --git a/TimeHACK.Main/NewGameDialog.cs b/TimeHACK.Main/NewGameDialog.cs
new file mode 100644
index 0000000..3479aec
--- /dev/null
+++ b/TimeHACK.Main/NewGameDialog.cs
@@ -0,0 +1,43 @@
+using System;
+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;
+using TimeHACK.Engine;
+using TimeHACK.Engine.GameSave;
+using Newtonsoft.Json;
+
+namespace TimeHACK
+{
+ public partial class NewGameDialog : Form
+ {
+ public NewGameDialog()
+ {
+ InitializeComponent();
+ }
+
+ private void btnHelp_Click(object sender, EventArgs e)
+ {
+ MessageBox.Show("You can choose a profile name - this will create a new profile! Whenever you want to Load a game, click 'Load Game' and then choose a profile (You can have as many prfiles as you want)");
+ }
+
+ private void btnCancl_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+
+ private void btnInfo_Click(object sender, EventArgs e)
+ {
+ MessageBox.Show("The game's profiles are stored in C:/TimeHACK/Profiles - the rest is for you to figure out!");
+ }
+
+ private void btnOk_Click(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
diff --git a/TimeHACK.Main/NewGameDialog.resx b/TimeHACK.Main/NewGameDialog.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/TimeHACK.Main/NewGameDialog.resx
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+ <!--
+ Microsoft ResX Schema
+
+ Version 2.0
+
+ The primary goals of this format is to allow a simple XML format
+ that is mostly human readable. The generation and parsing of the
+ various data types are done through the TypeConverter classes
+ associated with the data types.
+
+ Example:
+
+ ... ado.net/XML headers & schema ...
+ <resheader name="resmimetype">text/microsoft-resx</resheader>
+ <resheader name="version">2.0</resheader>
+ <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+ <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+ <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+ <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+ <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+ <value>[base64 mime encoded serialized .NET Framework object]</value>
+ </data>
+ <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+ <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+ <comment>This is a comment</comment>
+ </data>
+
+ There are any number of "resheader" rows that contain simple
+ name/value pairs.
+
+ Each data row contains a name, and value. The row also contains a
+ type or mimetype. Type corresponds to a .NET class that support
+ text/value conversion through the TypeConverter architecture.
+ Classes that don't support this are serialized and stored with the
+ mimetype set.
+
+ The mimetype is used for serialized objects, and tells the
+ ResXResourceReader how to depersist the object. This is currently not
+ extensible. For a given mimetype the value must be set accordingly:
+
+ Note - application/x-microsoft.net.object.binary.base64 is the format
+ that the ResXResourceWriter will generate, however the reader can
+ read any of the formats listed below.
+
+ mimetype: application/x-microsoft.net.object.binary.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.soap.base64
+ value : The object must be serialized with
+ : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+ : and then encoded with base64 encoding.
+
+ mimetype: application/x-microsoft.net.object.bytearray.base64
+ value : The object must be serialized into a byte array
+ : using a System.ComponentModel.TypeConverter
+ : and then encoded with base64 encoding.
+ -->
+ <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+ <xsd:element name="root" msdata:IsDataSet="true">
+ <xsd:complexType>
+ <xsd:choice maxOccurs="unbounded">
+ <xsd:element name="metadata">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" />
+ </xsd:sequence>
+ <xsd:attribute name="name" use="required" type="xsd:string" />
+ <xsd:attribute name="type" type="xsd:string" />
+ <xsd:attribute name="mimetype" type="xsd:string" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="assembly">
+ <xsd:complexType>
+ <xsd:attribute name="alias" type="xsd:string" />
+ <xsd:attribute name="name" type="xsd:string" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="data">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+ <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+ <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+ <xsd:attribute ref="xml:space" />
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="resheader">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+ </xsd:sequence>
+ <xsd:attribute name="name" type="xsd:string" use="required" />
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ <resheader name="resmimetype">
+ <value>text/microsoft-resx</value>
+ </resheader>
+ <resheader name="version">
+ <value>2.0</value>
+ </resheader>
+ <resheader name="reader">
+ <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+ <resheader name="writer">
+ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+ </resheader>
+</root> \ No newline at end of file
diff --git a/TimeHACK.Main/OS/Win95/Win95.Designer.cs b/TimeHACK.Main/OS/Win95/Win95.Designer.cs
index 2e88c36..04374ba 100644
--- a/TimeHACK.Main/OS/Win95/Win95.Designer.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.Designer.cs
@@ -29,7 +29,7 @@
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- this.resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95));
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95));
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("My Computer", 0);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Network Neighborhood", 5);
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Inbox", 3);
@@ -238,7 +238,7 @@
this.startmenuitems.Name = "startmenuitems";
this.startmenuitems.Padding = new System.Windows.Forms.Padding(6, 2, 0, 0);
this.startmenuitems.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
- this.startmenuitems.Size = new System.Drawing.Size(141, 292);
+ this.startmenuitems.Size = new System.Drawing.Size(141, 311);
this.startmenuitems.TabIndex = 0;
this.startmenuitems.Text = "StartMenu";
//
@@ -439,6 +439,7 @@
this.AddressBookToolStripMenuItem.Name = "AddressBookToolStripMenuItem";
this.AddressBookToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
this.AddressBookToolStripMenuItem.Text = "Address Book";
+ this.AddressBookToolStripMenuItem.Click += new System.EventHandler(this.AddressBookToolStripMenuItem_Click);
//
// CalculatorToolStripMenuItem
//
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs
index da8a550..eeaa9f2 100644
--- a/TimeHACK.Main/OS/Win95/Win95.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.cs
@@ -310,6 +310,20 @@ namespace TimeHACK.OS.Win95
}
}
+ private void AddressBookToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ WinClassicAddressBook ab = new WinClassicAddressBook();
+ WinClassic app = wm.startWin95(ab, "Address Book", Properties.Resources.Win95IconWordpad, true, true);
+ AddTaskBarItem(app, app.Tag.ToString(), "Address Book", Properties.Resources.Win95IconWordpad);
+
+ nonimportantapps.Add(app);
+ nonimportantapps[nonimportantapps.Count - 1].BringToFront();
+ nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
+
+ app.BringToFront();
+ startmenu.Hide();
+ }
+
//TODO: Add Outlook Express 4
}
}
diff --git a/TimeHACK.Main/OS/Win95/Win95.resx b/TimeHACK.Main/OS/Win95/Win95.resx
index ae3e1b6..ac1b120 100644
--- a/TimeHACK.Main/OS/Win95/Win95.resx
+++ b/TimeHACK.Main/OS/Win95/Win95.resx
@@ -330,7 +330,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq
- ggAAAk1TRnQBSQFMAgEBDAEAATABAQEwAQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
+ ggAAAk1TRnQBSQFMAgEBDAEAATgBAQE4AQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
AwABgAMAAQEBAAEgBwABAf8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A
/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A
/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8AXAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs
index 09f32df..4974cc2 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs
@@ -28,18 +28,121 @@
/// </summary>
private void InitializeComponent()
{
+ this.label1 = new System.Windows.Forms.Label();
+ this.topmenu = new System.Windows.Forms.MenuStrip();
+ this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.newContactToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.newGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.topmenu.SuspendLayout();
this.SuspendLayout();
//
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label1.Location = new System.Drawing.Point(114, 85);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(442, 39);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "YOY! This is my application";
+ //
+ // topmenu
+ //
+ this.topmenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.fileToolStripMenuItem,
+ this.editToolStripMenuItem,
+ this.viewToolStripMenuItem,
+ this.toolsToolStripMenuItem,
+ this.helpToolStripMenuItem});
+ this.topmenu.Location = new System.Drawing.Point(0, 0);
+ this.topmenu.Name = "topmenu";
+ this.topmenu.Size = new System.Drawing.Size(666, 24);
+ this.topmenu.TabIndex = 1;
+ this.topmenu.Text = "menuStrip1";
+ //
+ // fileToolStripMenuItem
+ //
+ this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.newContactToolStripMenuItem,
+ this.newGroupToolStripMenuItem,
+ this.newFolderToolStripMenuItem});
+ this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
+ this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
+ this.fileToolStripMenuItem.Text = "File";
+ //
+ // editToolStripMenuItem
+ //
+ this.editToolStripMenuItem.Name = "editToolStripMenuItem";
+ this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
+ this.editToolStripMenuItem.Text = "Edit";
+ //
+ // viewToolStripMenuItem
+ //
+ this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
+ this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
+ this.viewToolStripMenuItem.Text = "View";
+ //
+ // toolsToolStripMenuItem
+ //
+ this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
+ this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
+ this.toolsToolStripMenuItem.Text = "Tools";
+ //
+ // helpToolStripMenuItem
+ //
+ this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
+ this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
+ this.helpToolStripMenuItem.Text = "Help";
+ //
+ // newContactToolStripMenuItem
+ //
+ this.newContactToolStripMenuItem.Name = "newContactToolStripMenuItem";
+ this.newContactToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.newContactToolStripMenuItem.Text = "New contact...";
+ //
+ // newGroupToolStripMenuItem
+ //
+ this.newGroupToolStripMenuItem.Name = "newGroupToolStripMenuItem";
+ this.newGroupToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.newGroupToolStripMenuItem.Text = "New group...";
+ //
+ // newFolderToolStripMenuItem
+ //
+ this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
+ this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
+ this.newFolderToolStripMenuItem.Text = "New folder...";
+ //
// WinClassicAddressBook
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.topmenu);
this.Name = "WinClassicAddressBook";
- this.Size = new System.Drawing.Size(260, 264);
+ this.Size = new System.Drawing.Size(666, 425);
+ this.topmenu.ResumeLayout(false);
+ this.topmenu.PerformLayout();
this.ResumeLayout(false);
+ this.PerformLayout();
}
#endregion
+
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.MenuStrip topmenu;
+ private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem newContactToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem newGroupToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem newFolderToolStripMenuItem;
}
}
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
index 3934fa7..624267c 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs
@@ -15,6 +15,23 @@ namespace TimeHACK.OS.Win95.Win95Apps
public WinClassicAddressBook()
{
InitializeComponent();
+ foreach (ToolStripMenuItem item in topmenu.Items)
+ {
+ item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0)));
+ item.BackColor = Color.Silver;
+ item.BackgroundImage = Properties.Resources.sliversilver;
+ item.BackgroundImageLayout = ImageLayout.Center;
+ item.DisplayStyle = ToolStripItemDisplayStyle.Text;
+ }
+
+ //Time to prepare to load all the fonts up for the combo boxes
+
+ //foreach (FontFamily font in System.Drawing.FontFamily.Families)
+ //{
+ // Added to the ComboBox here
+
+ //comboFont.Items.Add(font.Name);
+ //}
}
}
}
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx
index 1af7de1..6dff4e6 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx
@@ -117,4 +117,7 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
+ <metadata name="topmenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>17, 17</value>
+ </metadata>
</root> \ No newline at end of file
diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj
index 9dafca4..db4f9fe 100644
--- a/TimeHACK.Main/TimeHACK.Main.csproj
+++ b/TimeHACK.Main/TimeHACK.Main.csproj
@@ -119,6 +119,12 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
+ <Compile Include="NewGameDialog.cs">
+ <SubType>Form</SubType>
+ </Compile>
+ <Compile Include="NewGameDialog.Designer.cs">
+ <DependentUpon>NewGameDialog.cs</DependentUpon>
+ </Compile>
<Compile Include="OS\Win95\Win95.cs">
<SubType>Form</SubType>
</Compile>
@@ -204,6 +210,9 @@
<Compile Include="TitleScreen.Designer.cs">
<DependentUpon>TitleScreen.cs</DependentUpon>
</Compile>
+ <EmbeddedResource Include="NewGameDialog.resx">
+ <DependentUpon>NewGameDialog.cs</DependentUpon>
+ </EmbeddedResource>
<EmbeddedResource Include="OS\Win95\Win95.resx">
<DependentUpon>Win95.cs</DependentUpon>
</EmbeddedResource>
diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll
index 4bb4674..2622978 100644
--- a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll
+++ b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll
Binary files differ
diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb b/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb
index bea88dc..be732e8 100644
--- a/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb
+++ b/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb
Binary files differ
diff --git a/TimeHACK.Main/bin/Release/TimeHACK.application b/TimeHACK.Main/bin/Release/TimeHACK.application
deleted file mode 100644
index 869f3dc..0000000
--- a/TimeHACK.Main/bin/Release/TimeHACK.application
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
- <assemblyIdentity name="TimeHACK.application" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
- <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" />
- <deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" />
- <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
- <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
- </compatibleFrameworks>
- <dependency>
- <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22480">
- <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>2HPIdiZqquZgs5r33pAG5zPGGOSw61XmsnFKC99cVUA=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
-</asmv1:assembly> \ No newline at end of file
diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe b/TimeHACK.Main/bin/Release/TimeHACK.exe
deleted file mode 100644
index 0ae27b4..0000000
--- a/TimeHACK.Main/bin/Release/TimeHACK.exe
+++ /dev/null
Binary files differ
diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest
deleted file mode 100644
index 6b033b1..0000000
--- a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest
+++ /dev/null
@@ -1,469 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
- <asmv1:assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" />
- <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" />
- <application />
- <entryPoint>
- <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
- <commandLine file="TimeHACK.exe" parameters="" />
- </entryPoint>
- <co.v1:useManifestForTrust xmlns="urn:schemas-microsoft-com:asm.v1" />
- <trustInfo>
- <security>
- <applicationRequestMinimum>
- <PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
- <defaultAssemblyRequest permissionSetReference="Custom" />
- </applicationRequestMinimum>
- <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
- <!--
- UAC Manifest Options
- If you want to change the Windows User Account Control level replace the
- requestedExecutionLevel node with one of the following.
-
- <requestedExecutionLevel level="asInvoker" uiAccess="false" />
- <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
- <requestedExecutionLevel level="highestAvailable" uiAccess="false" />
-
- If you want to utilize File and Registry Virtualization for backward
- compatibility then delete the requestedExecutionLevel node.
- -->
- <requestedExecutionLevel level="asInvoker" uiAccess="false" />
- </requestedPrivileges>
- </security>
- </trustInfo>
- <dependency>
- <dependentOS>
- <osVersionInfo>
- <os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
- </osVersionInfo>
- </dependentOS>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
- <assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
- </dependentAssembly>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Newtonsoft.Json.dll" size="654848">
- <assemblyIdentity name="Newtonsoft.Json" version="10.0.0.0" publicKeyToken="30AD4FE6B2A6AEED" language="neutral" processorArchitecture="msil" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040">
- <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>7LWP70+epu/ZatYgTAt1zLj3tUDScjNPBFhFDYlM4NU=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="185344">
- <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
- <file name="Resources\12padams_EULA.txt" size="1306">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\Icon128x.ico" size="99678">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\google.jpg" size="6218">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\googlehome.html" size="473">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\googleprototype.html" size="2575">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>EkfQ8aLPyyAH5829pfeLE7IKs7tDqPXZl2I+MzNMjZo=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\ie4start.html" size="1064">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\padams.html" size="3165">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\Exit.png" size="138932">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\LoadGame.png" size="178312">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\MSExit.png" size="40470">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\MSLoadGame.png" size="47514">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\MSNewGame.png" size="47088">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\NewGame.png" size="179172">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TaskBarButton.png" size="387">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TaskBarClock.png" size="256">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TimeHACK_Logo.png" size="879972">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TitleScreenBG.png" size="1569144">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\16Color.png" size="657">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\256Color.png" size="264">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\TrueColor.png" size="284">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\Win95SideBar.png" size="835">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\Win95Start.wav" size="270382">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicClock.png" size="221">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicComputer.png" size="410">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicDocuments.png" size="346">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicFind.png" size="519">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>+zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicFolder.png" size="285">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicHelp.png" size="468">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicIE4.png" size="534">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicInbox.png" size="614">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicMSN.png" size="557">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>+Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicNetworking.png" size="492">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicOutlook.png" size="632">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicProgramItem.png" size="312">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>/J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicPrograms.png" size="377">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicRecycle.png" size="522">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicRun.png" size="439">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicSettings.png" size="543">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicShutdown.png" size="461">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicStart.png" size="380">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicSuspend.png" size="467">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicTaskBar.png" size="127">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicTime.png" size="225">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q=</dsig:DigestValue>
- </hash>
- </file>
-</asmv1:assembly> \ No newline at end of file
diff --git a/TimeHACK.Main/bin/Release/TimeHACK.pdb b/TimeHACK.Main/bin/Release/TimeHACK.pdb
deleted file mode 100644
index 226fed1..0000000
--- a/TimeHACK.Main/bin/Release/TimeHACK.pdb
+++ /dev/null
Binary files differ
diff --git a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe
deleted file mode 100644
index 0ae27b4..0000000
--- a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe
+++ /dev/null
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/CoreCompileInputs.cache b/TimeHACK.Main/obj/Release/CoreCompileInputs.cache
index 80cd691..9bfc9d3 100644
--- a/TimeHACK.Main/obj/Release/CoreCompileInputs.cache
+++ b/TimeHACK.Main/obj/Release/CoreCompileInputs.cache
@@ -1 +1 @@
-b2dbf06aa0cc470c40ca4fe96ade7148963cc456
+b26a4c517dee1309b1e9884b9621232394ba8ed0
diff --git a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache
index fc4277d..875050f 100644
--- a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache
+++ b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
index 9d8e4f0..7c3de03 100644
--- a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
+++ b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt
index dd398fa..0cac41b 100644
--- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt
+++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt
@@ -90,3 +90,4 @@ C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHA
C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache
C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest
C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.application
+I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache
index 10057d7..b1476c3 100644
--- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache
+++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache
index bc11b9a..2b1420e 100644
--- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache
+++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources b/TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources
new file mode 100644
index 0000000..6c05a97
--- /dev/null
+++ b/TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources
index 813ae27..159c838 100644
--- a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources
+++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.application b/TimeHACK.Main/obj/Release/TimeHACK.application
deleted file mode 100644
index 869f3dc..0000000
--- a/TimeHACK.Main/obj/Release/TimeHACK.application
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
- <assemblyIdentity name="TimeHACK.application" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
- <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" />
- <deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" />
- <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
- <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
- </compatibleFrameworks>
- <dependency>
- <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22480">
- <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>2HPIdiZqquZgs5r33pAG5zPGGOSw61XmsnFKC99cVUA=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
-</asmv1:assembly> \ No newline at end of file
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe b/TimeHACK.Main/obj/Release/TimeHACK.exe
deleted file mode 100644
index 0ae27b4..0000000
--- a/TimeHACK.Main/obj/Release/TimeHACK.exe
+++ /dev/null
Binary files differ
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest
deleted file mode 100644
index 6b033b1..0000000
--- a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest
+++ /dev/null
@@ -1,469 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
- <asmv1:assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" />
- <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" />
- <application />
- <entryPoint>
- <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
- <commandLine file="TimeHACK.exe" parameters="" />
- </entryPoint>
- <co.v1:useManifestForTrust xmlns="urn:schemas-microsoft-com:asm.v1" />
- <trustInfo>
- <security>
- <applicationRequestMinimum>
- <PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
- <defaultAssemblyRequest permissionSetReference="Custom" />
- </applicationRequestMinimum>
- <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
- <!--
- UAC Manifest Options
- If you want to change the Windows User Account Control level replace the
- requestedExecutionLevel node with one of the following.
-
- <requestedExecutionLevel level="asInvoker" uiAccess="false" />
- <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
- <requestedExecutionLevel level="highestAvailable" uiAccess="false" />
-
- If you want to utilize File and Registry Virtualization for backward
- compatibility then delete the requestedExecutionLevel node.
- -->
- <requestedExecutionLevel level="asInvoker" uiAccess="false" />
- </requestedPrivileges>
- </security>
- </trustInfo>
- <dependency>
- <dependentOS>
- <osVersionInfo>
- <os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
- </osVersionInfo>
- </dependentOS>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
- <assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
- </dependentAssembly>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Newtonsoft.Json.dll" size="654848">
- <assemblyIdentity name="Newtonsoft.Json" version="10.0.0.0" publicKeyToken="30AD4FE6B2A6AEED" language="neutral" processorArchitecture="msil" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040">
- <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>7LWP70+epu/ZatYgTAt1zLj3tUDScjNPBFhFDYlM4NU=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
- <dependency>
- <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="185344">
- <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue>
- </hash>
- </dependentAssembly>
- </dependency>
- <file name="Resources\12padams_EULA.txt" size="1306">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\Icon128x.ico" size="99678">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\google.jpg" size="6218">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\googlehome.html" size="473">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\googleprototype.html" size="2575">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>EkfQ8aLPyyAH5829pfeLE7IKs7tDqPXZl2I+MzNMjZo=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\ie4start.html" size="1064">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\IE4\padams.html" size="3165">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\Exit.png" size="138932">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\LoadGame.png" size="178312">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\MSExit.png" size="40470">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\MSLoadGame.png" size="47514">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\MSNewGame.png" size="47088">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\NewGame.png" size="179172">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TaskBarButton.png" size="387">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TaskBarClock.png" size="256">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TimeHACK_Logo.png" size="879972">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\TitleScreen\TitleScreenBG.png" size="1569144">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\16Color.png" size="657">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\256Color.png" size="264">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\TrueColor.png" size="284">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\Win95SideBar.png" size="835">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\Win95Start.wav" size="270382">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicClock.png" size="221">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicComputer.png" size="410">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicDocuments.png" size="346">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicFind.png" size="519">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>+zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicFolder.png" size="285">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicHelp.png" size="468">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicIE4.png" size="534">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicInbox.png" size="614">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicMSN.png" size="557">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>+Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicNetworking.png" size="492">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicOutlook.png" size="632">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicProgramItem.png" size="312">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>/J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicPrograms.png" size="377">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicRecycle.png" size="522">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicRun.png" size="439">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicSettings.png" size="543">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicShutdown.png" size="461">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicStart.png" size="380">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicSuspend.png" size="467">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicTaskBar.png" size="127">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue>
- </hash>
- </file>
- <file name="Resources\WinClassic\WinClassicTime.png" size="225">
- <hash>
- <dsig:Transforms>
- <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
- </dsig:Transforms>
- <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
- <dsig:DigestValue>x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q=</dsig:DigestValue>
- </hash>
- </file>
-</asmv1:assembly> \ No newline at end of file
diff --git a/TimeHACK.Main/obj/Release/TimeHACK.pdb b/TimeHACK.Main/obj/Release/TimeHACK.pdb
deleted file mode 100644
index 226fed1..0000000
--- a/TimeHACK.Main/obj/Release/TimeHACK.pdb
+++ /dev/null
Binary files differ