tpmkms_4wp 7.12.2-beta.5 → 7.12.3-beta.0
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/common/avatar.js +1 -2
- package/common/comparable.js +1 -1
- package/common/concept.js +2 -0
- package/common/countable.js +1 -1
- package/common/crew.instance.json +36 -0
- package/common/crew.js +3 -2
- package/common/currency.js +2 -0
- package/common/dialogues.js +3 -1
- package/common/dimension.js +3 -1
- package/common/edible.instance.json +56 -0
- package/common/edible.js +1 -2
- package/common/emotions.js +2 -0
- package/common/fastfood.instance.json +935 -491
- package/common/fastfood.js +3 -4
- package/common/formulas.js +3 -1
- package/common/formulasTemplate.js +1 -1
- package/common/help.js +2 -0
- package/common/hierarchy.js +2 -0
- package/common/javascript.js +2 -0
- package/common/math.js +1 -4
- package/common/mathTemplate.js +1 -1
- package/common/ordering.js +2 -0
- package/common/people.instance.json +0 -60
- package/common/people.js +2 -0
- package/common/pipboy.js +3 -1
- package/common/pipboy.test.json +13 -5
- package/common/pipboyTemplate.js +1 -1
- package/common/pokemon.js +2 -0
- package/common/properties.js +3 -3
- package/common/reports.instance.json +1 -1
- package/common/reports.js +4 -1
- package/common/scorekeeper.js +3 -3
- package/common/sizeable.js +1 -1
- package/common/stgame.js +2 -0
- package/common/tell.js +2 -0
- package/common/temperature.instance.json +0 -84
- package/common/time.js +2 -0
- package/common/ui.js +3 -1
- package/package.json +2 -2
@@ -5095,48 +5095,6 @@
|
|
5095
5095
|
0
|
5096
5096
|
]
|
5097
5097
|
],
|
5098
|
-
[
|
5099
|
-
[
|
5100
|
-
"celcius",
|
5101
|
-
0
|
5102
|
-
],
|
5103
|
-
[
|
5104
|
-
"divideByOperator",
|
5105
|
-
0
|
5106
|
-
],
|
5107
|
-
[
|
5108
|
-
"equals",
|
5109
|
-
0
|
5110
|
-
],
|
5111
|
-
[
|
5112
|
-
"fahrenheit",
|
5113
|
-
0
|
5114
|
-
],
|
5115
|
-
[
|
5116
|
-
"leftParenthesis",
|
5117
|
-
0
|
5118
|
-
],
|
5119
|
-
[
|
5120
|
-
"minusOperator",
|
5121
|
-
0
|
5122
|
-
],
|
5123
|
-
[
|
5124
|
-
"number",
|
5125
|
-
0
|
5126
|
-
],
|
5127
|
-
[
|
5128
|
-
"plusOperator",
|
5129
|
-
0
|
5130
|
-
],
|
5131
|
-
[
|
5132
|
-
"rightParenthesis",
|
5133
|
-
0
|
5134
|
-
],
|
5135
|
-
[
|
5136
|
-
"timesOperator",
|
5137
|
-
0
|
5138
|
-
]
|
5139
|
-
],
|
5140
5098
|
[
|
5141
5099
|
[
|
5142
5100
|
"celcius",
|
@@ -5480,48 +5438,6 @@
|
|
5480
5438
|
0
|
5481
5439
|
]
|
5482
5440
|
],
|
5483
|
-
[
|
5484
|
-
[
|
5485
|
-
"celcius",
|
5486
|
-
0
|
5487
|
-
],
|
5488
|
-
[
|
5489
|
-
"divideByOperator",
|
5490
|
-
0
|
5491
|
-
],
|
5492
|
-
[
|
5493
|
-
"equals",
|
5494
|
-
0
|
5495
|
-
],
|
5496
|
-
[
|
5497
|
-
"fahrenheit",
|
5498
|
-
0
|
5499
|
-
],
|
5500
|
-
[
|
5501
|
-
"leftParenthesis",
|
5502
|
-
0
|
5503
|
-
],
|
5504
|
-
[
|
5505
|
-
"minusOperator",
|
5506
|
-
0
|
5507
|
-
],
|
5508
|
-
[
|
5509
|
-
"number",
|
5510
|
-
0
|
5511
|
-
],
|
5512
|
-
[
|
5513
|
-
"plusOperator",
|
5514
|
-
0
|
5515
|
-
],
|
5516
|
-
[
|
5517
|
-
"rightParenthesis",
|
5518
|
-
0
|
5519
|
-
],
|
5520
|
-
[
|
5521
|
-
"timesOperator",
|
5522
|
-
0
|
5523
|
-
]
|
5524
|
-
],
|
5525
5441
|
[
|
5526
5442
|
[
|
5527
5443
|
"celcius",
|
package/common/time.js
CHANGED
@@ -156,6 +156,7 @@ const configStruct = {
|
|
156
156
|
|
157
157
|
const createConfig = () => {
|
158
158
|
const config = new Config(configStruct, module)
|
159
|
+
config.stop_auto_rebuild()
|
159
160
|
config.add(tell())
|
160
161
|
config.api = api
|
161
162
|
config.initializer( ({config, objects, kms, isModule}) => {
|
@@ -170,6 +171,7 @@ const createConfig = () => {
|
|
170
171
|
apply: api.semantics
|
171
172
|
})
|
172
173
|
})
|
174
|
+
config.restart_auto_rebuild()
|
173
175
|
return config
|
174
176
|
}
|
175
177
|
|
package/common/ui.js
CHANGED
@@ -186,8 +186,10 @@ const template = {
|
|
186
186
|
|
187
187
|
const createConfig = () => {
|
188
188
|
const config = new Config(configStruct, module)
|
189
|
-
config.
|
189
|
+
config.stop_auto_rebuild()
|
190
|
+
config.add(dialogues(), math())
|
190
191
|
config.api = new API()
|
192
|
+
config.restart_auto_rebuild()
|
191
193
|
return config
|
192
194
|
}
|
193
195
|
|
package/package.json
CHANGED
@@ -281,8 +281,8 @@
|
|
281
281
|
"table": "^6.7.1",
|
282
282
|
"base-64": "^1.0.0",
|
283
283
|
"argparse": "^2.0.1",
|
284
|
-
"theprogrammablemind_4wp": "7.12.
|
284
|
+
"theprogrammablemind_4wp": "7.12.3-beta.0"
|
285
285
|
},
|
286
|
-
"version": "7.12.
|
286
|
+
"version": "7.12.3-beta.0",
|
287
287
|
"license": "UNLICENSED"
|
288
288
|
}
|