FOSS Decentralized chat platform
Go to file
shockrah cb5975f235 FULL REWORK AND PORT TO TERMION
This patch is simply meant to mark the beginning of the newest phase for the tui build.
I've 100% settled on using termion as the backend and marking what is done so far

Renderer side:
	Termion has a similar issue where moving data happens very quietly so its best
	if the two (renderer and cache) have the their data to use as they please

Cache Side:
	Basically we own the data we're using because we constantly have to mutate data
	ourselves

Config in the middle:
	Mutable but only from the rendering side because the cache is completely transient
	It technically to own its data but it does anyway because the render(backend)
	 likes to consume data like there's no tomorrow
2021-03-17 20:39:42 -07:00
chan-like new job for channer build 2021-02-17 17:24:28 -08:00
docs New docs describing new /members/single route 2021-03-05 19:26:11 -08:00
freechat-client messages rebind now work properly and sends message correctly, 2021-03-12 23:16:06 -08:00
invites-manager ignoring sample env file 2020-08-22 18:12:15 -07:00
json-api Query string parameter 'type' is now enforced by the api 2021-03-12 02:17:06 -08:00
misc updated logo 2020-08-02 21:20:49 -07:00
nginx-conf Nginx config notes 2021-02-11 21:04:41 -08:00
rtc-server simple echo server for sake of testing connection-ability 2020-12-06 14:49:46 -08:00
scripts Moving docking script to scripts directory 2021-03-03 17:18:18 -08:00
tui FULL REWORK AND PORT TO TERMION 2021-03-17 20:39:42 -07:00
.gitignore adding tsc to make build 2021-03-12 02:20:33 -08:00
.gitlab-ci.yml Only building wiki if changes are detected 2021-03-03 17:39:55 -08:00
.gitmodules Submodule for wiki theme 2021-02-13 16:58:09 -08:00
contributing.md More background information regarding what can use the help or not 2020-12-12 16:36:40 -08:00
docker-auto-build.sh removing rouge syntax error 2021-02-10 17:45:58 -08:00
LICENSE.txt Updating base license to GPL3 2021-03-03 17:33:00 -08:00
readme.md More background information regarding what can use the help or not 2020-12-12 16:36:40 -08:00

FreeChat

What this is

A FOSS chatting platform that brings in more modern features that a lot of people have come to expect.

Why not just IRC/Discord/Slack/Mumble etc?

A tonne of IRC channel are basically dead since so many have moved to Discord/Slack. Why? Because those platforms have features that IRC just doesn't have. A lot of people have deemed those features worth the switch.

Discord/Slack are proprietary spyware with no real alternative. The quality of the service is high enough for people to ignore the datamining, it's time a proper client came by.

Mumble could work but has an awful reputation amongst regular non-technical users.

So it's a Discord/Slack clone?

Chat history is limited similar to nearly every chan/booru. This can be turned off to preserve all chat history.

The biggest difference is the lack of data collection; servers collect the following data:

  • User id - generated by the server

  • User password - generated by the server

  • User name - provided by user

  • User chat - How much depends on how the server was configured or if a message was pinned to NOT be deleted.

  • Users Status - user is online/offline: HOWEVER this is controlled by the user.

  • User permissions - To discern admins from less privileged users.

Working Status

Is this finished or almost finished?

Short: The API has basic functionality for chatting but still requires more endpoints to be fully featured. So yes the API at least is in a MVP state. But everything else is either in infancy or not done.

Long: No. A basic client is still underway and the chat API is missing a metric tonne of features. However The state of the chat API is such that it shouldn't be hard to implement many of the desired endpoints.

How to help - if you want to

Check the contributing guide