diff --git a/init.lua b/init.lua index 288fce2..94984aa 100644 --- a/init.lua +++ b/init.lua @@ -1,4 +1,4 @@ --- Version 1.0.1 +-- Version 1.0.2 -- Author AliasAlreadyTaken -- License MIT @@ -8,6 +8,7 @@ -- 0.0.2 Feature complete including settings -- 1.0.0 Ready for release -- 1.0.1 Bugfix https://gitea.your-land.de/your-land/bugtracker/issues/1646 +-- 1.0.2 Bugfix settingtypes: bool instead of boolean local mod_start_time = core.get_us_time() core.log("action", "[MOD] yl_matterbridge loading") @@ -19,7 +20,7 @@ yl_matterbridge = {} --yl_matterbridge.worldpath = core.get_worldpath() .. DIR_DELIM yl_matterbridge.information = {} -yl_matterbridge.information.version = "1.0.1" +yl_matterbridge.information.version = "1.0.2" yl_matterbridge.information.author = "AliasAlreadyTaken" yl_matterbridge.information.license = "MIT" yl_matterbridge.information.name = "yl_matterbridge" diff --git a/settingtypes.txt b/settingtypes.txt index 653a9f9..b6a4a18 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -26,4 +26,4 @@ yl_matterbridge.token (Bridge token) string "" # Whether or not debugging messages are enabled # If set to true, the mod will write every send and receive to the log, among other debug messages. # Optional, default false -yl_matterbridge.debug (Debug mode) boolean false \ No newline at end of file +yl_matterbridge.debug (Debug mode) bool false \ No newline at end of file