tpmkms_4wp 7.12.3 → 7.12.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -3612,6 +3612,36 @@
3612
3612
  0
3613
3613
  ]
3614
3614
  ],
3615
+ [
3616
+ [
3617
+ "celcius",
3618
+ 0
3619
+ ],
3620
+ [
3621
+ "divideByOperator",
3622
+ 0
3623
+ ],
3624
+ [
3625
+ "equals",
3626
+ 0
3627
+ ],
3628
+ [
3629
+ "fahrenheit",
3630
+ 0
3631
+ ],
3632
+ [
3633
+ "number",
3634
+ 0
3635
+ ],
3636
+ [
3637
+ "plusOperator",
3638
+ 0
3639
+ ],
3640
+ [
3641
+ "timesOperator",
3642
+ 0
3643
+ ]
3644
+ ],
3615
3645
  [
3616
3646
  [
3617
3647
  "celcius",
@@ -5265,6 +5295,32 @@
5265
5295
  0
5266
5296
  ]
5267
5297
  ],
5298
+ [
5299
+ [
5300
+ "celcius",
5301
+ 0
5302
+ ],
5303
+ [
5304
+ "divideByOperator",
5305
+ 0
5306
+ ],
5307
+ [
5308
+ "equals",
5309
+ 0
5310
+ ],
5311
+ [
5312
+ "number",
5313
+ 0
5314
+ ],
5315
+ [
5316
+ "plusOperator",
5317
+ 0
5318
+ ],
5319
+ [
5320
+ "timesOperator",
5321
+ 0
5322
+ ]
5323
+ ],
5268
5324
  [
5269
5325
  [
5270
5326
  "celcius",
@@ -5552,6 +5608,36 @@
5552
5608
  0
5553
5609
  ]
5554
5610
  ],
5611
+ [
5612
+ [
5613
+ "celcius",
5614
+ 0
5615
+ ],
5616
+ [
5617
+ "divideByOperator",
5618
+ 0
5619
+ ],
5620
+ [
5621
+ "equals",
5622
+ 0
5623
+ ],
5624
+ [
5625
+ "fahrenheit",
5626
+ 0
5627
+ ],
5628
+ [
5629
+ "number",
5630
+ 0
5631
+ ],
5632
+ [
5633
+ "plusOperator",
5634
+ 0
5635
+ ],
5636
+ [
5637
+ "timesOperator",
5638
+ 0
5639
+ ]
5640
+ ],
5555
5641
  [
5556
5642
  [
5557
5643
  "celcius",
@@ -5706,6 +5792,32 @@
5706
5792
  0
5707
5793
  ]
5708
5794
  ],
5795
+ [
5796
+ [
5797
+ "celcius",
5798
+ 0
5799
+ ],
5800
+ [
5801
+ "divideByOperator",
5802
+ 0
5803
+ ],
5804
+ [
5805
+ "equals",
5806
+ 0
5807
+ ],
5808
+ [
5809
+ "number",
5810
+ 0
5811
+ ],
5812
+ [
5813
+ "plusOperator",
5814
+ 0
5815
+ ],
5816
+ [
5817
+ "timesOperator",
5818
+ 0
5819
+ ]
5820
+ ],
5709
5821
  [
5710
5822
  [
5711
5823
  "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.add(dialogues()).add(math())
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.3"
284
+ "theprogrammablemind_4wp": "7.12.4"
285
285
  },
286
- "version": "7.12.3",
286
+ "version": "7.12.4",
287
287
  "license": "UNLICENSED"
288
288
  }