1
0
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:
2023-06-06 21:52:02 +02:00
committed by GitHub
parent 775e4d98d8
commit b29b534b2f
11 changed files with 51 additions and 8 deletions

View File

@ -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"];