1
0
mirror of https://github.com/kepler155c/opus synced 2025-11-18 16:25:10 +00:00

more work on update notification

This commit is contained in:
kepler155c@gmail.com
2020-05-01 22:26:15 -06:00
parent c1cbcf6b61
commit 9c97849cff
3 changed files with 21 additions and 12 deletions

View File

@@ -9,22 +9,28 @@ if not config.current then
end
UI:setPage(UI.Page {
UI.Text {
x = 2, y = 2, ex = -2,
align = 'center',
value = 'Opus has been updated.',
textColor = 'yellow',
},
UI.TextArea {
x = 2, y = 2, ey = -2,
value = 'A new version of Opus is available.'
x = 2, y = 4, ey = -8,
text = config.details,
},
UI.Button {
x = 2, y = 5, width = 21,
x = 2, y = -6, width = 21,
event = 'skip',
text = 'Skip this version',
},
UI.Button {
x = 2, y = 7, width = 21,
x = 2, y = -4, width = 21,
event = 'remind',
text = 'Remind me tomorrow',
},
UI.Button {
x = 2, y = 9, width = 21,
x = 2, y = -2, width = 21,
event = 'update',
text = 'Update'
},