Added TimeHACK.Engine...

i had an anal screw, honeyfry
This commit is contained in:
AShifter 2017-03-26 15:16:44 -06:00
parent f16f3a8a3d
commit 3d5745cbfc
41 changed files with 3880 additions and 48 deletions

View file

@ -93,7 +93,7 @@ private void InitializeComponent()
this.programtopbar.Name = "programtopbar";
this.programtopbar.Size = new System.Drawing.Size(292, 18);
this.programtopbar.TabIndex = 0;
this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.programtopbar_drag);
this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Programtopbar_drag);
//
// maximizebutton
//
@ -104,7 +104,7 @@ private void InitializeComponent()
this.maximizebutton.Size = new System.Drawing.Size(16, 14);
this.maximizebutton.TabIndex = 6;
this.maximizebutton.TabStop = false;
this.maximizebutton.Click += new System.EventHandler(this.maximizebutton_Click);
this.maximizebutton.Click += new System.EventHandler(this.Maximizebutton_Click);
//
// minimizebutton
//
@ -136,7 +136,7 @@ private void InitializeComponent()
this.closebutton.Size = new System.Drawing.Size(16, 14);
this.closebutton.TabIndex = 4;
this.closebutton.TabStop = false;
this.closebutton.Click += new System.EventHandler(this.closebutton_Click);
this.closebutton.Click += new System.EventHandler(this.Closebutton_Click);
//
// toprightcorner
//

View file

@ -20,7 +20,7 @@ public static extern int SendMessage(IntPtr hWnd,
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
private void programtopbar_drag(object sender, MouseEventArgs e)
private void Programtopbar_drag(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
@ -29,14 +29,14 @@ private void programtopbar_drag(object sender, MouseEventArgs e)
}
}
private void closebutton_Click(object sender, EventArgs e)
private void Closebutton_Click(object sender, EventArgs e)
{
this.Close();
}
public Boolean max = false;
private void maximizebutton_Click(object sender, EventArgs e)
private void Maximizebutton_Click(object sender, EventArgs e)
{
if (max == false)
{

View file

@ -6,7 +6,7 @@ namespace TimeHACK.Engine
{
public class WindowManager
{
public void startWinClassic(UserControl content, String title, PictureBox icon, Boolean MaxButton, Boolean MinButton)
public void StartWinClassic(UserControl content, String title, PictureBox icon, Boolean MaxButton, Boolean MinButton)
{
// Setup Window
WinClassic app = new WinClassic();

View file

@ -120,22 +120,28 @@
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="WinClassicForms\TestApp.cs">
<Compile Include="WinClassic\TestApp.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="WinClassicForms\TestApp.Designer.cs">
<Compile Include="WinClassic\TestApp.Designer.cs">
<DependentUpon>TestApp.cs</DependentUpon>
</Compile>
<Compile Include="WinClassicForms\WinClassicTemplate.cs">
<Compile Include="WinClassic\Win95IE4.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="WinClassic\Win95IE4.Designer.cs">
<DependentUpon>Win95IE4.cs</DependentUpon>
</Compile>
<Compile Include="WinClassic\WinClassicTemplate.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="WinClassicForms\WinClassicTemplate.Designer.cs">
<Compile Include="WinClassic\WinClassicTemplate.Designer.cs">
<DependentUpon>WinClassicTemplate.cs</DependentUpon>
</Compile>
<Compile Include="WinClassicForms\WinClassicIE4.cs">
<Compile Include="WinClassic\WinClassicIE4.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="WinClassicForms\WinClassicIE4.Designer.cs">
<Compile Include="WinClassic\WinClassicIE4.Designer.cs">
<DependentUpon>WinClassicIE4.cs</DependentUpon>
</Compile>
<Compile Include="Windows95.cs">
@ -152,10 +158,13 @@
<Compile Include="TitleScreen.Designer.cs">
<DependentUpon>TitleScreen.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="WinClassicForms\TestApp.resx">
<EmbeddedResource Include="WinClassic\TestApp.resx">
<DependentUpon>TestApp.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassicForms\WinClassicIE4.resx">
<EmbeddedResource Include="WinClassic\Win95IE4.resx">
<DependentUpon>Win95IE4.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassic\WinClassicIE4.resx">
<DependentUpon>WinClassicIE4.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Windows95.resx">
@ -169,7 +178,7 @@
<EmbeddedResource Include="TitleScreen.resx">
<DependentUpon>TitleScreen.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassicForms\WinClassicTemplate.resx">
<EmbeddedResource Include="WinClassic\WinClassicTemplate.resx">
<DependentUpon>WinClassicTemplate.cs</DependentUpon>
</EmbeddedResource>
<None Include="Properties\Settings.settings">

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,93 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TimeHACK.WinClassic
{
public partial class Win95IE4 : UserControl
{
public Win95IE4()
{
InitializeComponent();
}
private void Win95IE4_Load(object sender, EventArgs e)
{
HidePrograms();
welcomeinternetscreen.Show();
welcomeinternetscreen.Dock = DockStyle.Fill;
}
private void HidePrograms()
{
googlemain.Hide();
welcomeinternetscreen.Hide();
googleprototype.Hide();
googlealpha.Hide();
padamsmain.Hide();
hotmailmain.Hide();
padamsbackgrounds.Hide();
skindows95advertisment.Hide();
secretwebsite.Hide();
padamshidden.Hide();
email1.Hide();
email2.Hide();
email3.Hide();
hotmailpadams.Hide();
webBrowser1.Hide();
}
private void LinkLabel15_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
HidePrograms();
googlemain.Dock = DockStyle.Fill;
googlemain.Show();
addressbar.Text = "www.google.com";
}
private void LinkLabel16_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
HidePrograms();
padamsmain.Dock = DockStyle.Fill;
padamsmain.Show();
addressbar.Text = "www.12padams.com";
}
private void Googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
HidePrograms();
googleprototype.Dock = DockStyle.Fill;
googleprototype.Show();
addressbar.Text = "www.google.stanford.edu";
}
private void Googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
HidePrograms();
googlealpha.Dock = DockStyle.Fill;
googlealpha.Show();
addressbar.Text = "www.alpha.google.com";
}
private void Label20_Click(object sender, EventArgs e)
{
HidePrograms();
padamshidden.Dock = DockStyle.Fill;
padamshidden.Show();
}
private void LinkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
HidePrograms();
webBrowser1.Dock = DockStyle.Fill;
webBrowser1.Show();
}
}
}

View file

@ -728,7 +728,7 @@ private void InitializeComponent()
this.Panel13.Controls.Add(this.win95background);
this.Panel13.Location = new System.Drawing.Point(46, 74);
this.Panel13.Name = "Panel13";
this.Panel13.Size = new System.Drawing.Size(6554, 118);
this.Panel13.Size = new System.Drawing.Size(6956, 118);
this.Panel13.TabIndex = 2;
//
// Previewimage
@ -739,7 +739,7 @@ private void InitializeComponent()
this.Previewimage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Previewimage.Location = new System.Drawing.Point(246, 6);
this.Previewimage.Name = "Previewimage";
this.Previewimage.Size = new System.Drawing.Size(5137, 118);
this.Previewimage.Size = new System.Drawing.Size(5539, 118);
this.Previewimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.Previewimage.TabIndex = 1;
this.Previewimage.TabStop = false;
@ -1877,7 +1877,7 @@ private void InitializeComponent()
this.Label42.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.Label42.AutoSize = true;
this.Label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Label42.Location = new System.Drawing.Point(990, 9);
this.Label42.Location = new System.Drawing.Point(1057, 9);
this.Label42.Name = "Label42";
this.Label42.Size = new System.Drawing.Size(263, 18);
this.Label42.TabIndex = 5;
@ -1888,7 +1888,7 @@ private void InitializeComponent()
this.Label41.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.Label41.AutoSize = true;
this.Label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Label41.Location = new System.Drawing.Point(1090, 33);
this.Label41.Location = new System.Drawing.Point(1157, 33);
this.Label41.Name = "Label41";
this.Label41.Size = new System.Drawing.Size(71, 24);
this.Label41.TabIndex = 4;
@ -1903,14 +1903,14 @@ private void InitializeComponent()
this.TextBox8.Multiline = true;
this.TextBox8.Name = "TextBox8";
this.TextBox8.ReadOnly = true;
this.TextBox8.Size = new System.Drawing.Size(172, 5574);
this.TextBox8.Size = new System.Drawing.Size(172, 5925);
this.TextBox8.TabIndex = 3;
this.TextBox8.Text = resources.GetString("TextBox8.Text");
//
// PictureBox11
//
this.PictureBox11.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.PictureBox11.Location = new System.Drawing.Point(960, 60);
this.PictureBox11.Location = new System.Drawing.Point(1027, 60);
this.PictureBox11.Name = "PictureBox11";
this.PictureBox11.Size = new System.Drawing.Size(337, 386);
this.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
@ -1962,7 +1962,7 @@ private void InitializeComponent()
this.linkLabel19.TabIndex = 3;
this.linkLabel19.TabStop = true;
this.linkLabel19.Text = "Browse the World Wide Web";
this.linkLabel19.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel19_LinkClicked);
this.linkLabel19.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel19_LinkClicked);
//
// googlebetalink
//
@ -1974,7 +1974,7 @@ private void InitializeComponent()
this.googlebetalink.TabIndex = 2;
this.googlebetalink.TabStop = true;
this.googlebetalink.Text = "Might-work-some-of-the-time-prototype that is much more up to date. ";
this.googlebetalink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.googlebetalink_LinkClicked);
this.googlebetalink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Googlebetalink_LinkClicked);
//
// googleprototypelink
//
@ -1986,7 +1986,7 @@ private void InitializeComponent()
this.googleprototypelink.TabIndex = 1;
this.googleprototypelink.TabStop = true;
this.googleprototypelink.Text = "Google Search Engine Prototype";
this.googleprototypelink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.googleprototypelink_LinkClicked);
this.googleprototypelink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Googleprototypelink_LinkClicked);
//
// Label6
//
@ -2008,7 +2008,7 @@ private void InitializeComponent()
this.googleprototype.Controls.Add(this.LinkLabel1);
this.googleprototype.Controls.Add(this.Panel2);
this.googleprototype.Controls.Add(this.pboxgoogleprototypelogo);
this.googleprototype.Location = new System.Drawing.Point(6, 47);
this.googleprototype.Location = new System.Drawing.Point(107, 45);
this.googleprototype.Name = "googleprototype";
this.googleprototype.Size = new System.Drawing.Size(317, 260);
this.googleprototype.TabIndex = 2;

View file

@ -1,5 +1,4 @@
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace TimeHACK
@ -13,12 +12,12 @@ public WinClassicIE4()
private void WinClassicIE4_Load(object sender, EventArgs e)
{
TopMost = true;
hidePrograms();
HidePrograms();
welcomeinternetscreen.Show();
welcomeinternetscreen.Dock = DockStyle.Fill;
}
private void hidePrograms()
private void HidePrograms()
{
googlemain.Hide();
welcomeinternetscreen.Hide();
@ -39,7 +38,7 @@ private void hidePrograms()
private void LinkLabel15_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
hidePrograms();
HidePrograms();
googlemain.Dock = DockStyle.Fill;
googlemain.Show();
addressbar.Text = "www.google.com";
@ -47,28 +46,28 @@ private void LinkLabel15_LinkClicked(object sender, LinkLabelLinkClickedEventArg
private void LinkLabel16_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
hidePrograms();
HidePrograms();
padamsmain.Dock = DockStyle.Fill;
padamsmain.Show();
addressbar.Text = "www.12padams.com";
}
private void closebutton_Click(object sender, EventArgs e)
private void Closebutton_Click(object sender, EventArgs e)
{
this.Close();
}
private void googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
private void Googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
hidePrograms();
HidePrograms();
googleprototype.Dock = DockStyle.Fill;
googleprototype.Show();
addressbar.Text = "www.google.stanford.edu";
}
private void googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
private void Googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
hidePrograms();
HidePrograms();
googlealpha.Dock = DockStyle.Fill;
googlealpha.Show();
addressbar.Text = "www.alpha.google.com";
@ -76,14 +75,14 @@ private void googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEvent
private void Label20_Click(object sender, EventArgs e)
{
hidePrograms();
HidePrograms();
padamshidden.Dock = DockStyle.Fill;
padamshidden.Show();
}
private void linkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
private void LinkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
hidePrograms();
HidePrograms();
webBrowser1.Dock = DockStyle.Fill;
webBrowser1.Show();
}

View file

@ -0,0 +1,197 @@
<?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>
<data name="TextBox1.Text" xml:space="preserve">
<value>Welcome To Internet Explorer 4.
Internet explorer 4 makes browsing the web and exploring websites a pleasent experience.
Just type an address in the location bar above and then press go.
Instantly you will be taken to the webpage of your choosing.
Where do you want to go today?</value>
</data>
<data name="TextBox12.Text" xml:space="preserve">
<value>1998: Added Time Distortion software to 12padams website.
Software was hidden and only accessable after downloading hwcv.exe and applying it onto the 12padams website
Time Distortion software in extremely early stages and dangerous
Any Download of the time distortion software results in an instant alert to 12padams</value>
</data>
<data name="TextBox17.Text" xml:space="preserve">
<value>Hey 12padams... I was scanning your website and i found well i don't know.
Do you have some type of hidden software on it because i can't find to find the matching software the has the same code as i saw...
Whats the hidden software?</value>
</data>
<data name="TextBox10.Text" xml:space="preserve">
<value>12padams.com Data Log
1996: www.12padams.com created
1997:Lots Of software added to 12padams.com
1998: ###############
WARNING 1998 log file is encrypted and unreadable.
Rest of log stored on hotmail account...
Username: 12padams@hotmail.com
Password: projectdeath </value>
</data>
<data name="TextBox9.Text" xml:space="preserve">
<value>
WARNING: You have entered a secret site which was not meant to be accessed.
Warning do not tell 12padams about this website...
12padams is evil.
12padams is holding secrets which need to be found out.
I myself am banned from 12padams.com I almost found out the secret.
I don't know what the secret is but it seems that 12padams is hiding an additional piece of software on his site.
This software is hidden but can still be accessed.
The software is very powerful and is not a game, virus, or anything like that.
I don't know what it is but i do know its powerful.
You need to access this it.
I was scanning the code on the 12padams website and thats how i know about it.
Someone needs to find this software and use it.
I don't know how to access it from the 12padams site but all I know is that you have to click on something.
Its the thing you would least expect to click....
This site will be destroyed by 12padams very soon you need to find this secret before he removes it from his website.
FIND IT!!!
JUST CLICK EVERYWHERE ON THE 12PADAMS WEBSITE TILL YOU FIND THE SECRET!!!!!
written by "the hidden hacker"</value>
</data>
<data name="TextBox8.Text" xml:space="preserve">
<value>Skindows 95 is the best customization software in the world avalible for windows 95.
It allows the editing of the active captionbar to look pritty much however you like it.
Show the world your style. Buy Skindows 95 to use your computer to its full potential
If you Don't like this product you may recieve a full refund on day of purchous.
So Please enjoy Using this amzing software and show the world what your made of.</value>
</data>
<metadata name="MenuStrip3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View file

@ -116,7 +116,7 @@ private void windowManagerTestToolStripMenuItem_Click(object sender, EventArgs e
{
WindowManager wm = new WindowManager();
TestApp test = new TestApp();
wm.startWinClassic(test, "TestApp", null, true, true);
wm.StartWinClassic(test, "TestApp", null, true, true);
}
}
}

View file

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>a/Rg0oqaFV3brH5B97iOCDXc0yawkl9S/2cVtgXXS8M=</dsig:DigestValue>
<dsig:DigestValue>owcvndBWt3qGkDndsMykYlr5kB7zH3NDbzGfSUEMI4Q=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View file

@ -44,14 +44,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4272128">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4316160">
<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>a195m/FVq7D1VXSsD5UlJt8G92gqRxAIBSlvD7iViak=</dsig:DigestValue>
<dsig:DigestValue>0HpVKz1ySHX1nAbymXka7wsJyOP+TKug9rRVwFJTHFg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
@ -63,7 +63,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>YDC6fdQvXveTmH0thYXVu9Uk9dtVVg3+QjDTaaqtScc=</dsig:DigestValue>
<dsig:DigestValue>kfO2njAcVXARAwAtSM9wiIcjfnG1rI+K7OP2VxVBwGw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View file

@ -35,3 +35,4 @@ C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeH
C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.exe
C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.pdb
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassic.Win95IE4.resources

View file

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>a/Rg0oqaFV3brH5B97iOCDXc0yawkl9S/2cVtgXXS8M=</dsig:DigestValue>
<dsig:DigestValue>owcvndBWt3qGkDndsMykYlr5kB7zH3NDbzGfSUEMI4Q=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View file

@ -44,14 +44,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4272128">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4316160">
<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>a195m/FVq7D1VXSsD5UlJt8G92gqRxAIBSlvD7iViak=</dsig:DigestValue>
<dsig:DigestValue>0HpVKz1ySHX1nAbymXka7wsJyOP+TKug9rRVwFJTHFg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
@ -63,7 +63,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>YDC6fdQvXveTmH0thYXVu9Uk9dtVVg3+QjDTaaqtScc=</dsig:DigestValue>
<dsig:DigestValue>kfO2njAcVXARAwAtSM9wiIcjfnG1rI+K7OP2VxVBwGw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>