Skip to content

v0.11.7

Pre-release
Pre-release

Choose a tag to compare

@bitspittle bitspittle released this 15 Jan 17:24
· 2396 commits to main since this release

This release brings in some important kobweb export fixes. Upgrading to this version is recommended.

Frontend

  • Added a Modifier for the onContextMenu input event (e.g. right mouse click)
  • Added a new field to PageContext for checking if an export is in progress.
    • To use:
      val ctx = rememberPageContext()
      if (!ctx.isExporting) { /* do something that shouldn't happen when exporting */ }
      

Silk

  • Fixed button focus behavior on click
    • You can now press "space" / "enter" on a button and it will keep clicking it. Before, focus was lost after the first click.

Gradle

  • Export has been busted for some time, outputting useless snapshots that were just the original index.html file. This has been fixed.
  • Export now logs when each page is exported and how long it took to export. This also includes notifications about errors if any occur.