Merge remote-tracking branch 'origin/feature/IO-3066-1-scaffolding' into feature/IO-3205-Paint-Scale-Integrations

This commit is contained in:
Dave Richer
2025-04-28 09:25:00 -04:00
5 changed files with 5 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "bodyshop-desktop",
"version": "0.0.1-alpha.5",
"version": "0.0.1-alpha.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "bodyshop-desktop",
"version": "0.0.1-alpha.5",
"version": "0.0.1-alpha.6",
"hasInstallScript": true,
"dependencies": {
"@apollo/client": "^3.13.6",

View File

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

View File

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

View File

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

File diff suppressed because one or more lines are too long