From 9f5c9d568dc9b7b98468c8e190a7dc132bb6ac28 Mon Sep 17 00:00:00 2001 From: Mikhail Kiselev Date: Tue, 10 Feb 2026 15:54:54 +0300 Subject: [PATCH] chore: update wails bindings --- frontend/wailsjs/go/models.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index fea90fe..482e066 100755 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -441,6 +441,7 @@ export namespace updater { releaseNotes: string; downloadURL: string; downloadSize: number; + isRebuild: boolean; static createFrom(source: any = {}) { return new UpdateInfo(source); @@ -454,6 +455,7 @@ export namespace updater { this.releaseNotes = source["releaseNotes"]; this.downloadURL = source["downloadURL"]; this.downloadSize = source["downloadSize"]; + this.isRebuild = source["isRebuild"]; } }