Skip to content

v0.9.14

Pre-release
Pre-release
Compare
Choose a tag to compare
@bitspittle bitspittle released this 29 Sep 00:02
· 2150 commits to main since this release

Frontend

  • Fixed unnecessary recompositions by adding equals and hashcode logic to Kobweb Modifier implementations
  • Added an additional, more idiomatic Kotlin API for Modifier.boxShadow

Silk

  • Re-added Text and TextStyle 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 to SpanText. This was done in v0.9.13 because Text kept running against the very common Text function in the Compose Web API.

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 to a\b\c\test.html, not test.html
    • Linux and Mac were fine.