An archived copy of F-Chat Rising before deletion. Many thanks to FireUnderTheMountain on GitHub for having a up-to-date copy. Don't delete your code. People depend on it.
Go to file
Mr. Stallion 68097817d5 Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
bbcode Fixed warnings 2019-07-06 11:49:19 -05:00
chat Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
components Fixed warnings 2019-07-06 11:49:19 -05:00
electron Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
fchat Highlight ad matches 2019-07-06 20:37:15 -05:00
learn Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
mobile 3.0.10 2019-01-03 18:38:17 +01:00
scss Expand / minimize custom tags; better character image view; better guestbook view; mouseover preview on character profile links 2019-06-23 16:15:21 -05:00
site Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
tslint 3.0.10 2019-01-03 18:38:17 +01:00
webchat 3.0.10 2019-01-03 18:38:17 +01:00
.gitignore Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
LICENSE 0.2.19 - Lots of polish for stable release. 2018-04-08 02:22:32 +02:00
interfaces.ts 3.0.10 2019-01-03 18:38:17 +01:00
keys.ts 0.2.17 - Webpack 4, Bootstrap 4, remove jquery 2018-03-04 04:36:20 +01:00
package-lock.json Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
package.json Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
readme.md Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00
tsconfig.json Refactored with better posting rules 2019-06-07 14:31:42 -05:00
tslint.json Fixed warnings 2019-07-06 11:49:19 -05:00
webpack.js 0.2.17 - Webpack 4, Bootstrap 4, remove jquery 2018-03-04 04:36:20 +01:00
yarn.lock Switched to IndexedDb cache for profiles 2019-07-08 14:08:16 -05:00

readme.md

F-Chat Ascending

This repository contains a modified version of the mainline F-Chat 3.0 client.

Key Differences

  • Ad auto-posting
    • Manage channel's ad settings via "Tab Settings"
    • Automatically re-post ads every 11-18 minutes (randomized) for up to 180 minutes
    • Rotate multiple ads on a single channel
  • Ad Rating
    • LFP ads are automatically rated and matched against your profile
  • Link previews
    • Hover cursor over any [url] to see a preview of it
    • Middle click any [url] to turn the preview into a sticky / interactive mode
  • Profile
    • Kinks are auto-compared when profile is loaded
    • Custom kink explanations can be expanded inline
    • Custom kinks are highlighted
    • Gender, anthro/human preference, age, and sexual preference are highlighted if compatible or incompatible
    • Guestbook, friend, and group counts are visible on tabs
    • Character images are expanded inline
    • Cleaner presentation for the side bar details (age, etc.), sorted in most relevant order
    • Less informative side bar details (views, contact) are separated and shown in a less prominent way
    • Cleaner guestbook view

Todo / Ideas

  • Preview mode should allow detaching from the main window
  • Split chat view
  • Improvements to log browsing
  • Highlight ads from characters most interesting to you
  • Fix broken BBCode, such as [big] in character profiles
  • Ad cache, so you can find your chat partners ads easily (channel names too)
  • Which channels my chart partner is on?
  • Profile doesn't scroll back up

F-List Exported

This repository contains the open source parts of F-list and F-Chat 3.0. All necessary files to build F-Chat 3.0 as an Electron, mobile or web application are included.

Setting up a Dev Environment

  • Clone the repo
  • Install Yarn
  • Change into the cloned directory and run yarn install. If you only want to make a custom theme, you do not need to do this!
  • IntelliJ IDEA is recommended for development.

Building for Electron

  • To build native Node assets, you will need to install Python 2.7 and the Visual C++ 2015 Build tools. More information can be found in the node-gyp docs.
  • Change into the electron directory.
  • Run yarn build/yarn watch to build assets. They are placed into the app directory.
  • Run yarn start to start the app in debug mode. Use Ctrl+Shift+I to open the Chromium debugger.

Building on Windows

npm install --global --production windows-build-tools
npm install --global --production --vs2015 --add-python-to-path windows-build-tools
npm install --global --production --add-python-to-path windows-build-tools node-gyp

Packaging

See https://electron.atom.io/docs/tutorial/application-distribution/

  • Run yarn build:dist to create a minified production build.
  • Run yarn run pack. The generated installer is placed into the dist directory.
    • On Windows you can add the path to and password for a code signing certificate as arguments.
    • On Mac you can add your code signing identity as an argument. zip is required to be installed.
    • On Linux you can add a GPG key for signing and its password as arguments. mksquashfs and zsyncmake are required to be installed.

Building for Mobile

  • Change into the mobile directory.
  • Run yarn build/yarn watch to build assets. They are placed into the www directory.
  • For Android, change into the android directory and run ./gradlew assembleDebug. The generated APK is placed into app/build/outputs/apk.
  • For iOS, change into the ios directory and open F-Chat.xcodeproj using XCode. From there, simply run the app using the play button.

Building for Web

  • Change into the webchat directory.
  • Run yarn build/yarn watch to build assets. They are placed into the dist directory.
  • The compiled main.js file can be included by an HTML file that is expected to provide a global const chatSettings: {account: string, theme: string, characters: ReadonlyArray<string>, defaultCharacter: string | null};. It should also normalize the page to 100% height.

Building a custom theme

See the wiki for instructions on how to create a custom theme.

  • Change into the scss directory.
  • Run yarn install.
  • Run yarn build themes/chat/{name}.scss.
  • Your theme file will be placed into the scss/css directory.

Dependencies

Note: Adding and upgrading dependencies should only be done with prior consideration and subsequent testing.

That's why yarn.lock exists and is version controlled.

To upgrade NPM dependencies, run yarn upgrade locally. Run yarn outdated to see pending upgrades.