mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-22 11:18:22 -05:00
163ac4dcef
- Fixes for all files - constexpr cleanup - Cosmetic changes - Remove punctuation from the end of messages
26 lines
498 B
Lua
26 lines
498 B
Lua
local item = {
|
|
Type = "DashboardItemDate",
|
|
Identifier = "Date",
|
|
GuiName = "Date"
|
|
}
|
|
|
|
asset.onInitialize(function()
|
|
openspace.dashboard.addDashboardItem(item)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.dashboard.removeDashboardItem(item)
|
|
end)
|
|
|
|
asset.export(item)
|
|
|
|
|
|
asset.meta = {
|
|
Name = "Dashboard - Date",
|
|
Version = "1.0",
|
|
Description = "This asset provides a Date dashboard item",
|
|
Author = "OpenSpace Team",
|
|
URL = "http://openspaceproject.com",
|
|
License = "MIT license"
|
|
}
|