1
0
Fork
You've already forked GoToot
0
No description
  • Go 99.7%
  • Makefile 0.3%
Find a file
2021年06月24日 00:24:55 +02:00
toot Relationships, AccountView: Added Interaction Buttons to OtherAccount, Fields to the AccountView, reworked AccountListing Interaction Buttons 2020年10月15日 20:25:13 +02:00
ui pango: depth check on invisible span-tags, fixed nil-ptr dereference on uiCard 2021年06月24日 00:24:55 +02:00
.gitignore added cache persistance file to gitingores 2019年06月23日 00:48:02 +02:00
go.mod parse the sanitized html to suit pango, bold displayname, fixed links and notes in account view 2021年06月24日 00:14:05 +02:00
go.sum parse the sanitized html to suit pango, bold displayname, fixed links and notes in account view 2021年06月24日 00:14:05 +02:00
LICENSE „LICENSE" hinzufügen 2019年06月22日 16:46:07 +02:00
main.go Mapped out more Account-API calls, httpwrapper, config, ReplyTo Toot, Media-only Account Statuses-View 2020年10月05日 23:18:14 +02:00
Makefile XML parsers suck 2020年10月15日 23:36:02 +02:00
README.md updated Readme 2019年06月22日 15:25:25 +02:00
testmedia.png added media attachments 2019年06月22日 15:23:19 +02:00

Go Toot!

This is a GTK-based Mastodon Client written in Go.

Config-file

Default config file is gotootoot.cfg in / folder. The config file is created automatically if it does not exist.

{
 "Token": {
 /** 
 * Token gotten from oauth2-lib is saved here
 **/
 },
 "ClientId": "<clientID>",
 "ClientSecret": "<clientSecret>",
 "Server": "<server>",
 "Scopes": [
 "read",
 "write"
 ]
}

Build-Time Dependencies

  • golang.org/x/oauth2
  • github.com/gotk3/gotk3

Install with:

go get github.com/gotk3/gotk3/gtk golang.org/x/oauth2