Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hearmeneigh committed Jul 6, 2024
1 parent bf0590d commit 5c887b3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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%

Expand Down
4 changes: 2 additions & 2 deletions electron/blocker/blocker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() });
Expand Down
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 5c887b3

Please sign in to comment.