minor
This commit is contained in:
parent
0d3d111f8c
commit
01c00d14ac
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,5 +1,19 @@
|
||||||
# Changelog
|
# 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
|
## 1.26.2
|
||||||
* Fixed a few cases where high-quality portraits were not displayed
|
* Fixed a few cases where high-quality portraits were not displayed
|
||||||
|
|
||||||
|
|
|
@ -13,13 +13,16 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0
|
||||||
|
|
||||||
### Setting Up
|
### Setting Up
|
||||||
```bash
|
```bash
|
||||||
# Windows only
|
# Windows only:
|
||||||
npm install --global --production --vs2015 --add-python-to-path windows-build-tools node-gyp
|
npm install --global --production --vs2015 --add-python-to-path windows-build-tools node-gyp
|
||||||
|
|
||||||
# Ubuntu only
|
# Ubuntu only:
|
||||||
sudo apt install libsecret-1-dev
|
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
|
git clone https://github.com/hearmeneigh/fchat-rising.git
|
||||||
cd fchat-rising
|
cd fchat-rising
|
||||||
yarn
|
yarn
|
||||||
|
|
|
@ -659,6 +659,7 @@ export async function testSmartFilterForPrivateMessage(fromChar: Character.Chara
|
||||||
|
|
||||||
if (
|
if (
|
||||||
cachedProfile &&
|
cachedProfile &&
|
||||||
|
cachedProfile.character.character.name !== 'YiffBot 4000' &&
|
||||||
cachedProfile.match.isFiltered &&
|
cachedProfile.match.isFiltered &&
|
||||||
core.state.settings.risingFilter.autoReply &&
|
core.state.settings.risingFilter.autoReply &&
|
||||||
!cachedProfile.match.autoResponded
|
!cachedProfile.match.autoResponded
|
||||||
|
@ -702,6 +703,7 @@ export async function testSmartFilterForPrivateMessage(fromChar: Character.Chara
|
||||||
|
|
||||||
if (
|
if (
|
||||||
cachedProfile &&
|
cachedProfile &&
|
||||||
|
cachedProfile.character.character.name !== 'YiffBot 4000' &&
|
||||||
cachedProfile.match.isFiltered &&
|
cachedProfile.match.isFiltered &&
|
||||||
core.state.settings.risingFilter.hidePrivateMessages &&
|
core.state.settings.risingFilter.hidePrivateMessages &&
|
||||||
firstTime // subsequent messages bypass this filter on purpose
|
firstTime // subsequent messages bypass this filter on purpose
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
"webpack": "5.8.0"
|
"webpack": "5.8.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cliqz/adblocker-electron": "^1.26.12",
|
"@cliqz/adblocker-electron": "~1.26.12",
|
||||||
"jquery": "^3.7.1",
|
"jquery": "^3.7.1",
|
||||||
"node-fetch": "^2.7.0"
|
"node-fetch": "^2.7.0"
|
||||||
},
|
},
|
||||||
|
@ -72,6 +72,7 @@
|
||||||
"vue-loader": "15.9.8",
|
"vue-loader": "15.9.8",
|
||||||
"vue-template-compiler": "2.6.12",
|
"vue-template-compiler": "2.6.12",
|
||||||
"@types/bluebird": "3.5.32",
|
"@types/bluebird": "3.5.32",
|
||||||
|
"@types/har-format": "1.2.10",
|
||||||
"@types/node": "16.18.32"
|
"@types/node": "16.18.32"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue