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
5d787e169b
commit
7efb878f63
6 changed files with 30 additions and 23 deletions
|
@ -7,8 +7,8 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyTitle("HISPd")]
|
||||
[assembly: AssemblyDescription("Server Emulator for \"Horse Isle\"")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("SilicaAndPina")]
|
||||
[assembly: AssemblyProduct("HISPd")]
|
||||
[assembly: AssemblyCompany("Li")]
|
||||
[assembly: AssemblyProduct("HISP")]
|
||||
[assembly: AssemblyCopyright("Public Domain © 2022")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: hisp
|
||||
Version: $VERSION
|
||||
Version: 1.6.3
|
||||
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.6.2.13")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.13")]
|
||||
[assembly: AssemblyVersion("1.6.2.14")]
|
||||
[assembly: AssemblyFileVersion("1.6.2.14")]
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
# Horse Isle Server Configuration
|
||||
# =======================
|
||||
#
|
||||
# Configuration Version 1.3.1
|
||||
# HISP was Created and Developed by SilicaAndPina
|
||||
# However it is NOT COPYRIGHTED! This software is in the Public Domain!
|
||||
#
|
||||
|
@ -36,10 +35,6 @@ map=HI1.MAP
|
|||
# NOTE: This can be a folder or a file.
|
||||
gamedata=gamedata
|
||||
|
||||
# Folder containing mod .dll's
|
||||
# Mods can extend the server
|
||||
# and add custom features.
|
||||
mods_folder=mods
|
||||
|
||||
# =======================
|
||||
# Security
|
||||
|
|
|
@ -7,7 +7,7 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyTitle("HISP Noobs")]
|
||||
[assembly: AssemblyDescription("Noob-Friendly One-Click Run HISP.")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("SilicaAndPina")]
|
||||
[assembly: AssemblyCompany("Li")]
|
||||
[assembly: AssemblyProduct("HISP")]
|
||||
[assembly: AssemblyCopyright("Public Domain © 2022")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
|
|
|
@ -5,12 +5,22 @@ import time
|
|||
import datetime
|
||||
import binascii
|
||||
|
||||
|
||||
def update_asm_info(assemblyinfofile):
|
||||
global commit_hash
|
||||
global commit_tag
|
||||
global commit_branch
|
||||
global assembly_version
|
||||
lines = open(assemblyinfofile, "r").readlines()
|
||||
for i in range(0,len(lines)):
|
||||
if lines[i].startswith("[assembly: AssemblyVersion(\""):
|
||||
lines[i] = "[assembly: AssemblyVersion(\""+assembly_version+"\")]\n"
|
||||
if lines[i].startswith("[assembly: AssemblyFileVersion(\""):
|
||||
lines[i] = "[assembly: AssemblyFileVersion(\""+assembly_version+"\")]\n"
|
||||
open(assemblyinfofile, "w").writelines(lines)
|
||||
|
||||
|
||||
# Determine git stuff.
|
||||
|
||||
global commit_hash
|
||||
global commit_tag
|
||||
global commit_branch
|
||||
|
||||
versioning_folder = os.path.join("LibHISP", "Resources", "Versioning")
|
||||
|
||||
if not os.path.exists(versioning_folder):
|
||||
|
@ -45,11 +55,13 @@ while len(points) < 4:
|
|||
points.append("0")
|
||||
assembly_version = ".".join(points)
|
||||
|
||||
assembly_info = os.path.join("LibHISP", "Properties", "AssemblyInfo.cs")
|
||||
lines = open(assembly_info, "r").readlines()
|
||||
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("HISPd", "Properties", "AssemblyInfo.cs"))
|
||||
|
||||
control_file = os.path.join("HISPd", "Resources", "DEBIAN", "control")
|
||||
lines = open(control_file, "rb").readlines()
|
||||
for i in range(0,len(lines)):
|
||||
if lines[i].startswith("[assembly: AssemblyVersion(\""):
|
||||
lines[i] = "[assembly: AssemblyVersion(\""+assembly_version+"\")]\n"
|
||||
if lines[i].startswith("[assembly: AssemblyFileVersion(\""):
|
||||
lines[i] = "[assembly: AssemblyFileVersion(\""+assembly_version+"\")]\n"
|
||||
open(assembly_info, "w").writelines(lines)
|
||||
if lines[i].startswith(b"Version: "):
|
||||
lines[i] = b"Version: "+bytes(commit_tag.replace("v", ""), "UTF-8")
|
||||
open(control_file, "wb").writelines(control_file)
|
Loading…
Add table
Reference in a new issue