Skip to content

Commit 74d6680

Browse files
authored
Merge pull request #9 from Navatusein/dev
Fix configs
2 parents 4afe8c9 + 0a58265 commit 74d6680

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

config-descriptor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ descriptor:
4444
- key: mainMeInterfaceAddress
4545
type: address
4646
label: Main ME Interface Address
47-
description: Number of CPUs that can be used to order aspects
47+
description: Address of the me interface which connected to main ME
4848

4949
- key: infusionManager
5050
name: Infusion Manager
@@ -129,6 +129,8 @@ descriptor:
129129
local recipeManager = require("src.recipe-manager")
130130
131131
local config = {
132+
enableAutoUpdate = true, -- Enable auto update on start
133+
132134
logger = loggerLib:newFormConfig({
133135
name = "<field>name</field>",
134136
timeZone = <field>timeZone</field>, -- Your time zone

config.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ local infusionManager = require("src.infusion-manager")
1010
local recipeManager = require("src.recipe-manager")
1111

1212
local config = {
13+
enableAutoUpdate = true, -- Enable auto update on start
14+
1315
logger = loggerLib:newFormConfig({
1416
name = "Infusion Control",
1517
timeZone = 3, -- Your time zone

version.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local versions = {
2-
programVersion = "1.0.2",
3-
configVersion = 1
2+
programVersion = "1.0.3",
3+
configVersion = 2
44
}
55

66
return versions

0 commit comments

Comments
 (0)