diff --git a/README.md b/README.md index 2a37e82..f95b91c 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ This is Windows 98, running in an [Electron](https://electronjs.org/) app. Yes, Interested in Electron? Join as at [CovalenceConf](http://covalenceconf.com) in San Francisco! ## Downloads -| | Windows | macOS | Linux | -|---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| Standalone Download | 📦[Standalone, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-ia32-1.3.0.zip)
📦[Standalone, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-x64-1.3.0.zip) | | 📦[Standalone, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-linux-ia32-1.3.0.zip)
📦[Standalone, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-linux-x64-1.3.0.zip) | -| Installer | 💽[Setup, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-1.3.0-setup-x64.exe) | | 💽[deb, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98_1.3.0_amd64.deb)
💽[deb, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98_1.3.0_i386.deb)
💽[rpm, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-1.3.0.x86_64.rpm)
💽[rpm, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-1.3.0.i386.rpm) | +| | Windows | macOS | Linux | +| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Standalone Download | 📦[Standalone, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-ia32-1.3.0.zip)
📦[Standalone, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-x64-1.3.0.zip) | | 📦[Standalone, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-linux-ia32-1.3.0.zip)
📦[Standalone, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-linux-x64-1.3.0.zip) | +| Installer | 💽[Setup, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-1.3.0-setup-ia32.exe)
💽[Setup, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-win32-1.3.0-setup-x64.exe) | | 💽[deb, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98_1.3.0_amd64.deb)
💽[deb, 32-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98_1.3.0_i386.deb)
💽[rpm, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-1.3.0.x86_64.rpm)
💽[rpm, 64-bit](https://github.com/liudonghua123/windows98/releases/download/v1.3.0/windows98-1.3.0.i386.rpm) | ![Screenshot](https://user-images.githubusercontent.com/1426799/44532591-4ceb3680-a6a8-11e8-8c2c-bc29f3bfdef7.png) diff --git a/forge.config.js b/forge.config.js index fcf91a6..8c8db01 100644 --- a/forge.config.js +++ b/forge.config.js @@ -21,16 +21,18 @@ module.exports = { { name: '@electron-forge/maker-squirrel', platforms: ['win32'], - config: { - name: 'windows98', - authors: 'Donghua Liu', - exe: 'windows98.exe', - noMsi: true, - remoteReleases: '', - setupExe: `windows98-win32-${package.version}-setup-${process.arch}.exe`, - setupIcon: path.resolve(__dirname, 'assets', 'icon.ico'), - certificateFile: process.env.WINDOWS_CERTIFICATE_FILE, - certificatePassword: process.env.WINDOWS_CERTIFICATE_PASSWORD + config: (arch) => { + return { + name: 'windows98', + authors: 'Donghua Liu', + exe: 'windows98.exe', + noMsi: true, + remoteReleases: '', + setupExe: `windows98-win32-${package.version}-setup-${arch}.exe`, + setupIcon: path.resolve(__dirname, 'assets', 'icon.ico'), + certificateFile: process.env.WINDOWS_CERTIFICATE_FILE, + certificatePassword: process.env.WINDOWS_CERTIFICATE_PASSWORD + } } }, {