This commit is contained in:
Mr. Stallion 2020-10-04 16:50:28 -05:00
parent 317d7970be
commit f95dfcc7af
6 changed files with 28 additions and 13 deletions

View File

@ -1,5 +1,13 @@
# Changelog
## 1.1.0
* Upgraded to Electron 10.x
* Added Furaffinity image previews (non-adult only)
* Added support for species-fluid characters
* Fixed logging out and then logging in with a new character breaking character comparison
* Fixed friends list not updating character status
## 1.0.2
* Fixed a caching issue that caused cache misses on character page metadata
* Fixed rate limit issues that sometimes disconnected characters when multiple characters were connected

View File

@ -1,7 +1,7 @@
# Download
[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.0.2/F-Chat-Rising-v1.0.2-win.exe) (68 MB)
| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.0.2/F-Chat-Rising-v1.0.2-macos.dmg) (72 MB)
| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.0.2/F-Chat-Rising-v1.0.2-linux.AppImage) (74 MB)
[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.1.0/F-Chat-Rising-v1.1.0-win.exe) (68 MB)
| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.1.0/F-Chat-Rising-v1.1.0-macos.dmg) (72 MB)
| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.1.0/F-Chat-Rising-v1.1.0-linux.AppImage) (74 MB)
# F-Chat Rising
@ -91,6 +91,13 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0
1. 'Underage' kink is considered to apply to characters aged 16 or above; 'ageplay' kink is considered to apply to characters aged 16 or below.
1. 'Older characters' and 'younger characters' kink preferences are interpreted as age difference of 8+ years.
1. Comparison results will get faster over time, as more and more character data is cached.
1. If you have a species-fluid character (e.g. you play both your character as both a human and an anthro), you can indicate this by setting your **species** in your character profile in the following ways. F-List Rising will then score you against the best fitting type.
* Human or tiger
* Human, tiger, or dragon
* Anthro (Horse or Tiger)
* Dragon (Dwarf, Elf, or Human)
* Elf (optionally vampire or dwarf)
* Feline (optionally horse, tiger, or elf)
## Todo / Ideas

View File

@ -49,12 +49,12 @@ theme: jekyll-theme-slate
changelog: https://github.com/mrstallion/fchat-rising/blob/master/CHANGELOG.md
download:
version: v1.0.2
win_url: https://github.com/mrstallion/fchat-rising/releases/download/v1.0.2/F-Chat-Rising-v1.0.2-win.exe
version: v1.1.0
win_url: https://github.com/mrstallion/fchat-rising/releases/download/v1.1.0/F-Chat-Rising-v1.1.0-win.exe
win_size: 68 MB
mac_url: https://github.com/mrstallion/fchat-rising/releases/download/v1.0.2/F-Chat-Rising-v1.0.2-macos.dmg
mac_url: https://github.com/mrstallion/fchat-rising/releases/download/v1.1.0/F-Chat-Rising-v1.1.0-macos.dmg
mac_size: 72 MB
linux_url: https://github.com/mrstallion/fchat-rising/releases/download/v1.0.2/F-Chat-Rising-v1.0.2-linux.AppImage
linux_url: https://github.com/mrstallion/fchat-rising/releases/download/v1.1.0/F-Chat-Rising-v1.1.0-linux.AppImage
linux_size: 74 MB

View File

@ -1,6 +1,6 @@
{
"name": "fchat",
"version": "1.0.2",
"version": "1.1.0",
"author": "The F-List Team and Mister Stallion (Esq.)",
"description": "F-List.net Chat Client",
"main": "main.js",
@ -11,8 +11,8 @@
"build:dist": "node ../webpack production",
"watch": "node ../webpack watch",
"start": "../node_modules/.bin/electron app",
"startDebugMain": "../node_modules/.bin/electron --serve --inspect-brk=9229 app",
"startDebugRender": "../node_modules/.bin/electron --remote-debugging-port=9229 app",
"startDebugMain": "export ELECTRON_ENABLE_LOGGING=1 && ../node_modules/.bin/electron --serve --inspect-brk=9229 app",
"startDebugRender": "export ELECTRON_ENABLE_LOGGING=1 && ../node_modules/.bin/electron --remote-debugging-port=9229 app",
"pack": "node ./pack"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "f-list-rising",
"version": "1.0.2",
"version": "1.1.0",
"author": "The F-List Team and and Mister Stallion (Esq.)",
"description": "A heavily modded F-Chat 3.0 client for F-List",
"license": "MIT",

View File

@ -5,8 +5,8 @@
"description": "F-Chat Themes",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"bootstrap": "^4.5.0",
"@fortawesome/fontawesome-free": "^5.15.0",
"bootstrap": "^4.5.2",
"node-sass": "^4.14.1"
},
"scripts": {