Bump version to 0.4.1

This commit is contained in:
centauri 2026-07-11 13:25:38 +01:00
parent 19eaeb424f
commit 5ed4c01940
3 changed files with 6 additions and 2 deletions

View file

@ -1,27 +0,0 @@
local vide = require "../src/"
local count = vide.source(0)
vide.create("TextButton") {
BackgroundTransparency = 1,
AnchorPoint = "bad value", -- should error
InvalidProperty = true, -- should error
Text = function()
return "count: " .. count()
end,
Size = function() -- should error
return "bad value"
end,
MouseEnter = function(x, y)
end,
Activated = "bad value", -- should error
vide.create "TextLabel" {},
function() end,
}