This commit is contained in:
Mr. Stallion 2024-07-05 17:35:55 -07:00
parent 0d3d111f8c
commit 01c00d14ac
5 changed files with 956 additions and 777 deletions

View File

@ -1,5 +1,19 @@
# Changelog
## Canary
* Add high-quality portraits to Profile Helper
* FBot should always be a UNICORN match
* FBot should have extra buttons to help one-handed
* FBot should show up in Search Results... if online
* Remove broadcasts from logs; maybe into a dialog? where do we store them tho? At least shouldn't orange-highlight all convos
* Update e-icons
* Merge Ad Editor and Post Ads?
* Notify when bookmark/friend says something on a channel?
* Fix image previews (redgifs?)
* Fix Yiffbot portrait updates
* Address scoring issues per FCR Notes
* Clicking a log entry opens the conversation at that point
## 1.26.2
* Fixed a few cases where high-quality portraits were not displayed

View File

@ -13,13 +13,16 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0
### Setting Up
```bash
# Windows only
# Windows only:
npm install --global --production --vs2015 --add-python-to-path windows-build-tools node-gyp
# Ubuntu only
# Ubuntu only:
sudo apt install libsecret-1-dev
# All operating systems
# MacOS only:
brew install python-setuptools
# All operating systems:
git clone https://github.com/hearmeneigh/fchat-rising.git
cd fchat-rising
yarn

View File

@ -659,6 +659,7 @@ export async function testSmartFilterForPrivateMessage(fromChar: Character.Chara
if (
cachedProfile &&
cachedProfile.character.character.name !== 'YiffBot 4000' &&
cachedProfile.match.isFiltered &&
core.state.settings.risingFilter.autoReply &&
!cachedProfile.match.autoResponded
@ -702,6 +703,7 @@ export async function testSmartFilterForPrivateMessage(fromChar: Character.Chara
if (
cachedProfile &&
cachedProfile.character.character.name !== 'YiffBot 4000' &&
cachedProfile.match.isFiltered &&
core.state.settings.risingFilter.hidePrivateMessages &&
firstTime // subsequent messages bypass this filter on purpose

View File

@ -57,7 +57,7 @@
"webpack": "5.8.0"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.26.12",
"@cliqz/adblocker-electron": "~1.26.12",
"jquery": "^3.7.1",
"node-fetch": "^2.7.0"
},
@ -72,6 +72,7 @@
"vue-loader": "15.9.8",
"vue-template-compiler": "2.6.12",
"@types/bluebird": "3.5.32",
"@types/har-format": "1.2.10",
"@types/node": "16.18.32"
},
"scripts": {

1705
yarn.lock

File diff suppressed because it is too large Load Diff