diff --git a/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/generate/assets/common/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/lit-ts/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/lit/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/preact-ts/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/preact/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/react-ts/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/react/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/svelte-ts/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/svelte/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/vanilla-ts/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/vanilla/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/vue-ts/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.d.ts b/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.d.ts
index 02e7bb46b..336fb07aa 100644
--- a/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.d.ts
+++ b/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.d.ts
@@ -52,6 +52,10 @@ export function EventsOnce(eventName: string, callback: (...data: any) => void):
// unregisters the listener for the given event name.
export function EventsOff(eventName: string): void;
+// [EventsOffAll](https://wails.io/docs/reference/runtime/events#eventsoffall)
+// unregisters all event listeners.
+export function EventsOffAll(): void;
+
// [LogPrint](https://wails.io/docs/reference/runtime/log#logprint)
// logs the given message as a raw message
export function LogPrint(message: string): void;
diff --git a/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.js b/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.js
index 2c3dafcc3..b5ae16d56 100644
--- a/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.js
+++ b/v2/pkg/templates/templates/vue/frontend/wailsjs/runtime/runtime.js
@@ -48,6 +48,10 @@ export function EventsOff(eventName) {
return window.runtime.EventsOff(eventName);
}
+export function EventsOffAll() {
+ return window.runtime.EventsOffAll();
+}
+
export function EventsOnce(eventName, callback) {
EventsOnMultiple(eventName, callback, 1);
}
diff --git a/website/docs/reference/runtime/events.mdx b/website/docs/reference/runtime/events.mdx
index b9a6196e2..909cb79e9 100644
--- a/website/docs/reference/runtime/events.mdx
+++ b/website/docs/reference/runtime/events.mdx
@@ -23,6 +23,13 @@ This method unregisters the listener for the given event name, optionally multip
Go: `EventsOff(ctx context.Context, eventName string, additionalEventNames ...string)`
JS: `EventsOff(eventName string, ...additionalEventNames)`
+### EventsOffAll
+
+This method unregisters all event listeners.
+
+Go: `EventsOffAll(ctx context.Context)`
+JS: `EventsOffAll()`
+
### EventsOnce
This method sets up a listener for the given event name, but will only trigger once. It returns a function to cancel
diff --git a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/runtime/events.mdx b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/runtime/events.mdx
index 91cb7adeb..b3d3c0d65 100644
--- a/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/runtime/events.mdx
+++ b/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/reference/runtime/events.mdx
@@ -18,6 +18,13 @@ This method unregisters the listener for the given event name, optionally multip
Go: `EventsOff(ctx context.Context, eventName string, additionalEventNames ...string)`
JS: `EventsOff(eventName string, ...additionalEventNames)`
+### EventsOffAll 移除所有事件侦听器
+
+此方法注销所有事件侦听器。
+
+Go: `EventsOffAll(ctx context.Context)`
+JS: `EventsOffAll()`
+
### EventsOnce 添加只触发一次的事件侦听器
此方法为给定的事件名称设置一个侦听器,但只会触发一次。 它返回 一个函数来取消侦听器。
diff --git a/website/src/pages/changelog.mdx b/website/src/pages/changelog.mdx
index c7f28460a..01fa47a69 100644
--- a/website/src/pages/changelog.mdx
+++ b/website/src/pages/changelog.mdx
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
+- Fixed missing `EventsOffAll` in runtime templates for all frontend frameworks [#4883](https://github.com/wailsapp/wails/pull/4883) by @narcilee7
- Fixed Linux crash on panic in JS-bound Go methods due to WebKit overriding signal handlers [#3965](https://github.com/wailsapp/wails/issues/3965) by @leaanthony
- Fixed code block range in "How Does It Work?" documentation [#4884](https://github.com/wailsapp/wails/pull/4884) by @msal4
- Fixed WebView crash on macOS 26 (Tahoe) during rapid UI updates [#4592](https://github.com/wailsapp/wails/issues/4592) by @leaanthony