mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-18 05:54:05 +00:00
Show version number in about dialog (#28)
This commit is contained in:
2
frontend/wailsjs/go/models.ts
generated
2
frontend/wailsjs/go/models.ts
generated
@ -4,6 +4,7 @@ export namespace app {
|
||||
arch: string;
|
||||
buildType: string;
|
||||
platform: string;
|
||||
version: string;
|
||||
hasMongoExport: boolean;
|
||||
hasMongoDump: boolean;
|
||||
homeDirectory: string;
|
||||
@ -20,6 +21,7 @@ export namespace app {
|
||||
this.arch = source["arch"];
|
||||
this.buildType = source["buildType"];
|
||||
this.platform = source["platform"];
|
||||
this.version = source["version"];
|
||||
this.hasMongoExport = source["hasMongoExport"];
|
||||
this.hasMongoDump = source["hasMongoDump"];
|
||||
this.homeDirectory = source["homeDirectory"];
|
||||
|
Reference in New Issue
Block a user