diff --git a/.gitignore b/.gitignore index 6dced02..cef7422 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,5 @@ manifest.private.der manifest.public.der /.editor_settings /.deployer_cache + +deployer_version_settings.ini diff --git a/settings_deployer b/settings_deployer index 36ed926..fc147e4 100644 --- a/settings_deployer +++ b/settings_deployer @@ -2,7 +2,7 @@ bob_folder=./ # You can point bob version for project in format "filename:sha" -bob_sha=":868769ba7a3458db12d149188bf3be80a339a85c" +bob_sha="1_11_2:cddb6eb43c32e4930257fcbbb30f19cf28deb081" # Select Defold channel. Values: stable, beta, alpha bob_channel="stable" diff --git a/test/tests/test_rich_text.lua b/test/tests/test_rich_text.lua index d37d819..29bd75a 100644 --- a/test/tests/test_rich_text.lua +++ b/test/tests/test_rich_text.lua @@ -106,12 +106,6 @@ return function() -- Test shadow tag with named color local words = rich_text:set_text("Shadowed Text") - assert(#words > 0) - assert(words[1].shadow ~= nil) - - -- Test shadow tag with RGBA values - words = rich_text:set_text("Shadowed Text") - assert(#words > 0) assert(words[1].shadow ~= nil) assert(words[1].shadow.x < 0.1) -- Black shadow should have low RGB values @@ -131,12 +125,6 @@ return function() -- Test outline tag with named color local words = rich_text:set_text("Outlined Text") - assert(#words > 0) - assert(words[1].outline ~= nil) - - -- Test outline tag with RGBA values - words = rich_text:set_text("Outlined Text") - assert(#words > 0) assert(words[1].outline ~= nil) assert(words[1].outline.x < 0.1) -- Black outline should have low RGB values