From 2c66a36bc7ba21f8118b0d765f1770110b570c91 Mon Sep 17 00:00:00 2001 From: otomay <54224340+otomay@users.noreply.github.com> Date: Wed, 17 Aug 2022 20:42:19 -0300 Subject: [PATCH 1/5] v1.1.0 --- modinfo.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modinfo.lua b/modinfo.lua index 019fdae..d864e6f 100644 --- a/modinfo.lua +++ b/modinfo.lua @@ -8,7 +8,7 @@ Implementa um sistema de economia no jogo atraves da disponibilizacao de uma loj - Permitir desintegracao de itens preciosos nao afeta itens unicos e obrigatorios para o andamento do jogo, como os altares da lua ]] author = "Otomai" -version = "1.1" +version = "1.1.0" forumthread = "" api_version = 10 From 1f29bf9a4351941a678d9bc61326d94fa3e3fbd6 Mon Sep 17 00:00:00 2001 From: otomay <54224340+otomay@users.noreply.github.com> Date: Thu, 18 Aug 2022 12:57:04 -0300 Subject: [PATCH 2/5] =?UTF-8?q?compat=C3=ADvel=20com=20vers=C3=A3o=201.0.0?= =?UTF-8?q?=20na=20sele=C3=A7=C3=A3o=20de=20idioma?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit versão 1.0.0 utilizava boolean true e false. 1.1.0 usa integer. Adicionado "or" nas condições para tentar forçar compatibilidade nas configurações antigas do mod. --- modmain.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modmain.lua b/modmain.lua index 3d05968..4eda0ab 100644 --- a/modmain.lua +++ b/modmain.lua @@ -7,13 +7,13 @@ local RECIPETABS = GLOBAL.RECIPETABS local TECH = GLOBAL.TECH local LAN_ = GetModConfigData('Language') -if LAN_ == 3 then +if LAN_ == 3 or LAN_ = true then require 'SEscripts/strings_cn' TUNING.SElan = "cn" elseif LAN_ == 2 then require 'SEscripts/strings_en' TUNING.SElan = "en" -elseif LAN_ == 1 then +elseif LAN_ == 1 or LAN_ = false then require 'SEscripts/strings_ptbr' TUNING.SElan = "en" end From 6054628908d4c5bdf527502fc37d9158aaf144fb Mon Sep 17 00:00:00 2001 From: otomay <54224340+otomay@users.noreply.github.com> Date: Thu, 18 Aug 2022 13:20:35 -0300 Subject: [PATCH 3/5] tentar limitar tempo de arraste linha 195 --- scripts/widgets/uiseconomy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/widgets/uiseconomy.lua b/scripts/widgets/uiseconomy.lua index 638d56b..11f279b 100644 --- a/scripts/widgets/uiseconomy.lua +++ b/scripts/widgets/uiseconomy.lua @@ -196,7 +196,7 @@ self.coinamount = self:AddChild(Widget("coinamount")) --self.draggingTimer = 0x0 --self.moveLayerTimer = 0x0 --self:MoveToFront() - --return + --self:StartUpdating() --end end if not self.dragging then From 1ebab8130e767abdeab02a9dd9b67ca1e5d852a4 Mon Sep 17 00:00:00 2001 From: otomay <54224340+otomay@users.noreply.github.com> Date: Fri, 19 Aug 2022 12:55:38 -0300 Subject: [PATCH 4/5] =?UTF-8?q?+=20hyperlink=20para=20a=20p=C3=A1gina=20do?= =?UTF-8?q?=20mod=20na=20Steam=20Workshop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 51edbe7..b5c70ef 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,5 @@ # MOD Original [Simple Economy](https://steamcommunity.com/sharedfiles/filedetails/?id=1115709310) # Projeto +[Steam Workshop](https://steamcommunity.com/sharedfiles/filedetails/?id=2847806795) [Github](https://github.com/otomay/Economia-Simples) From 05606af5863dde4f680689f3fa029fb5a74f180b Mon Sep 17 00:00:00 2001 From: otomay <54224340+otomay@users.noreply.github.com> Date: Fri, 19 Aug 2022 12:56:20 -0300 Subject: [PATCH 5/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5c70ef..42518d9 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,5 @@ [Simple Economy](https://steamcommunity.com/sharedfiles/filedetails/?id=1115709310) # Projeto [Steam Workshop](https://steamcommunity.com/sharedfiles/filedetails/?id=2847806795) + [Github](https://github.com/otomay/Economia-Simples)