A Matrix client for the ZMX (ZMatrix) collection of Matrix software. Part of the Zaps project.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tranquillity Codes 19a9284809
Added build instructions to README.md
1 year ago
src Initial commit 1 year ago
.gitignore Added config.json to .gitignore 1 year ago
Cargo.toml Initial commit 1 year ago
LICENSE Initial commit 1 year ago
README.md Added build instructions to README.md 1 year ago

README.md

ZMatrix Client

A native GUI client for the ZMatrix collection of projects.

Implements a client for the Matrix protocol.

Building

Clone the repository

git clone https://gitea.itycodes.org/itycodes/zmx-client.git

Make a config file, filling the homeserver, user, and password fields:

{
    "homeserver": "itycodes.org",
    "user": "ity",
    "password": "ilovecookies"
}

Run cargo run for testing right away, or cargo build to build a debug build, or cargo build --release for a release build.

Builds will be in target/debug/mxclient or target/release/mxclient, for debug and release builds respectively.

More details