diff --git a/Applications.cfg b/Applications.cfg index 914f4165..3693fec3 100644 --- a/Applications.cfg +++ b/Applications.cfg @@ -927,13 +927,13 @@ }, { path="/MineOS/Applications/AppMarket", - url="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/Applications/AppMarket/AppMarket.lua", + url="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/Applications/AppMarket/Main.lua", about="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/Applications/AppMarket/About/", type="Application", icon="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/Applications/AppMarket/Icon.pic", createShortcut="dock", forceDownload=true, - version=1.63, + version=1.64, resources={ { path="/Update.pic", diff --git a/Applications/AppMarket/AppMarket.lua b/Applications/AppMarket/Main.lua similarity index 97% rename from Applications/AppMarket/AppMarket.lua rename to Applications/AppMarket/Main.lua index 0d4df4f5..2042d44c 100755 --- a/Applications/AppMarket/AppMarket.lua +++ b/Applications/AppMarket/Main.lua @@ -217,12 +217,12 @@ local tabs = { window.tabBar:addItem(localization.updates) } -local oldResize = window.onResize -window.onResize = function(window, width, height) - window.contentContainer.width, window.contentContainer.height = width - 4, height - 3 - oldResize(window, width, height) - tabs[window.tabBar.selectedItem].onTouch() -end +-- local oldResize = window.onResize +-- window.onResize = function(window, width, height) +-- window.contentContainer.width, window.contentContainer.height = width - 4, height - 3 +-- oldResize(window, width, height) +-- tabs[window.tabBar.selectedItem].onTouch() +-- end tabs[1].onTouch = function() displayApps(1, "Application") end tabs[2].onTouch = function() displayApps(1, "Library") end