diff --git a/CHANGELOG.md b/CHANGELOG.md index 5790699..b5299f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,8 @@ ## Canary * 'Non-binary' kink is now respected in gender matching (credit: [@FatCatClient](https://github.com/FatCatClient)) -* OpenMoji is now treated as a fallback font (credit: [@FatCatClient](https://github.com/FatCatClient)) -* +* OpenMoji is now treated as a fallback font (credit: [@FatCatClient](https://github.com/FatCatClient)) +* Added two new UI themes: 'Dracula', and 'Dark Dimmed' (credit: [@FatCatClient](https://github.com/FatCatClient)) * Add high-quality portraits to Profile Helper * FBot should always be a UNICORN match diff --git a/electron/webpack.config.js b/electron/webpack.config.js index 924c549..f1d8600 100644 --- a/electron/webpack.config.js +++ b/electron/webpack.config.js @@ -125,12 +125,12 @@ const mainConfig = { context: path.resolve(__dirname, '..', 'chat', 'preview', 'assets') }, { - from: path.resolve(__dirname, '..', 'node_modules', '@cliqz', 'adblocker-electron-preload', 'dist', 'preload.cjs.js').replace(/\\/g, '/'), + from: path.resolve(__dirname, '..', 'node_modules', '@cliqz', 'adblocker-electron-preload', 'dist', 'cjs', 'preload.cjs').replace(/\\/g, '/'), to: path.join('preview', 'assets', 'adblocker'), context: path.resolve(__dirname, '..', 'node_modules', '@cliqz', 'adblocker-electron-preload', 'dist') }, { - from: path.resolve(__dirname, '..', 'node_modules', '@cliqz', 'adblocker-electron-preload', 'dist', 'preload.es6.js').replace(/\\/g, '/'), + from: path.resolve(__dirname, '..', 'node_modules', '@cliqz', 'adblocker-electron-preload', 'dist', 'src', 'preload.js').replace(/\\/g, '/'), to: path.join('preview', 'assets', 'adblocker'), context: path.resolve(__dirname, '..', 'node_modules', '@cliqz', 'adblocker-electron-preload', 'dist') },