-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
572 additions
and
118 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
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,14 @@ | ||
// Read the current contents of the mod.cpp | ||
// file from the project source | ||
let version = HEMTT_DIRECTORY | ||
.join("mod.cpp") | ||
.open_file() | ||
.read(); | ||
// Replace the placeholder version with the actual version | ||
version.replace("{version}", HEMTT.project().version().to_string_short()); | ||
// Write the new contents to the build output | ||
// create_file will overwrite the file if it exists | ||
HEMTT_OUTPUT | ||
.join("mod.cpp") | ||
.create_file() | ||
.write(version); |
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,43 @@ | ||
name = "DUI Squad Radar" | ||
prefix = "diwako_dui" | ||
author = "Diwako" | ||
mainprefix = "z" | ||
|
||
[version] | ||
path = "addons/main/script_version.hpp" | ||
git_hash = 0 | ||
|
||
[files] | ||
include = [ | ||
"mod.cpp", | ||
"authors.txt", | ||
"license.txt", | ||
"logolarge.paa", | ||
"logosmall.paa" | ||
] | ||
exclude = [ | ||
"*.psd", | ||
"*.png", | ||
"*.tga" | ||
] | ||
|
||
[hemtt.launch.default] | ||
workshop = [ | ||
"450814997", # CBA_A3's Workshop ID | ||
"463939057" # ACE3 | ||
] | ||
parameters = [ | ||
"-skipIntro", # These parameters are passed to the Arma 3 executable | ||
"-noSplash", # They do not need to be added to your list | ||
"-showScriptErrors", # You can add additional parameters here | ||
"-debug", | ||
"-world=empty", | ||
"-filePatching", | ||
"C:\\Users\\diwako\\Documents\\Arma 3\\missions\\dui.VR\\mission.sqm", # Launch into existing Editor Mission - \\ needed | ||
] | ||
|
||
[hemtt.signing] | ||
authority = "diwako_dui" | ||
|
||
[hemtt.release] | ||
folder = "diwako_dui" |
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 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,4 +1,4 @@ | ||
#define MAJOR 1 | ||
#define MINOR 9 | ||
#define PATCHLVL 3 | ||
#define BUILD 1 | ||
#define MINOR 10 | ||
#define PATCHLVL 0 | ||
#define BUILD 0 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.