From 445be96e467a959aff6dc8aaf75ca8751ce6f2d7 Mon Sep 17 00:00:00 2001 From: makeworld Date: Wed, 4 Nov 2020 21:31:08 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Ready=20for=20v1.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- README.md | 3 +-- THANKS.md | 13 +++++++++++++ amfora.go | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 THANKS.md diff --git a/CHANGELOG.md b/CHANGELOG.md index aea2dc2..d1e46be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [v1.6.0] - 2020-11-04 ### Added - **Support client certificates** through config (#112) - `ansi` config setting, to disable ANSI colors in pages (#79, #86) diff --git a/README.md b/README.md index 632a959..cea0ac0 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Features in *italics* are in the master branch, but not in the latest release. - Disabled by default, enable in config - [x] Proxying - Schemes like Gopher or HTTP can be proxied through a Gemini server -- [x] *Client certificate support* +- [x] Client certificate support - [ ] Full client certificate UX within the client - Create transient and permanent certs within the client, per domain - Manage and browse them @@ -144,7 +144,6 @@ On Windows, the file is in `%APPDATA%\amfora\config.toml`, which usually expands ## Known Bugs - Pasting on Windows is truncated, the full paste content won't be added. ([#43](https://github.com/makeworld-the-better-one/amfora/issues/43)) -- ANSI codes aren't displaying properly ([#59](https://github.com/makeworld-the-better-one/amfora/issues/59)) You can also check out [all the issues with the bug label](https://github.com/makeworld-the-better-one/amfora/issues?q=is%3Aopen+is%3Aissue+label%3Abug). diff --git a/THANKS.md b/THANKS.md new file mode 100644 index 0000000..0e093f4 --- /dev/null +++ b/THANKS.md @@ -0,0 +1,13 @@ +# THANKS + +Thank you to the following contributors, who have helped make Amfora great. FOSS projects are a community effort, and we would be worse off without you. + +- Sotiris Papatheodorou (@sotpapathe) +- Chloe Kudryavtsev (@CosmicToast) +- Adrian Hesketh (@a-h) +- Jansen Price (@sumpygump) +- Alex Wennerberg (@alexwennerberg) +- Timur Ismagilov (@bouncepaw) +- Matt Caroll (@ohiolab) +- Patryk Niedźwiedziński (@pniedzwiedzinski) +- Trevor Slocum (@tsclocum) \ No newline at end of file diff --git a/amfora.go b/amfora.go index 80d6115..8c58a73 100644 --- a/amfora.go +++ b/amfora.go @@ -9,7 +9,7 @@ import ( ) var ( - version = "1.5.0" + version = "v1.6.0" commit = "unknown" builtBy = "unknown" )