From b04d6854553e7fa4ddbaf3da2baa69682decb332 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Mon, 12 Feb 2018 11:44:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=D1=8B=20=D1=81=D0=BB?= =?UTF-8?q?=D0=B0=D0=B9=D0=B4=D0=B5=D1=80=D0=B0=20=D0=B8=20=D1=85=D1=83?= =?UTF-8?q?=D0=B9=D0=BD=D0=B8=D0=BD=D1=8B=20=D1=8D=D1=82=D0=BE=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Applications.cfg | 11 ++- Applications/RunningString/Icon.pic | Bin 183 -> 143 bytes Applications/RunningString/RunningString.lua | 88 ++++++++----------- lib/GUI.lua | 8 +- lib/scale.lua | 4 +- 5 files changed, 50 insertions(+), 61 deletions(-) mode change 100644 => 100755 Applications/RunningString/Icon.pic diff --git a/Applications.cfg b/Applications.cfg index 9e647178..59e69f79 100644 --- a/Applications.cfg +++ b/Applications.cfg @@ -235,6 +235,12 @@ type="Library", version=1.08, }, + { + path="/lib/scale.lua", + url="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/lib/scale.lua", + type="Library", + version=1.08, + }, { path="/lib/MineOSInterface.lua", url="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/lib/MineOSInterface.lua", @@ -292,7 +298,6 @@ path="/lib/FormatModules/OCAF.lua", url="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/lib/FormatModules/OCAF.lua", type="Library", - preloadFile=true, version=1.01, }, { @@ -319,7 +324,7 @@ url="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/lib/GUI.lua", type="Library", preloadFile=true, - version=2.15, + version=2.16, }, { path="/lib/rayEngine.lua", @@ -842,7 +847,7 @@ type="Application", icon="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/Applications/RunningString/Icon.pic", createShortcut=true, - version=1.01, + version=1.02, }, { path="/MineOS/Applications/Graph2", diff --git a/Applications/RunningString/Icon.pic b/Applications/RunningString/Icon.pic old mode 100644 new mode 100755 index 6eacebcc4e2eb9a017a4e7109d1e561ef89a0a26..deba57a66038f2e20613b2dc4300b6a1d3930966 GIT binary patch literal 143 zcmX}ky9t0m5CqVhoxQsSo3Ix_FcNG+ObqKq=(8hX>uU&P`9SEL!7fL*jy>^&8ieXYv@+c;eKV%zln4Ggwy%f3H@=Ywsey&?$NK~xEUy}-@$s9 1 then scale = 1 - elseif scale < 0.1 then - scale = 0.1 + elseif scale <= 0.01 then + scale = 0.01 end local xScreens, yScreens = component.proxy(component.gpu.getScreen()).getAspectRatio()