Compare commits

..

No commits in common. "b39b953fa64b64b8990029ab0cb3b443924118cb" and "deb10db9dabd19986b6a05d684204ef6dd69a1ba" have entirely different histories.

5 changed files with 2 additions and 1430 deletions

1399
api.json

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +0,0 @@
return {
name = "Develop",
iconId = "layer-group",
iconType = "faSolid",
setup = function(page)
teverse.construct("guiTextBox", {
parent = page,
size = guiCoord(1.0, -20, 0, 48),
position = guiCoord(0, 10, 0, 10),
backgroundAlpha = 0,
text = "Develop for Tablets is coming soon",
textSize = 48,
textAlign = "middleLeft"
})
end
}

View File

@ -138,12 +138,8 @@ controller.setup = function()
setupPage(require("tevgit:core/dashboard/pages/home.lua"))
setupPage(require("tevgit:core/dashboard/pages/apps.lua"))
if _DEVICE:sub(0, 6) ~= "iPhone" then
if _DEVICE:sub(0, 4) == "iPad" then
setupPage(require("tevgit:core/dashboard/pages/developTablet.lua"))
else
setupPage(require("tevgit:core/dashboard/pages/developDesktop.lua"))
end
if _DEVICE:sub(0,6) ~= "iPhone" then
setupPage(require("tevgit:core/dashboard/pages/develop.lua"))
end
end

View File

@ -1,13 +1,4 @@
-- This is the main interface loaded into coreinterface
teverse.construct("guiFrame", {
parent = teverse.coreInterface,
size = guiCoord(1, 0, 0, 50),
position = guiCoord(0, 0, 0, -50),
backgroundColour = colour.black(),
backgroundAlpha = 0.75
})
local console = require("tevgit:core/teverseUI/console.lua")
local container = teverse.construct("guiFrame", {