Resolve VEH memo, app id and set version.

This commit is contained in:
Patrick Fic
2025-04-25 09:20:19 -07:00
parent 8445e40ebf
commit ea0b899ea6
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "bodyshop-desktop", "name": "bodyshop-desktop",
"version": "0.0.1-alpha.6", "version": "0.0.1-alpha.7",
"description": "Shop Management System Partner", "description": "Shop Management System Partner",
"main": "./out/main/index.js", "main": "./out/main/index.js",
"author": "Convenient Brands, LLC", "author": "Convenient Brands, LLC",

View File

@@ -41,7 +41,7 @@ const DecodeVeh = async (
`Could not find any VEH files at ${extensionlessFilePath}`, `Could not find any VEH files at ${extensionlessFilePath}`,
); );
} }
dbf = await DBFFile.open(filePath); dbf = await DBFFile.open(filePath, { readMode: "loose" });
} catch (error) { } catch (error) {
log.error("Error opening VEH File.", errorTypeCheck(error)); log.error("Error opening VEH File.", errorTypeCheck(error));
throw error; throw error;

View File

@@ -334,7 +334,7 @@ app.whenReady().then(async () => {
// and ignore CommandOrControl + R in production. // and ignore CommandOrControl + R in production.
// see https://github.com/alex8088/electron-toolkit/tree/master/packages/utils // see https://github.com/alex8088/electron-toolkit/tree/master/packages/utils
if (platform.isWindows) { if (platform.isWindows) {
app.setAppUserModelId(app.name); app.setAppUserModelId("Shop Partner");
} }
app.on("browser-window-created", (_, window) => { app.on("browser-window-created", (_, window) => {