mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Update made automatically due to pressing build
This commit is contained in:
parent
aed289e5d5
commit
76da976e68
5 changed files with 15 additions and 8 deletions
|
@ -31,5 +31,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.0.*")]
|
||||
[assembly: AssemblyVersion("1.6.2.15")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.15")]
|
||||
[assembly: AssemblyVersion("1.6.2.16")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.16")]
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
Package: hisp
|
||||
Version: 1.6.3
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
Architecture: amd64
|
||||
Description: Open Source Implementation of the server for flash game "Horse Isle".
|
|
@ -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.6.2.15")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.15")]
|
||||
[assembly: AssemblyVersion("1.6.2.16")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.16")]
|
||||
|
|
|
@ -31,5 +31,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.0.*")]
|
||||
[assembly: AssemblyVersion("1.6.2.15")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.15")]
|
||||
[assembly: AssemblyVersion("1.6.2.16")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.16")]
|
||||
|
|
|
@ -60,8 +60,8 @@ update_asm_info(os.path.join("N00BS", "Properties", "AssemblyInfo.cs"))
|
|||
update_asm_info(os.path.join("HISPd", "Properties", "AssemblyInfo.cs"))
|
||||
|
||||
control_file = os.path.join("HISPd", "Resources", "DEBIAN", "control")
|
||||
lines = open(control_file, "r").readlines()
|
||||
lines = open(control_file, "rb").readlines()
|
||||
for i in range(0,len(lines)):
|
||||
if lines[i].startswith(b"Version: "):
|
||||
lines[i] = b"Version: "+bytes(commit_tag.replace("v", ""), "UTF-8")
|
||||
open(control_file, "w").writelines(control_file)
|
||||
open(control_file, "wb").writelines(lines)
|
Loading…
Add table
Reference in a new issue