From a732132498315aa48e1c072cc791768fbbe63727 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Wed, 13 May 2020 18:17:28 -0700 Subject: [PATCH 1/6] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca35902..6709e812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * Expansive keyboard controls for the [GitLab](https://wtfutil.com/modules/gitlab/) module, by [@mogensen](https://github.com/mogensen) * [IPInfo](https://wtfutil.com/modules/ipaddress/ipinfo/) module now supports IPv6 lookup, by [@acaloiaro](https://github.com/acaloiaro) * The GitHub repo now runs a set of actions that lint PRs for code quality and conformity and comment in-line on the PRs. See here for action details https://github.com/wtfutil/wtf/actions +* [docker-credential-helpers](https://github.com/docker/docker-credential-helpers) support added to provide optional securing of module secrets, [#517](https://github.com/wtfutil/wtf/issues/517) by [sam-github](https://github.com/sam-github) ### 🐞 Fixed From b49987f9356a36ba4e78409a0d03d5d4384b2bb2 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Wed, 13 May 2020 18:18:18 -0700 Subject: [PATCH 2/6] Add @sam-github as a contributor --- .all-contributorsrc | 7 +++++++ README.md | 1 + 2 files changed, 8 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index afc05f0d..8a53b6f5 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -910,6 +910,13 @@ "name": "Risto Saarelma", "avatar_url": "https://avatars1.githubusercontent.com/u/41840?v=4", "profile": "https://github.com/rsaarelm", + "contributions": [] + }, + { + "login": "sam-github", + "name": "Sam Roberts", + "avatar_url": "https://avatars2.githubusercontent.com/u/17607?v=4", + "profile": "https://sam-github.github.io/", "contributions": [ ] } diff --git a/README.md b/README.md index 5556cb74..9ef31038 100644 --- a/README.md +++ b/README.md @@ -387,6 +387,7 @@ Dependency management in WTF is handled by [Go modules](https://github.com/golan
Tejas Shah


Frederik Mogensen


Risto Saarelma

+
Sam Roberts

💻 From 3a2b1c988afe48af1feba3f491136e2272d34b48 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Wed, 13 May 2020 18:19:21 -0700 Subject: [PATCH 3/6] Add @sam-github as a contributor Signed-off-by: Chris Cummer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ef31038..fc3b04a1 100644 --- a/README.md +++ b/README.md @@ -387,7 +387,7 @@ Dependency management in WTF is handled by [Go modules](https://github.com/golan
Tejas Shah


Frederik Mogensen


Risto Saarelma

-
Sam Roberts

💻 +
Sam Roberts

From cda15e841bace3610ada405881c070d48089f6e0 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Wed, 13 May 2020 19:34:54 -0700 Subject: [PATCH 4/6] Update CHANGELOG.md --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6709e812..2cdbbaa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### ⚡️ Added + +* [docker-credential-helpers](https://github.com/docker/docker-credential-helpers) support added to provide optional securing of module secrets, [#517](https://github.com/wtfutil/wtf/issues/517) by [sam-github](https://github.com/sam-github) + ## v0.30.0 ### ⚡️ Added @@ -9,7 +13,6 @@ * Expansive keyboard controls for the [GitLab](https://wtfutil.com/modules/gitlab/) module, by [@mogensen](https://github.com/mogensen) * [IPInfo](https://wtfutil.com/modules/ipaddress/ipinfo/) module now supports IPv6 lookup, by [@acaloiaro](https://github.com/acaloiaro) * The GitHub repo now runs a set of actions that lint PRs for code quality and conformity and comment in-line on the PRs. See here for action details https://github.com/wtfutil/wtf/actions -* [docker-credential-helpers](https://github.com/docker/docker-credential-helpers) support added to provide optional securing of module secrets, [#517](https://github.com/wtfutil/wtf/issues/517) by [sam-github](https://github.com/sam-github) ### 🐞 Fixed From e43c37cc076d6de73c97056db64da58ad126bc54 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Fri, 15 May 2020 01:39:11 -0700 Subject: [PATCH 5/6] Fix broken gCal title Signed-off-by: Chris Cummer --- modules/gcal/display.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gcal/display.go b/modules/gcal/display.go index 4973a888..5dad4d23 100644 --- a/modules/gcal/display.go +++ b/modules/gcal/display.go @@ -43,7 +43,7 @@ func (widget *Widget) content() (string, string, bool) { timestamp = "" } - title = fmt.Sprintf("[%s]%s", + eventTitle := fmt.Sprintf("[%s]%s", widget.titleColor(calEvent), widget.eventSummary(calEvent, calEvent.ConflictsWith(calEvents)), ) @@ -53,7 +53,7 @@ func (widget *Widget) content() (string, string, bool) { widget.dayDivider(calEvent, prevEvent), widget.responseIcon(calEvent), timestamp, - title, + eventTitle, ) str += fmt.Sprintf("%s %s%s\n", From 6981b533365a164ff6abc77ac02e214e776d5daf Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Thu, 21 May 2020 15:48:03 -0700 Subject: [PATCH 6/6] Delete the docker entry from .goreleaser.yml Signed-off-by: Chris Cummer --- .goreleaser.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 3822a880..452a7a71 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -29,7 +29,3 @@ brews: name: wtfutil homepage: 'https://wtfutil.com' description: 'The personal information dashboard for your terminal.' - -#dockers: - #- image_templates: - #- wtfutil/wtf