Skip to content

Commit

Permalink
Merge pull request #235 from tksh164/fix-forge-config
Browse files Browse the repository at this point in the history
Fix Forge config
  • Loading branch information
tksh164 authored Jan 5, 2025
2 parents b1a758c + 3c2b707 commit 4ea79d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import fs from "fs";
import packageJson from './package.json';
import { THIRD_PARTY_NOTICES_FILE_NAME, SET_MOUSE_CURSOR_POS_EXECUTABLE_FILE_NAME, APP_DEFAULT_SETTINGS_FILE_NAME, APP_ICON_PNG_FILE_NAME } from "./src/main/constants";

const copyright = 'Copyright (C) 2020 ' + packageJson.author.name + '. All rights reserved.';

const config: ForgeConfig = {
packagerConfig: {
asar: true,
Expand All @@ -22,7 +24,7 @@ const config: ForgeConfig = {
InternalName: packageJson.productName,
FileDescription: packageJson.description,
},
appCopyright: 'Copyright (C) 2020 ' + packageJson.author.name + '. All rights reserved.',
appCopyright: copyright,
},
rebuildConfig: {},
makers: [
Expand All @@ -34,7 +36,7 @@ const config: ForgeConfig = {
setupExe: `${packageJson.name}-setup-${packageJson.version}-${arch}.exe`,
setupIcon: './src/assets/appicon.ico',
iconUrl: 'https://raw.githubusercontent.com/tksh164/displayscope/master/src/app/src/assets/appicon.ico',
productName: packageJson.productName,
copyright: copyright,
additionalFiles: [
{
src: THIRD_PARTY_NOTICES_FILE_NAME,
Expand Down

0 comments on commit 4ea79d9

Please sign in to comment.