mirror of https://github.com/teverse/teverse
Compare commits
No commits in common. "b39b953fa64b64b8990029ab0cb3b443924118cb" and "deb10db9dabd19986b6a05d684204ef6dd69a1ba" have entirely different histories.
b39b953fa6
...
deb10db9da
|
@ -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
|
||||
}
|
|
@ -139,11 +139,7 @@ controller.setup = function()
|
|||
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
|
||||
setupPage(require("tevgit:core/dashboard/pages/develop.lua"))
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -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", {
|
||||
|
|
Loading…
Reference in New Issue