From da7baec1b2b8c582ce644788de58997928adbb98 Mon Sep 17 00:00:00 2001 From: 3Mydlo3 Date: Fri, 26 Jan 2024 15:40:43 +0100 Subject: [PATCH] Upgrade to newest HEMTT (#57) --- .gitignore | 1 + .hemtt/project.toml | 18 ++++++++++++++++++ hemtt.toml | 39 --------------------------------------- 3 files changed, 19 insertions(+), 39 deletions(-) create mode 100644 .hemtt/project.toml delete mode 100644 hemtt.toml diff --git a/.gitignore b/.gitignore index a9ca5f22..0bb05afb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ addons/*.pbo # Releases +.hemttout/* releases/* hemtt hemtt.exe diff --git a/.hemtt/project.toml b/.hemtt/project.toml new file mode 100644 index 00000000..042bf73b --- /dev/null +++ b/.hemtt/project.toml @@ -0,0 +1,18 @@ +name = "ArmaForces SerialKillers" +mainprefix = "z" +prefix = "afsk" + +[files] +include = [ + "LICENSE", + "mod.cpp", + "README.md", +] + +exclude = ["*.psd", "*.png", "*.tga"] + +[properties] +author = "ArmaForces" + +[version] +path = "addons/main/script_version.hpp" diff --git a/hemtt.toml b/hemtt.toml deleted file mode 100644 index f0890798..00000000 --- a/hemtt.toml +++ /dev/null @@ -1,39 +0,0 @@ -name = "ArmaForces SerialKillers" -prefix = "afsk" -author = "ArmaForces" -files = [ - "LICENSE", - "mod.cpp", - "README.md" -] - -exclude = ["*.psd", "*.png", "*.tga"] - -modname = "armaforces_serialkillers" -keyname = "armaforces_serialkillers_{{version}}" -signame = "armaforces_serialkillers_{{version}}" - -releasebuild = [ - "!Set_version", - "@zip", - "!publish" -] - -# HEMTT >= 0.7 (unreleased) -#[header_exts] -#version = "{{git \"id 8\"}}" -headerexts = [ - "version={{git \"id 8\"}}" -] - -[scripts.Set_version] - steps_windows = [ - "powershell ./tools/Set-Version.ps1 {{version}} '@armaforces_serialkillers'" - ] - # show_output = true - -[scripts.publish] - steps_windows = [ - "powershell ./tools/Publish.ps1 {{version}} YOUR_WORKSHOP_ID '@armaforces_serialkillers'" - ] - show_output = true