No description
Find a file
2020-03-01 11:40:53 +01:00
accounts Match tags case-insensitively 2020-03-01 10:51:56 +01:00
assets Create telephant.desktop 2019-05-27 12:53:42 +02:00
qml Remove debug output on shutdown 2020-03-01 11:40:53 +01:00
.gitignore Renamed app to Telephant 2019-05-09 16:33:26 +02:00
.travis.yml Only download the deps, don't try to build them outside the Docker env on Travis 2019-05-02 12:27:55 +02:00
attachmentmodel.go Update to be compatible with latest Qt bindings 2019-09-04 04:27:37 +02:00
bridges.go Added support for attaching images to posts 2019-05-19 08:09:37 +02:00
config.go Store and restore window state on startup 2019-05-19 04:33:37 +02:00
events.go Support delete events from Mastodon 2019-05-23 15:24:37 +02:00
LICENSE Initial commit 2017-08-27 19:16:56 +02:00
messagemodel.go Use a regularly incrementing iota 2020-02-28 12:58:35 +01:00
messagestore.go Remove debug output 2020-02-28 12:41:42 +01:00
notifications.go Use logger and add debug flag for extra output 2020-02-28 12:12:48 +01:00
notifications_stub.go Fixed build tags for notifications stub 2019-06-09 05:12:32 +02:00
panemodel.go Update to be compatible with latest Qt bindings 2019-09-04 04:27:37 +02:00
README.md Updated feature list in README 2019-06-02 15:50:13 +02:00
telephant.go Use logger and add debug flag for extra output 2020-02-28 12:12:48 +01:00

Telephant!

A lightweight but modern Mastodon client, written in Go & QML.

telephant logo

Features

  • Live feed via Mastodon's Streaming API
  • Multi pane support
  • Linux/macOS/Windows (Android & iOS should be working, but aren't tested yet)
  • Media previews
  • Shortened URL resolving
  • System notifications
  • Multiple accounts (work-in-progress)
  • Support for more networks

Installation

Packages & Installers

From Source

Make sure you have a working Go environment (Go 1.9 or higher is required). See the install instructions.

You will also need Qt5 and its development headers installed.

Dependencies

Before you can build Telephant you need to install the Go/Qt bindings.

Qt5 dependencies (Ubuntu example)

apt-get --no-install-recommends install build-essential libglib2.0-dev libglu1-mesa-dev libpulse-dev
apt-get --no-install-recommends install libqt*5-dev qt*5-dev qt*5-doc-html qml-module-qtquick*

Building Telephant

export QT_PKG_CONFIG=true
go get -u -v -tags=no_env github.com/therecipe/qt/cmd/...
go get -d -u -v github.com/muesli/telephant
cd $(go env GOPATH)/src/github.com/muesli/telephant
$(go env GOPATH)/bin/qtdeploy build desktop .

Within a Docker container

Follow the build instructions above, but instead of the last command, run:

$(go env GOPATH)/bin/qtdeploy -docker build linux

Run it

./deploy/linux/telephant

telephant Screenshot

Development

GoDoc Build Status Go ReportCard