Skip to content

Commit

Permalink
Launcher Deleted Old Files Now
Browse files Browse the repository at this point in the history
  • Loading branch information
jojobobby committed Sep 12, 2023
1 parent 62e4fe9 commit 2a7acb1
Show file tree
Hide file tree
Showing 54 changed files with 1,354 additions and 66 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/GameLauncher/v17/.suo
Binary file not shown.
3 changes: 3 additions & 0 deletions GameLauncher/GameLauncher.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@
<FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
<PropertyGroup>
<EnableSecurityDebugging>false</EnableSecurityDebugging>
</PropertyGroup>
</Project>
16 changes: 16 additions & 0 deletions GameLauncher/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ public partial class MainWindow : Window
private readonly string GAME_DOWNLOAD_LINK = "https://raw.githubusercontent.com/jojobobby/jojobobby.github.io/master/client/AboveTheSurface.zip";
private readonly string GAME_EXE_FILE_NAME = "AboveTheSurface/Webmain.exe";
private readonly string GAME_ZIP_FILE_NAME = "AboveTheSurface.zip";
private readonly string GAME_FILE_NAME = "AboveTheSurface";

private string rootPath;
private string versionFile;
private string gameZip;
private string gameExe;
private string gameFiles;

private LauncherState _status;
internal LauncherState Status
Expand Down Expand Up @@ -65,6 +67,7 @@ public MainWindow()
versionFile = Path.Combine(rootPath, "Version.txt");
gameZip = Path.Combine(rootPath, GAME_ZIP_FILE_NAME);
gameExe = Path.Combine(rootPath, GAME_EXE_FILE_NAME);
gameFiles = Path.Combine(rootPath, GAME_FILE_NAME);
}

private void CheckForUpdates()
Expand Down Expand Up @@ -129,6 +132,19 @@ private void DownloadGameCompletedCallback(object sender, AsyncCompletedEventArg
{
try
{
var oldFiles = new DirectoryInfo(gameFiles);
if (oldFiles.Exists)
{
foreach (FileInfo file in oldFiles.GetFiles())
{
file.Delete();
}
foreach (DirectoryInfo dir in oldFiles.GetDirectories())
{
dir.Delete(true);
}
}

Status = LauncherState.extractingGame;
string onlineVersion = ((Version)e.UserState).ToString();
ZipFile.ExtractToDirectory(gameZip, rootPath);
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Cairo is free software.

Every source file in the implementation[*] of cairo is available to be
redistributed and/or modified under the terms of either the GNU Lesser
General Public License (LGPL) version 2.1 or the Mozilla Public
License (MPL) version 1.1. Some files are available under more
liberal terms, but we believe that in all cases, each file may be used
under either the LGPL or the MPL.

See the following files in this directory for the precise terms and
conditions of either license:

COPYING-LGPL-2.1
COPYING-MPL-1.1

Please see each file in the implementation for copyright and licensing
information, (in the opening comment of each file).

[*] The implementation of cairo is contained entirely within the "src"
directory of the cairo source distribution. There are other components
of the cairo source distribution (such as the "test", "util", and "perf")
that are auxiliary to the library itself. None of the source code in these
directories contributes to a build of the cairo library itself, (libcairo.so
or cairo.dll or similar).

These auxiliary components are also free software, but may be under
different license terms than cairo itself. For example, most of the
test cases in the perf and test directories are made available under
an MIT license to simplify any use of this code for reference purposes
in using cairo itself. Other files might be available under the GNU
General Public License (GPL), for example. Again, please see the COPYING
file under each directory and the opening comment of each file for copyright
and licensing information.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
PCRE2 LICENCE

Please see the file LICENCE in the PCRE2 distribution for licensing details.

End
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
The following is the MIT license, agreed upon by most contributors.
Copyright holders of new code should use this license statement where
possible. They may also add themselves to the list below.

/*
* Copyright 1987, 1988, 1989, 1998 The Open Group
* Copyright 1987, 1988, 1989 Digital Equipment Corporation
* Copyright 1999, 2004, 2008 Keith Packard
* Copyright 2000 SuSE, Inc.
* Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
* Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
* Copyright 2004 Nicholas Miell
* Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
* Copyright 2005 Trolltech AS
* Copyright 2007 Luca Barbato
* Copyright 2008 Aaron Plattner, NVIDIA Corporation
* Copyright 2008 Rodrigo Kumpera
* Copyright 2008 André Tupinambá
* Copyright 2008 Mozilla Corporation
* Copyright 2008 Frederic Plourde
* Copyright 2009, Oracle and/or its affiliates. All rights reserved.
* Copyright 2009, 2010 Nokia Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<application xmlns="http://ns.adobe.com/air/application/50.2">
<id>Webmain</id>
<filename>Webmain</filename>
<name>Webmain</name>
<versionNumber>1.0.9</versionNumber>
<initialWindow>
<visible>true</visible>
<renderMode>gpu</renderMode>
<resizable>true</resizable>
<content>WebMain.swf</content>
</initialWindow>
</application>
1 change: 1 addition & 0 deletions GameLauncher/bin/Debug/AboveTheSurface/META-INF/AIR/hash
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��Vy���4"�'���c@��@�7~�s�$�
43 changes: 43 additions & 0 deletions GameLauncher/bin/Debug/AboveTheSurface/META-INF/signatures.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<signatures>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#" Id="PackageSignature">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
<SignatureMethod Algorithm="http://www.w3.org/TR/xmldsig-core#rsa-sha1"/>
<Reference URI="#PackageContents">
<Transforms>
<Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/>
<DigestValue>gsgAgqo/2GX+eaViH9Ad4SzY1a1nqwWNz+GV+8Wjo3Q=</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue Id="PackageSignatureValue">O+ccqORjYK2jl6Rz78TRpLG9cluv8eCM9J2ICu6T7aDiRcfw33K14BFMSVDjfvZwbKHaT2rSMi2Y
DNL5XRnwqG00bFcNT+omtG7uak/pd0udSvHhxCqAkOMIls5F8QLJDhnrhfmKa+n/RGErDZ9J2ipa
KhVMBdpUGAICzCdQOzAd7uqZ2YA7fHPAPSvalnogghmPOPCYbE1y91zdyVGZTsJSib93NzIivZB1
U3OtCQ/katbFaDK+eS/JrmpmYeL4z2CD/AMu/G2r2Je0dz72iPyHMY1wk4LkbvTjeiBAmgjnxJ1I
1X9LNz+mTFK9A0FF7pMxUOEBaM/PhAPbPMN+7Q==</SignatureValue>
<KeyInfo>
<X509Data>
<X509Certificate>MIIC4DCCAcigAwIBAgIbLTZjOWMyOTNlOjE1ZGE5MTY4YzZlOi04MDAwMA0GCSqGSIb3DQEBBQUA
MBoxGDAWBgNVBAMTD1RlbXBDZXJ0aWZpY2F0ZTAeFw0xNzA4MDIxNzEzMzNaFw00NzA4MDMxNzEz
MzNaMBoxGDAWBgNVBAMTD1RlbXBDZXJ0aWZpY2F0ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
AQoCggEBAIVGS+rqF1Cy5+4P8DmxMAIalE8dTrBwPg2uYPMmdb8KOsFajCXI2ArxP7n6cu0UMq3H
VfGtGl77648gyvl/acO5InfixznxSZrGO3Zs3z8kTA5W9O6ofIk/klwUw8nis7NXnqVhMNJcp58D
Itp8pWbQwTWbXU4bO0uVuQFrJcVYog2ixIfoMf/t0kWa5FvSn1jLemZu4h5SqOToa4vxO39cqoS4
ZrkeDgUimwemRDP4pMNq7eev+VSqMmiSEVrMVeLLxtG038ETc6ESWwBxOzCYH+N7W7UXHK3jV8ko
J3gH9voGo4Y289elIt2feMrQBT0DrQWq4QnSk11zFh+LnGECAwEAAaMXMBUwEwYDVR0lBAwwCgYI
KwYBBQUHAwMwDQYJKoZIhvcNAQEFBQADggEBAAhKOny6FSzFFJGzSTaZ7v4SPScPFMYGuOa5EHMc
AfwpS+Gxn4VtlJxHwNTL5faPwzRn6APpJl0PaJIXvuM/tQJXZAeh+85NLGOoBUajBGY1A7kPEoJ8
5xdp4bVb5JZ1Dyasba22yOhkKfR0uDk2XdSebceJKZ/aYm7BvGOs/JsNqz9tSTgScBCtaXwJJPRm
iIQXdf0OnpClGWsBG6iORTfzZi8DYrGDRt11xYz0W7cPgn0p2sDSw2zeJPFAzhIxscS1Kb5/XPCe
fPKrRmKTt6ZNcRDSiHwaRnGEQXXXgW/iQRKuxnWoY+MMz9U5uaYDoIAB9+ltbYrlmAA+UiCWRmw=</X509Certificate>
</X509Data>
</KeyInfo>
<Object>
<Manifest Id="PackageContents">
<Reference URI="META-INF/AIR/application.xml"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>yB7XAHqHySFR56uH8Hz8GQ1HlbekiPErYUe4HAP8LXA=</DigestValue></Reference><Reference URI="WebMain.swf"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>y2kCDbG76qUiBgMcnUKCft1k2oHaHpNIDa/Gkzyx86w=</DigestValue></Reference><Reference URI="mimetype"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>0/oCb84THKMagtI0Dy0KogEu92TegdesqRr/clXct1c=</DigestValue></Reference>
</Manifest>
</Object>

</Signature>
</signatures>
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions GameLauncher/bin/Debug/AboveTheSurface/mimetype
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
application/vnd.adobe.air-application-installer-package+zip
1 change: 1 addition & 0 deletions GameLauncher/bin/Debug/Version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.3
21 changes: 21 additions & 0 deletions GameLauncher/bin/Debug/YamanoRealmsLauncher.application
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?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="YamanoRealmsLauncher.application" version="1.0.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="YamanoRealmsLauncher" asmv2:product="YamanoRealmsLauncher" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="YamanoRealmsLauncher.exe.manifest" size="5135">
<assemblyIdentity name="YamanoRealmsLauncher.exe" version="1.0.0.1" publicKeyToken="0000000000000000" language="neutral" 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>Cl1KmvEIXBdww6+ZBauYEXpWr8XT5XVLQjGg0RJBo4E=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?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="YamanoRealmsLauncher.exe" version="1.0.0.0" publicKeyToken="2d6758aa8bc417b6" language="neutral" processorArchitecture="msil" type="win32" />
<asmv1:assemblyIdentity name="YamanoRealmsLauncher.exe" version="1.0.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="00000-4150202487.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
Expand Down Expand Up @@ -43,14 +43,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="YamanoRealmsLauncher.exe" size="852960">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="YamanoRealmsLauncher.exe" size="853984">
<assemblyIdentity name="YamanoRealmsLauncher" 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>nDd0oC+8aoCeAxl+ZVlxlo9zmaNoey3I39qUoi01V9I=</dsig:DigestValue>
<dsig:DigestValue>yzKlK0B6MUFVO4xQC/eUVqEbT5YS9mqQRs6Xk3kOL3Q=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down Expand Up @@ -89,4 +89,4 @@
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<publisherIdentity name="CN=DESKTOP-0G19AMN\raphe" issuerKeyHash="e2d57ae7c91a517a4be98976dddb83a19f25b55a" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>rOpU16Dzc9esUkRjyZtRV8qs4v+IfybiLqEhtsc7I30=</DigestValue></Reference></SignedInfo><SignatureValue>onu0OPWRxfgjZIHYMsX4hdp2YPWKLAg+8p6M5R6xu3UJmi6oCrvGZj9iqObV1i9Z1xYKU+kKcVBfY3ntViNLqOMjw9vdhwUb15bBPR2uGKMGlUw0wBieJ23f+h0O6y1i5HxeLsGMx0m0boj5uFqr33U75TLs4JL6X2Nzkay3ONQ=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>sjkI+ISfRUJRlDNUL2kCKhH5yOFPFNmR1cY6wSRFkZBeQvOYv0G7BUj2uY1HOTNu6fZawDU0zML2cOXg+l+f649p+QaeZ7ghg9GGQ1DyG6tdk0xHzECSHrgdmiNlSQGuaSuhrs+Aqtg0Mh3miz/ywJoCUwAC7rr8ii7x3IC0LF0=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="7d233bc7b621a12ee2267f88ffe2acca57519bc9634452acd773f3a0d754eaac" Description="" Url=""><as:assemblyIdentity name="YamanoRealmsLauncher.exe" version="1.0.0.0" publicKeyToken="2d6758aa8bc417b6" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=DESKTOP-0G19AMN\raphe</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>ZWAhf1U0MjR5hA9r2mZg62EggyX+PUo679M68pj9NWg=</DigestValue></Reference></SignedInfo><SignatureValue>WIGGT28UC8oGyIHDu7Rm4Bdpr+QVSCYzuT3Jj//lgE6x5G9u5PLrkTtbl2CoJG2npLKSQ9HC5N5C0KzDhYJdRKaRR1BBy1fH1DOrKmSOegUYkJLUIzps9A9v1HkOK0jhTuEZD2CrsIlT2XbgyWmNeFwJuljpU8tyr7Dudqj7bu0=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>sjkI+ISfRUJRlDNUL2kCKhH5yOFPFNmR1cY6wSRFkZBeQvOYv0G7BUj2uY1HOTNu6fZawDU0zML2cOXg+l+f649p+QaeZ7ghg9GGQ1DyG6tdk0xHzECSHrgdmiNlSQGuaSuhrs+Aqtg0Mh3miz/ywJoCUwAC7rr8ii7x3IC0LF0=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB7TCCAVagAwIBAgIQfI6SOcsf94dKROJKGX3cKTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDHioARABFAFMASwBUAE8AUAAtADAARwAxADkAQQBNAE4AXAByAGEAcABoAGUwHhcNMjMwOTA5MjEyMTM4WhcNMjQwOTA5MDMyMTM4WjA1MTMwMQYDVQQDHioARABFAFMASwBUAE8AUAAtADAARwAxADkAQQBNAE4AXAByAGEAcABoAGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALI5CPiEn0VCUZQzVC9pAioR+cjhTxTZkdXGOsEkRZGQXkLzmL9BuwVI9rmNRzkzbun2WsA1NMzC9nDl4Ppfn+uPafkGnme4IYPRhkNQ8hurXZNMR8xAkh64HZojZUkBrmkroa7PgKrYNDId5os/8sCaAlMAAu66/Iou8dyAtCxdAgMBAAEwDQYJKoZIhvcNAQELBQADgYEABs47QgnXm5qqkZrzkPpXJw2adtVnCw/yAqNiNkfczfa4yDgsPb2ezhl/OJwvaA1ckngRRqbfsIf5LsYpKaQBXNDGglAcYdb3gV12t8YqUcC6iUoBDB2D5O8ArfjIofklTgz4P+N+BIOkStDi30u8s/vDAW0pYXMlNztBk+WjR5I=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
</asmv1:assembly>
Binary file not shown.
Binary file not shown.
3 changes: 1 addition & 2 deletions GameLauncher/bin/Release/AboveTheSurface/META-INF/AIR/hash
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
����E�5���d���g�Z��[
���z&��Ze�
��Vy���4"�'���c@��@�7~�s�$�
14 changes: 7 additions & 7 deletions GameLauncher/bin/Release/AboveTheSurface/META-INF/signatures.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/>
<DigestValue>xUo83n46LQB48e+7TpTkR6BhT7kfrA5oc/pdJHRg7LA=</DigestValue>
<DigestValue>gsgAgqo/2GX+eaViH9Ad4SzY1a1nqwWNz+GV+8Wjo3Q=</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue Id="PackageSignatureValue">dwjpxZ+hHzyCpMJcnY7cyXls+2DXn4bCCAttBGLVAxo/YmRuvbmUyhqU3wXLFL/k5bCKlNsD1Qzx
ZLldmcv9PGGOOoLGN1FZ7tK3yl6IRCCkm7YjVbc94w0S0ADoJ/sVlW8/ZwhhOmcRsXXXfhpPccwD
LFl4sE1+PjV8k4WGSluFFzXcfmaywzEQyf0Fliy92RScx+iYbRl7iDl+Mcy1yZvfJTGcb4u2hJb3
ekg5w06H5efOPZ6zVzM6xLSLVw5spE7F4cWzwDpNqNoW9/oGB1382kVCAfIRws2BqAVNsDXxbBdz
Y++UTN43Jqd2SNwWUsADhrXqXt7nF1SAxT2OJg==</SignatureValue>
<SignatureValue Id="PackageSignatureValue">O+ccqORjYK2jl6Rz78TRpLG9cluv8eCM9J2ICu6T7aDiRcfw33K14BFMSVDjfvZwbKHaT2rSMi2Y
DNL5XRnwqG00bFcNT+omtG7uak/pd0udSvHhxCqAkOMIls5F8QLJDhnrhfmKa+n/RGErDZ9J2ipa
KhVMBdpUGAICzCdQOzAd7uqZ2YA7fHPAPSvalnogghmPOPCYbE1y91zdyVGZTsJSib93NzIivZB1
U3OtCQ/katbFaDK+eS/JrmpmYeL4z2CD/AMu/G2r2Je0dz72iPyHMY1wk4LkbvTjeiBAmgjnxJ1I
1X9LNz+mTFK9A0FF7pMxUOEBaM/PhAPbPMN+7Q==</SignatureValue>
<KeyInfo>
<X509Data>
<X509Certificate>MIIC4DCCAcigAwIBAgIbLTZjOWMyOTNlOjE1ZGE5MTY4YzZlOi04MDAwMA0GCSqGSIb3DQEBBQUA
Expand All @@ -35,7 +35,7 @@ fPKrRmKTt6ZNcRDSiHwaRnGEQXXXgW/iQRKuxnWoY+MMz9U5uaYDoIAB9+ltbYrlmAA+UiCWRmw=</X5
</KeyInfo>
<Object>
<Manifest Id="PackageContents">
<Reference URI="META-INF/AIR/application.xml"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>yB7XAHqHySFR56uH8Hz8GQ1HlbekiPErYUe4HAP8LXA=</DigestValue></Reference><Reference URI="WebMain.swf"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>rMhhPcQshzz7ZSsj3NXeZs5+zFIgYjfWW+zlIUpFoMM=</DigestValue></Reference><Reference URI="mimetype"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>0/oCb84THKMagtI0Dy0KogEu92TegdesqRr/clXct1c=</DigestValue></Reference>
<Reference URI="META-INF/AIR/application.xml"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>yB7XAHqHySFR56uH8Hz8GQ1HlbekiPErYUe4HAP8LXA=</DigestValue></Reference><Reference URI="WebMain.swf"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>y2kCDbG76qUiBgMcnUKCft1k2oHaHpNIDa/Gkzyx86w=</DigestValue></Reference><Reference URI="mimetype"><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"></DigestMethod><DigestValue>0/oCb84THKMagtI0Dy0KogEu92TegdesqRr/clXct1c=</DigestValue></Reference>
</Manifest>
</Object>

Expand Down
Binary file modified GameLauncher/bin/Release/AboveTheSurface/WebMain.swf
Binary file not shown.
Loading

0 comments on commit 2a7acb1

Please sign in to comment.