mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
update n00bs
This commit is contained in:
parent
9d50f23067
commit
dd7efc17e5
7 changed files with 40 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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")]
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -228,7 +228,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="flash.dll">
|
||||
<None Update="flashplayer\flash.exe">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
|
34
HorseIsleServer/MPN00BS/Properties/AssemblyInfo.cs
Normal file
34
HorseIsleServer/MPN00BS/Properties/AssemblyInfo.cs
Normal file
|
@ -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")]
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue