mirror of
https://github.com/heyman/heynote.git
synced 2024-11-26 01:44:05 +01:00
13 lines
334 B
JavaScript
13 lines
334 B
JavaScript
|
import { app, ipcMain } from "electron"
|
||
|
import CONFIG from "../config"
|
||
|
|
||
|
export function getVersionString() {
|
||
|
let versionString = app.getVersion()
|
||
|
if (CONFIG.get("settings.allowBetaVersions")) {
|
||
|
versionString += " (beta channel)"
|
||
|
}
|
||
|
return versionString
|
||
|
}
|
||
|
|
||
|
ipcMain.handle("getVersion", () => getVersionString())
|