v2.13.0

EvoMap/evolverv2.13.0Jul 6, 2026by leaanthony

AI Summary

This release focuses on stability improvements and documentation enhancements for the Wails framework. It addresses critical stability issues in the wake build runner and the application quit logic while adding practical examples to help developers understand event handling.

Key Highlights

  • Fixed nil pointer crash in `application.Quit` when called before `Run` or after early return.
  • Fixed wake runner precondition issue causing spurious 'garble is required' errors.
  • Added documentation example demonstrating events usage.
  • Added Kira to the community showcase.

New Features

  • Documentation example for events usage.
  • Community showcase entry (Kira).

Full Release Notes

## Installation

```bash
go install github.com/wailsapp/wails/v2/cmd/wails@v2.13.0
```

## Changes

### Added

- Added example demonstrating events usage in the documentation [`#5026`](https://github.com/wailsapp/wails/pull/5026) by `@iamhabbeboy`


### Added

- Added Kira to the community showcase by @thiennguyen93

### Fixed

- Fixed wake (experimental `WAILS_USE_WAKE=true` build runner) running precondition `sh:` strings without template expansion, causing a spurious "garble is required for obfuscated builds" error on every build by @leaanthony
- Fixed nil pointer crash in `application.Quit` when called before `Run` or after `Run` returned early [#5452](https://github.com/wailsapp/wails/issues/5452) by @c-tonneslan