mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-12 16:09:48 +12:00
Update HISP
This commit is contained in:
parent
9ddcd37d41
commit
f12e930538
4 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.7.114
|
Version: 1.7.120
|
||||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||||
Maintainer: Li
|
Maintainer: Li
|
||||||
Homepage: https://islehorse.com
|
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
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.7.114.0")]
|
[assembly: AssemblyVersion("1.7.120.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.114.0")]
|
[assembly: AssemblyFileVersion("1.7.120.0")]
|
||||||
|
|
|
@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.7.114.0")]
|
[assembly: AssemblyVersion("1.7.120.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.114.0")]
|
[assembly: AssemblyFileVersion("1.7.120.0")]
|
||||||
|
|
|
@ -10,6 +10,7 @@ using HTTP;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
using static MPN00BS.MessageBox;
|
using static MPN00BS.MessageBox;
|
||||||
|
|
||||||
namespace MPN00BS
|
namespace MPN00BS
|
||||||
|
@ -19,8 +20,8 @@ namespace MPN00BS
|
||||||
{
|
{
|
||||||
|
|
||||||
#if OS_LINUX
|
#if OS_LINUX
|
||||||
[DllImport("libc", SetLastError = true)]
|
[DllImport("libc", SetLastError = true)]
|
||||||
private static extern int chmod(string pathname, int mode);
|
private static extern int chmod(string pathname, int mode);
|
||||||
#endif
|
#endif
|
||||||
public static bool HasServerStarted = false;
|
public static bool HasServerStarted = false;
|
||||||
private static Process clientProcess = new Process();
|
private static Process clientProcess = new Process();
|
||||||
|
@ -68,7 +69,6 @@ namespace MPN00BS
|
||||||
#elif OS_LINUX
|
#elif OS_LINUX
|
||||||
clientProcess.StartInfo.FileName = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
|
clientProcess.StartInfo.FileName = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
|
||||||
chmod(clientProcess.StartInfo.FileName, 777);
|
chmod(clientProcess.StartInfo.FileName, 777);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
MessageBox.Show(null,"ERROR: No path for flash projector specified on this platform", "Porting error", MessageBoxButtons.Ok);
|
MessageBox.Show(null,"ERROR: No path for flash projector specified on this platform", "Porting error", MessageBoxButtons.Ok);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue