Cheeky fork of Fractal
Find a file
Christopher Davis ef3c619bd6 Add official GNOME Code of Conduct
The GNOME Foundation has adopted a new code of conduct for
all project spaces. Since it applies to us, we should add it to our repository.
2019-10-06 17:00:35 -07:00
.gitlab/issue_templates Add Gitlab issue templates 2017-11-11 13:22:00 +01:00
flatpak flatpak: remove schema path typo migrate 2019-09-23 09:16:48 +02:00
fractal-gtk Make entry editable by default when no power_levels 2019-09-28 10:31:46 +02:00
fractal-matrix-api BKResponse, user: remove error variants and compose over Result instead 2019-09-25 17:49:04 +02:00
hooks rust: stop depending on nightly for fmt 2018-12-13 10:14:59 +00:00
screenshots Update screenshot for 4.0 2018-12-18 21:49:22 +00:00
scripts scripts: make executable 2019-08-01 16:47:13 +00:00
.editorconfig Add .editorconfig 2017-07-12 05:10:43 +10:00
.gitignore build: Build resources with meson instead of build.rs 2019-04-27 16:24:08 +00:00
.gitlab-ci.yml Gitlab CI: use template 2019-09-27 17:01:28 +02:00
.rustfmt.toml Add linter config 2019-01-20 09:27:19 +00:00
Cargo.lock New release 4.2.1 2019-09-21 08:58:13 +02:00
Cargo.toml Cargo: include debug symbols in all build types 2019-09-18 19:20:05 +00:00
code-of-conduct.md Add official GNOME Code of Conduct 2019-10-06 17:00:35 -07:00
fractal.doap Renaming the project to Fractal 2017-11-01 11:30:58 +01:00
LICENSE.txt Added GPLv3 Licence 2017-08-21 19:06:07 +02:00
logo.png Add project logo 2018-02-12 10:04:41 +01:00
meson.build New release 4.2.1 2019-09-21 08:58:13 +02:00
meson_options.txt build: Allow parallel installation 2018-08-24 13:54:47 +05:00
README.md Add official GNOME Code of Conduct 2019-10-06 17:00:35 -07:00
TODO Implemented initial search in room 2017-10-21 10:56:48 +02:00

Fractal

Fractal is a Matrix messaging app for GNOME written in Rust. Its interface is optimized for collaboration in large groups, such as free software projects.

screenshot

Installation instructions

Flatpak is the recommended installation method. You can get the official Fractal Flatpak on Flathub.

Build Instructions

Flatpak

Flatpak is the recommended way of building and installing Fractal.

First you need to make sure you have the GNOME SDK and Rust toolchain installed.

# Add Flathub and the gnome-nightly repo
flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
flatpak remote-add --user --if-not-exists gnome-nightly https://sdk.gnome.org/gnome-nightly.flatpakrepo

# Install the gnome-nightly Sdk and Platform runtime
flatpak install --user gnome-nightly org.gnome.Sdk org.gnome.Platform

# Install the required rust-stable extension from Flathub
flatpak install --user flathub org.freedesktop.Sdk.Extension.rust-stable//19.08

Then you go ahead and build Fractal.

flatpak-builder --user --install fractal flatpak/org.gnome.Fractal.json

GNU/Linux

If you decide to ignore our recommendation and build on your host system, outside of Flatpak, you will need Meson and Ninja (as well as Rust and Cargo).

meson . _build --prefix=/usr/local
ninja -C _build
sudo ninja -C _build install

macOS

brew install gtk+3 dbus bash adwaita-icon-theme
# empirically needs 3.22.19 or later of gtk3+
# ...and run configure as:
/usr/local/bin/bash -c "meson . _build --prefix=/usr/local"
ninja -C _build
sudo ninja -C _build install

Translations

Fractal is translated by the GNOME translation team on Damned lies.

If you want to add a new language you should update the file fractal-gtk/po/LINGUAS and add the code for that language to the list.

Get the pot file from the Fractal module page on Damned lies.

Password Storage

Fractal uses Secret Service to store the password so you should have something providing that service on your system. If you're using GNOME or KDE this should work for you out of the box with gnome-keyring or ksecretservice.

Supported m.room.message (msgtypes)

msgtypes Recv Send
m.text Done Done
m.emote Done Done
m.notice
m.image Done Done
m.file Done Done
m.location
m.video Done Done
m.audio Done Done

Full reference in: https://matrix.org/docs/spec/client\_server/r0.2.0.html#m-room-message-msgtypes

Frequently Asked Questions

  • Does Fractal have encryption support? Will it ever?

Fractal does not currently have encryption support, but there is an initiative for it.

The current effort is to create a monolithic module for Fractal to interact with. Said module will handle all cryptographic tasks. The goal is to reduce the amount of work required for implementing end-to-end encryption by having one thing to interact with, instead of a huge API surface.

Code and further information for this module can be found at World/metaolm.

  • Can I run Fractal with the window closed?

Currently Fractal does not support this. Fractal is a GNOME application, and accordingly adheres GNOME guidelines and paradigms. This will be revisited if or when GNOME gets a "Do Not Disturb" feature.

The origin of Fractal

This project is based on Fest https://github.com/fest-im/fest, formerly called ruma-gtk.

Instead of using RUMA Client, Fractal calls directly to the matrix.org REST API.

The first version of this project was called guillotine, based on French revolution, in relation with the Riot client name, but it's a negative name so we decide to change for a math one.

The name Fractal was proposed by Regina Bíró.

Code of Conduct

Fractal follows the official GNOME Foundation code of conduct. You can read it here.