From d2c82313772be653653a6898ebbf8b5deb27d6cb Mon Sep 17 00:00:00 2001 From: makeworld Date: Thu, 2 Jul 2020 14:36:41 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20TOFU=20popup=20has=20question=20?= =?UTF-8?q?mark=20now?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ display/modals.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a68e2c..13e9719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Selected link URL is displayed in the bottom bar (#24) - Pressing Ctrl-T with a link selected opens it in a new tab (#27) - Writing `new:N` in the bottom bar will open link number N in a new tab (#27) +- Quote lines are now in italics (#28) ### Changed - Bottom bar now says `URL/Num./Search: ` when space is pressed @@ -30,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Reloading the new tab page doesn't cause an error popup - Help table cells are hardwrapped so the text can still be read entirely on an 80-column terminal - New tab text is wrapped to terminal width like other pages (#31) +- TOFU "continue anyway" popup has a question mark at the end ## [1.1.0] - 2020-06-24 ### Added diff --git a/display/modals.go b/display/modals.go index 3916bf3..b6fa971 100644 --- a/display/modals.go +++ b/display/modals.go @@ -212,7 +212,7 @@ func Tofu(host string) bool { yesNoModal.SetBackgroundColor(tcell.ColorBlack) } yesNoModal.SetText( - fmt.Sprintf("%s's certificate has changed, possibly indicating an security issue. Are you sure you want to continue?", host), + fmt.Sprintf("%s's certificate has changed, possibly indicating an security issue. Are you sure you want to continue? ", host), ) tabPages.ShowPage("yesno") tabPages.SendToFront("yesno")