Skip to content

v0.11.2

Pre-release
Pre-release

Choose a tag to compare

@bitspittle bitspittle released this 11 Dec 19:09
· 2479 commits to main since this release

A small update which includes a fix for an unfortunately long-standing export bug on Windows.

Silk

  • Update the Silk ref methods to allow nullable keys:
       val someFeatureProperty: Any? = /* ... */
       SomeWidget(
          ref = ref(someFeatureProperty) { /* ... rerun if someFeatureProperty changes */ }
       )

Gradle plugins

  • Fixed an issue where kobweb export wasn't working right on Windows due to path issues. (Note: The kobweb export --layout static variant worked fine)

  • If a server fails to run when you trigger kobweb run, the stderr of the process is now captured and shown to the user.

Templates

  • Updated all templates to use the Silk way of registering global styles, via Modifier and not StyleSheet approaches.
    • Both are honestly fine, but being able to consistently use Modifier styles everywhere makes the project feel a bit more cohesive.