Pleroma chat client in PyQt5
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
knotteye 4d5b8e6bc1 Bump version to 1.0.3 3 年前
deb/DEBIAN Bump version to 1.0.3 3 年前
.gitignore ignore a thing 3 年前
COPYING Switch to PyQt5 only 3 年前
LICENSE Switch to PyQt5 only 3 年前
Makefile Add new assets and ship with makefile 3 年前
README.md Update linux info 3 年前
audiowidget.py Switch to PyQt5 only 3 年前
fedi.ico Add ico file 3 年前
fedi.svg Initial commit 3 年前
fedi_color.svg Add new assets and ship with makefile 3 年前
installer.cfg Bump version to 1.0.3 3 年前
misc.py Switch to PyQt5 only 3 年前
monkeypatch.py Switch to PyQt5 only 3 年前
notif.wav Add new assets and ship with makefile 3 年前
plchat.py Properly mark chats as read 3 年前
pleroma.py Ask for new 2fa codes when one doesn't work 3 年前
send.svg Initial commit 3 年前
timeconvert.py Switch to PyQt5 only 3 年前
unread.svg Initial commit 3 年前
videowidget.py Switch to PyQt5 only 3 年前
windows.patch Better windows build system using pynsist. Add recipe for installer, 3 年前

README.md

PlChat - A Pleroma Chat Client

Pleroma chat client

Usage

Run the binary or python plchat.py. Log in to your account on the fediverse and start chatting. If your server runs behind a reverse proxy, it will need to proxy websocket connections.

Installation

Installation instructions for PlChat. If you are looking to package this program or build from source, skip to Building From Source or Packaging down below.

Windows

Download and install the k-lite codec pack. The basic version with default options should work fine.

Download the installer from https://pond.waldn.net/plchat/windows/latest.zip extract the zip file. Other versions can be found at, for example, https://pond.waldn.net/plchat/windows/1.0.1.zip . Run the installer.

Linux

A prepackaged deb file is provided in https://git.waldn.net/git/knotteye/plchat/releases as well as a compiled binary for amd64 linux. The precompiled binary was extremely not-portable and did not work well. Use a package or build from source. If you package plchat for your distro, please let me know and I will add it here.

Gentoo: can be found in this overlay

MacOS

Nuitka does not support cross compilation and I do not have a working MacOS machine or VM, but it should theoretically compile and run just fine. Feel free to message me for support, and I'll be glad to link to your site if you host any binaries you build. A macos binary has been provided by ~am. You can find it on the releases page. Run brew install libmagic before running.

Building From Source or Packaging

PlChat comes with a Makefile for compiling to a binary, but it is of course possible to run the source directly with just python plchat.py. The easiest way to package PlChat is just to make sure the dependencies are installed and write a script that sets the appropriate pythonpath and runs plchat.py. Otherwise you can see below for instructions on building the binary.

Runtime Dependencies

You will need the following libraries: PyQt5, Secret Service (on linux or BSD), libmagic (python-magic-bin from pypi on windows), and some codecs for qtmultimedia. The windows codecs can be found above, and on linux you will need gstreamer and some plugins. On gentoo, sudo emerge media-plugins/gst-plugins-base media-plugins/gst-plugins-good media-plugins/gst-plugins-bad media-plugins/gst-plugins-ugly media-plugins/gst-plugins-neon media-plugins/gst-plugins-soup media-plugins/gst-plugins-libav should do. Other distributions are on your own. And, obviously, a copy of python. Python3.5+ is the only thing I will support but other versions may work. End users will need the same version of python used to compile the binary. Other versions may work but this is what nuitka officially supports.

Building

You will need the following packages from pypi: PyQt5, keyring, notify-py, appdirs, python-magic(or python-magic-bin on windows), python-dateutil, requests, urllib3, and websockets. You will also need all runtime dependencies listed above, as well as nuitka3 and a C compiler. Nuitka supports the following compilers:

  • gcc 5.1+ or g++ 4.4+
  • clang on macOS or BSD
  • MinGW64/Visual Studio 2019+/clang-cl on Windows

Cross compilation is not supported so you will need to compile on the OS and architecture that you are targeting.

Once everything is installed and in your path it should be a simple make && sudo make install to build everything. The resulting binary will have it's own copy of all the python build dependencies, which can then be uninstalled or ignored. You can also make systemlibs if you wish, and the resulting binary will rely on system packages for all python modules listed above as build depencies. Nuitka produces very large binaries. UPX works well if you want to reduce the size.