generated from acemod/arma-project-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* hemtt 1.9.1 * VS Code Run Build Task Ctrl+Shift+B * fix info * remove .hemtt/* from ignore * Update Github CI * Add missing .vscode/* to gitignore * Add exemption to .gitignore for vscode tasks.json * Add missing parts to hemtt project.toml for debug * Add missing newline to project.toml * Add post release zip rename build hook --------- Co-authored-by: mjc4wilton <[email protected]>
- Loading branch information
1 parent
e232b69
commit 087d868
Showing
20 changed files
with
183 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
release/* | ||
releases/* | ||
keys/* | ||
.hemtt/local | ||
*.biprivatekey | ||
*.cache | ||
*.exe | ||
*.log | ||
*.pbo | ||
texHeaders.bin | ||
*.swp | ||
*.swo | ||
*.biprivatekey | ||
*.swp | ||
.vscode/* | ||
!.vscode/tasks.json | ||
.hemttout/* | ||
keys/* | ||
release/* | ||
releases/* | ||
texHeaders.bin | ||
Thumbs.db | ||
*.exe | ||
|
||
ArmaScriptCompiler.pdb | ||
libcsqfvm.dll |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
let releases = HEMTT_RFS.join("releases"); | ||
|
||
let src = releases.join(HEMTT.project().prefix() + "-" + HEMTT.project().version().to_string() + ".zip"); | ||
let dst = releases.join(HEMTT.project().name().to_lower() + "_" + HEMTT.project().version().to_string() + ".zip"); | ||
|
||
print("Moving zip to " + dst); | ||
if !src.move(dst) { | ||
warn("Failed to move " + src + " to " + dst + " (maybe --no-archive?)"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name = "BackpackOnChestRedux" | ||
mainprefix = "x" | ||
prefix = "bocr" | ||
author = "DerZade, mjc4wilton" | ||
|
||
[properties] | ||
author = "DerZade, mjc4wilton" | ||
url = "https://github.com/mjc4wilton/BackpackOnChestRedux" | ||
|
||
[files] | ||
include = [ | ||
"*.dll", | ||
"*.so", | ||
"mod.cpp", | ||
"README.md", | ||
"AUTHORS.txt", | ||
"LICENSE", | ||
"logo_bocr_ca.paa", | ||
"meta.cpp" | ||
] | ||
exclude = [ | ||
".vscode", | ||
"*.sqfc", | ||
] | ||
|
||
[asc] | ||
enabled = true | ||
exclude = [ | ||
"/initsettings.sqf", | ||
"/initkeybinds.sqf", | ||
"/xeh_prep.sqf", | ||
"dev", | ||
] | ||
|
||
[hemtt.config] | ||
preset = "Hemtt" | ||
|
||
[hemtt.release] | ||
folder = "bocr" | ||
|
||
[hemtt.launch.default] | ||
workshop = [ | ||
"450814997", # CBA_A3's Workshop ID | ||
"463939057", # ACE3's Workshop ID | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build", | ||
"type": "shell", | ||
"command": "hemtt build", | ||
"windows": { | ||
"command": "hemtt build" | ||
}, | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
x\cba\addons\main |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
x\cba\addons\xeh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.