Compare commits

...

7 Commits

Author SHA1 Message Date
Jay b39b953fa6 Added constructable boolean to dump 2020-04-25 22:47:24 +01:00
Jay 4b479a483e Fixed type/desc in dump 2020-04-25 22:25:21 +01:00
Jay 1434cef53f Api Dump fixed parameters 2020-04-25 21:54:29 +01:00
Jay a0fb4dcfb7 Api Dump 2020-04-25 21:35:20 +01:00
Jay 61e3a7347a tev2020 api dump 2020-04-25 21:27:13 +01:00
Jay b676abadef Status bar 2020-04-25 18:48:29 +01:00
Jay 036bbb8ee2 New develop page for tablets 2020-04-25 18:40:02 +01:00
5 changed files with 1430 additions and 2 deletions

1399
api.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,16 @@
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

@ -139,7 +139,11 @@ controller.setup = function()
setupPage(require("tevgit:core/dashboard/pages/apps.lua")) setupPage(require("tevgit:core/dashboard/pages/apps.lua"))
if _DEVICE:sub(0, 6) ~= "iPhone" then if _DEVICE:sub(0, 6) ~= "iPhone" then
setupPage(require("tevgit:core/dashboard/pages/develop.lua")) 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
end end
end end

View File

@ -1,4 +1,13 @@
-- This is the main interface loaded into coreinterface -- 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 console = require("tevgit:core/teverseUI/console.lua")
local container = teverse.construct("guiFrame", { local container = teverse.construct("guiFrame", {