v0.9.14
Pre-release
Pre-release
Frontend
- Fixed unnecessary recompositions by adding
equals
andhashcode
logic to KobwebModifier
implementations - Added an additional, more idiomatic Kotlin API for
Modifier.boxShadow
Silk
- Re-added
Text
andTextStyle
back in but with@Deprecation
annotations, after previously deleting them in 0.9.13. This means if projects upgrade from v0.9.12 (or earlier) to v0.9.14 (or later), they'll get helpful warnings instead of hard errors.- All Kobweb
Text
references should be renamed toSpanText
. This was done in v0.9.13 becauseText
kept running against the very commonText
function in the Compose Web API.
- All Kobweb
Markdown
- Fixed a bug with the Markdown plugin on Windows (caused by platform dependent slash logic), where before it didn't generate export paths correctly for nested markdown files.
- e.g.
src\jsMain\resources\markdown\a\b\c\test.md
will now export toa\b\c\test.html
, nottest.html
- Linux and Mac were fine.
- e.g.