From dd7efc17e5be959aa3e91a9418525c92c76755cd Mon Sep 17 00:00:00 2001 From: Li Date: Mon, 25 Jul 2022 14:29:23 +1200 Subject: [PATCH] update n00bs --- .../HISPd/Resources/DEBIAN/control | 2 +- .../LibHISP/Properties/AssemblyInfo.cs | 4 +-- HorseIsleServer/LibHISP/prebuild.py | 2 +- HorseIsleServer/MPN00BS/MPN00BS.csproj | 2 +- .../MPN00BS/Properties/AssemblyInfo.cs | 34 ++++++++++++++++++ HorseIsleServer/MPN00BS/ServerStarter.cs | 2 +- .../WINDOWS/flash.exe} | Bin 7 files changed, 40 insertions(+), 6 deletions(-) create mode 100644 HorseIsleServer/MPN00BS/Properties/AssemblyInfo.cs rename HorseIsleServer/MPN00BS/{flash.dll => flashplayer/WINDOWS/flash.exe} (100%) diff --git a/HorseIsleServer/HISPd/Resources/DEBIAN/control b/HorseIsleServer/HISPd/Resources/DEBIAN/control index bebeff4..b5c8e77 100644 --- a/HorseIsleServer/HISPd/Resources/DEBIAN/control +++ b/HorseIsleServer/HISPd/Resources/DEBIAN/control @@ -1,5 +1,5 @@ Package: hisp -Version: 1.7.109 +Version: 1.7.110 Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev Maintainer: Li Homepage: https://islehorse.com diff --git a/HorseIsleServer/LibHISP/Properties/AssemblyInfo.cs b/HorseIsleServer/LibHISP/Properties/AssemblyInfo.cs index 520d237..a8330b7 100644 --- a/HorseIsleServer/LibHISP/Properties/AssemblyInfo.cs +++ b/HorseIsleServer/LibHISP/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.7.109.0")] -[assembly: AssemblyFileVersion("1.7.109.0")] +[assembly: AssemblyVersion("1.7.110.0")] +[assembly: AssemblyFileVersion("1.7.110.0")] diff --git a/HorseIsleServer/LibHISP/prebuild.py b/HorseIsleServer/LibHISP/prebuild.py index 06f1735..4d693ee 100755 --- a/HorseIsleServer/LibHISP/prebuild.py +++ b/HorseIsleServer/LibHISP/prebuild.py @@ -66,7 +66,7 @@ assembly_version = ".".join(points) # Update AssemblyInfo.cs files update_asm_info(os.path.join("LibHISP", "Properties", "AssemblyInfo.cs")) -update_asm_info(os.path.join("N00BS" , "Properties", "AssemblyInfo.cs")) +update_asm_info(os.path.join("MPN00BS", "Properties", "AssemblyInfo.cs")) update_asm_info(os.path.join("HISPd" , "Properties", "AssemblyInfo.cs")) # Update control file in dpkg diff --git a/HorseIsleServer/MPN00BS/MPN00BS.csproj b/HorseIsleServer/MPN00BS/MPN00BS.csproj index 3c43113..1b9e5f0 100644 --- a/HorseIsleServer/MPN00BS/MPN00BS.csproj +++ b/HorseIsleServer/MPN00BS/MPN00BS.csproj @@ -228,7 +228,7 @@ - + PreserveNewest diff --git a/HorseIsleServer/MPN00BS/Properties/AssemblyInfo.cs b/HorseIsleServer/MPN00BS/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..08f2436 --- /dev/null +++ b/HorseIsleServer/MPN00BS/Properties/AssemblyInfo.cs @@ -0,0 +1,34 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("HISP")] +[assembly: AssemblyDescription("Server Emulator for \"Horse Isle\"")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Li")] +[assembly: AssemblyProduct("HISP")] +[assembly: AssemblyCopyright("Public Domain © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("31f0bdf5-f6d1-4aeb-8905-80dbc223c836")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.7.110.0")] +[assembly: AssemblyFileVersion("1.7.110.0")] diff --git a/HorseIsleServer/MPN00BS/ServerStarter.cs b/HorseIsleServer/MPN00BS/ServerStarter.cs index 9ef6b92..5e14a94 100644 --- a/HorseIsleServer/MPN00BS/ServerStarter.cs +++ b/HorseIsleServer/MPN00BS/ServerStarter.cs @@ -56,7 +56,7 @@ namespace MPN00BS HorseIsleClientExitCallback = callback; clientProcess = new Process(); - clientProcess.StartInfo.FileName = "flash.dll"; + clientProcess.StartInfo.FileName = Path.Combine("flashplayer", "WINDOWS", "flash.exe"); clientProcess.StartInfo.Arguments = "http://127.0.0.1/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString(); clientProcess.StartInfo.RedirectStandardOutput = true; diff --git a/HorseIsleServer/MPN00BS/flash.dll b/HorseIsleServer/MPN00BS/flashplayer/WINDOWS/flash.exe similarity index 100% rename from HorseIsleServer/MPN00BS/flash.dll rename to HorseIsleServer/MPN00BS/flashplayer/WINDOWS/flash.exe