Resolve VEH memo, app id and set version.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user