Update HISP

This commit is contained in:
Li 2022-07-25 21:13:10 +12:00
parent 9ddcd37d41
commit f12e930538
4 changed files with 8 additions and 8 deletions
HorseIsleServer
HISPd/Resources/DEBIAN
LibHISP/Properties
MPN00BS

View file

@ -1,5 +1,5 @@
Package: hisp
Version: 1.7.114
Version: 1.7.120
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
Maintainer: Li
Homepage: https://islehorse.com

View file

@ -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.114.0")]
[assembly: AssemblyFileVersion("1.7.114.0")]
[assembly: AssemblyVersion("1.7.120.0")]
[assembly: AssemblyFileVersion("1.7.120.0")]

View file

@ -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.114.0")]
[assembly: AssemblyFileVersion("1.7.114.0")]
[assembly: AssemblyVersion("1.7.120.0")]
[assembly: AssemblyFileVersion("1.7.120.0")]

View file

@ -10,6 +10,7 @@ using HTTP;
using System;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using static MPN00BS.MessageBox;
namespace MPN00BS
@ -19,8 +20,8 @@ namespace MPN00BS
{
#if OS_LINUX
[DllImport("libc", SetLastError = true)]
private static extern int chmod(string pathname, int mode);
[DllImport("libc", SetLastError = true)]
private static extern int chmod(string pathname, int mode);
#endif
public static bool HasServerStarted = false;
private static Process clientProcess = new Process();
@ -68,7 +69,6 @@ namespace MPN00BS
#elif OS_LINUX
clientProcess.StartInfo.FileName = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
chmod(clientProcess.StartInfo.FileName, 777);
#else
MessageBox.Show(null,"ERROR: No path for flash projector specified on this platform", "Porting error", MessageBoxButtons.Ok);
#endif