A GoToSocial client for the terminal.
Find a file
Dan Anglin eb016b96e9
fix(BREAKING): update poll interaction
Summary:

This commit updates and enhances poll interaction. From now on users
will interact with a poll via the status that contains it. Direct
interaction with the poll (via the poll's ID) is no longer supported.
This helps resolve an issue where it wasn't possible to find the owner
of the poll when interacting with it directly.

Changes:

- Users can no longer view a poll directly using the Poll ID.
  Instead polls can be viewed when viewing statuses or timelines.
- More details about a poll is shown in statuses and timelines.
- Votes are now added to polls via statuses.
- Poll results are hidden unless the following conditions are met.
    - The user is the owner of the poll.
    - The poll has expired.
    - The user has already voted in the poll.
- Enbas can now detect and stop a poll owner from voting in their own
  poll.
- When a status is created Enbas will now only print the ID of the
  created status instead of the whole thing.

PR: apollo/enbas#43

Resolves apollo/enbas#39
2024-08-14 11:29:30 +01:00
__build feat: allow users to specify the config directory 2024-05-22 23:30:09 +01:00
assets/images chore: REUSE.toml 2024-08-01 04:01:38 +01:00
cmd feat: add Enbas CLI schema and code generator 2024-08-13 14:53:26 +01:00
docs fix(BREAKING): update poll interaction 2024-08-14 11:29:30 +01:00
internal fix(BREAKING): update poll interaction 2024-08-14 11:29:30 +01:00
LICENSES chore: make the project REUSE compliant 2024-06-02 07:53:13 +01:00
magefiles feat: add Enbas CLI schema and code generator 2024-08-13 14:53:26 +01:00
schema fix(BREAKING): update poll interaction 2024-08-14 11:29:30 +01:00
.gitattributes chore: make the project REUSE compliant 2024-06-02 07:53:13 +01:00
.gitignore chore: make the project REUSE compliant 2024-06-02 07:53:13 +01:00
.golangci.yaml feat: add configuration support to enbas 2024-06-25 12:39:39 +01:00
go.mod chore: set minimum go version to 1.22.6 2024-08-09 09:31:51 +01:00
go.sum chore: bump golang.org/x/net from 0.21.0 to 0.26.0 2024-06-10 10:17:02 +01:00
README.md chore: REUSE.toml 2024-08-01 04:01:38 +01:00
REUSE.toml chore: REUSE.toml 2024-08-01 04:01:38 +01:00

Enbas

Overview

Enbas is a GoToSocial client for your terminal written in Go.

The project is in its early stages of development so expect bugs, breaking changes and limited functionality. At this time it is not recommended for use this with your production GoToSocial instances.

Repository mirrors

Enbas is actively developed in Code Flow with the main branch mirrored to the following forges:

Documentation

Licensing

The licensing information associated with each file is specified in the REUSE.toml file, but in general:

  • All original source code is licensed under GPL-3.0-or-later.
  • All documentation is licensed under CC-BY-4.0.

Inspirations

This project was inspired by the following projects:

  • madonctl: A Mastodon CLI client written in Go.
  • tut: A Mastodon TUI written in Go.
  • toot: A Mastodon CLI and TUI written in Python.