minor fix
This commit is contained in:
parent
bf0590d2a0
commit
5c887b3f17
|
@ -7,6 +7,9 @@
|
|||
* Notify when bookmark/friend says something on a channel?
|
||||
* Clicking a log entry opens the conversation at that point
|
||||
|
||||
## 1.27.1
|
||||
* Fixed build error
|
||||
|
||||
## 1.27.0
|
||||
* '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))
|
||||
|
|
|
@ -51,7 +51,7 @@ changelog: https://github.com/hearmeneigh/fchat-rising/blob/master/CHANGELOG.md
|
|||
installurl: https://github.com/hearmeneigh/fchat-rising/wiki
|
||||
|
||||
download:
|
||||
version: 1.27.0
|
||||
version: 1.27.1
|
||||
|
||||
url: https://github.com/hearmeneigh/fchat-rising/releases/latest/download/F-Chat-Rising-%PLATFORM_TAIL%
|
||||
|
||||
|
|
|
@ -81,10 +81,10 @@ export class BlockerIntegration {
|
|||
// Temp fix -- manually override adblocker's preload script
|
||||
// to point to CJS that has been copied over with config in webpack.config.js
|
||||
// require.resolve('@cliqz/adblocker-electron-preload');
|
||||
const preloadScript = path.join(electron.app.getAppPath(), './preview/assets/adblocker/preload.cjs.js');
|
||||
const preloadScript = path.join(electron.app.getAppPath(), './preview/assets/adblocker/preload.cjs');
|
||||
|
||||
// const originPath = require.resolve('@cliqz/adblocker-electron-preload');
|
||||
// const preloadScript = path.resolve(path.dirname(originPath), 'preload.cjs.js');
|
||||
// const preloadScript = path.resolve(path.dirname(originPath), 'preload.cjs');
|
||||
log.debug('adblock.preload.path', { finalPath: preloadScript /*, originPath */ });
|
||||
|
||||
log.debug('adblock.preloaders.original', { loaders: session.getPreloads() });
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fchat",
|
||||
"version": "1.27.0",
|
||||
"version": "1.27.1",
|
||||
"author": "The F-List Team and Mister Stallion (Esq.)",
|
||||
"description": "F-List.net Chat Client",
|
||||
"main": "main.js",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "f-list-rising",
|
||||
"version": "1.27.0",
|
||||
"version": "1.27.1",
|
||||
"author": "The F-List Team and and Mister Stallion (Esq.)",
|
||||
"description": "A heavily modded F-Chat 3.0 client for F-List",
|
||||
"license": "MIT",
|
||||
|
|
Loading…
Reference in New Issue