@jtff/miztemplate-lib 3.7.2 → 3.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lua/lib/HoundElint.lua +3469 -1621
- package/lua/lib/Moose_.lua +310 -263
- package/lua/lib/{Splash_Damage_3.0.lua → Splash_Damage_main.lua} +485 -50
- package/package.json +4 -4
- package/scripts/inject-scripts.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jtff/miztemplate-lib",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.3",
|
|
4
4
|
"description": "JTFF mission template library",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "https://gitlab.
|
|
19
|
+
"url": "https://gitlab.com/klanik-dsir/open-source/jtff/miztemplate-lib.git"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"DCS",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"author": "Sebastien LONGO",
|
|
28
28
|
"license": "GPL-3.0-or-later",
|
|
29
29
|
"bugs": {
|
|
30
|
-
"url": "https://gitlab.
|
|
30
|
+
"url": "https://gitlab.com/klanik-dsir/open-source/jtff/miztemplate-lib/-/issues"
|
|
31
31
|
},
|
|
32
|
-
"homepage": "https://gitlab.
|
|
32
|
+
"homepage": "https://gitlab.com/klanik-dsir/open-source/jtff/miztemplate-lib",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"ftp": "^0.3.10",
|
|
35
35
|
"get-installed-path": "^4.0.8",
|
|
@@ -171,8 +171,8 @@ async function doInject(ciObject, sourceMizFileName, workspacePath,destinationMi
|
|
|
171
171
|
// insertion des librairies externes dans la file d'attente
|
|
172
172
|
libsArray.push({
|
|
173
173
|
folder: 'lib',
|
|
174
|
-
scriptTitle: 'SplashDamage
|
|
175
|
-
scripts: ['
|
|
174
|
+
scriptTitle: 'SplashDamage',
|
|
175
|
+
scripts: ['Splash_Damage_main.lua'],
|
|
176
176
|
timing: 9,
|
|
177
177
|
color: '0x008000ff'
|
|
178
178
|
});
|