Native Gtk client for Lemmy
Go to file
Bnyro b56a8247e1
Add editing comments and posts to working features
2023-06-21 17:00:51 +02:00
src Support for editing comments 2023-06-21 16:36:24 +02:00
.gitignore Ignore cargo config files to drop mold as linker 2023-06-19 07:01:32 +02:00
Cargo.lock Support rendering markdown content 2023-06-19 08:02:44 +02:00
Cargo.toml Support rendering markdown content 2023-06-19 08:02:44 +02:00
Dockerfile Switch Dockerfile to using void linux for better compile times 2023-06-20 11:09:12 +02:00
LICENSE Add gpl-3.0 license 2023-06-18 16:55:09 +02:00
README.md Add editing comments and posts to working features 2023-06-21 17:00:51 +02:00

README.md

lemoa

Native Gtk client for Lemmy (alpha state)

Current state

Under development, not yet ready for daily usage

Working:

  • Selecting lemmy instance
  • Listing trending posts
  • Viewing a post and its comments
  • Viewing profiles
  • Viewing trending communities
  • Searching communities
  • Logging in with an account
  • Writing posts or comments
  • Viewing subscribed posts
  • Following communities
  • Voting for or against posts or comments
  • Editing and deleting posts or comments

Not yet working, but planned to be added soon:

  • Viewing the next pages of posts or communities
  • Private messages

Build dependencies

  • rust
  • cargo
  • libgtk-4-dev

Installation

cargo install --git https://github.com/lemmy-gtk/lemoa.git

You can then start the app via the terminal after adding cargo's bin directory to your PATH variable

lemoa

Development

Clone the repository and run

cargo run

Building with Docker

sudo docker build --no-cache . -t lemoa:latest
CONTAINER_ID=$(sudo docker create --name lemoa -t lemoa:latest)
sudo docker cp $(CONTAINER_ID):/root/lemoa/target/release/lemoa .

Once the build is done, there will be an executable lemoa binary file in your current directory, executing it starts Lemoa 🎉.

License

Lemoa is licensed under the GNU General Public License: You can use, study and share it as you want.