diff --git a/README.md b/README.md index bbd3241..88892ef 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,12 @@ ![Amfora logo](logo.png) ##### Modified from: amphora by Alvaro Cabrera from the Noun Project -Amfora aims to be the best looking [Gemini](https://gemini.circumlunar.space/) client with the most features... all in the terminal. It does not support Gopher or other non-Web protocols - check out [Bombadillo](http://bombadillo.colorfield.space/) for that. It also aims to be completely cross platform, with full Windows support. +[![go reportcard](https://goreportcard.com/badge/github.com/makeworld-the-better-one/amfora)](https://goreportcard.com/report/github.com/makeworld-the-better-one/amfora) +[![license GPLv3](https://img.shields.io/github/license/makeworld-the-better-one/amfora)](https://www.gnu.org/licenses/gpl-3.0.en.html) + +Amfora aims to be the best looking [Gemini](https://gemini.circumlunar.space/) client with the most features... all in the terminal. It does not support Gopher or other non-Web protocols - check out [Bombadillo](http://bombadillo.colorfield.space/) for that. + +It also aims to be completely cross platform, with full Windows support. If you're on Windows, I would not reccomend using the default terminal software. Maybe use [Cmder](https://cmder.net/) instead? It fully passes Sean Conman's client torture test, with exception of the alternate encodings section, as only UTF-8 and ASCII are supported. It mostly passes the Egsam test. diff --git a/client/tofu.go b/client/tofu.go index 79f77b8..9c4a203 100644 --- a/client/tofu.go +++ b/client/tofu.go @@ -13,7 +13,7 @@ import ( // TOFU implementation. // Stores cert hash and expiry for now, like Bombadillo. -// There is ongoing TOFU discussiong on the mailing list about better +// There is ongoing TOFU discussion on the mailing list about better // ways to do this, and I will update this file once those are decided on. var ErrTofu = errors.New("server cert does not match TOFU database") diff --git a/display/modals.go b/display/modals.go index 49cb5e8..69d2b9d 100644 --- a/display/modals.go +++ b/display/modals.go @@ -42,7 +42,7 @@ var yesNoModal = cview.NewModal(). SetTextColor(tcell.ColorWhite). AddButtons([]string{"Yes", "No"}) -// Channel to recieve yesNo answer on +// Channel to receive yesNo answer on var yesNoCh = make(chan bool) func modalInit() {