📝 Add shields

This commit is contained in:
makeworld 2020-06-18 17:23:54 -04:00
parent d3a77e4338
commit 9abb5ee27f
3 changed files with 8 additions and 3 deletions

View File

@ -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.

View File

@ -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")

View File

@ -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() {