- Downloads-Pfad von relativem App-Pfad auf DATA_DIR/downloads geändert - Electron package.json: author Feld ergänzt (Squirrel-Requirement) - forge.config.js: fehlende Icon-Referenzen entfernt Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
390 B
JavaScript
21 lines
390 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
packagerConfig: {
|
|
name: 'Gaming Hub',
|
|
executableName: 'gaming-hub',
|
|
asar: true,
|
|
},
|
|
makers: [
|
|
{
|
|
name: '@electron-forge/maker-squirrel',
|
|
config: {
|
|
name: 'gaming-hub-desktop',
|
|
},
|
|
},
|
|
{
|
|
name: '@electron-forge/maker-zip',
|
|
platforms: ['win32', 'linux', 'darwin'],
|
|
},
|
|
],
|
|
};
|