From 0a28da60ac2700c8f673d76497f54079815798f3 Mon Sep 17 00:00:00 2001 From: Thomas David Baker Date: Sun, 10 Nov 2024 12:53:03 -0800 Subject: [PATCH 1/3] Correct icon fetching command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d8d73982..e6c9fec14 100644 --- a/README.md +++ b/README.md @@ -47,5 +47,5 @@ $ composer csslint # stylelint ## Icons The first time you set up in a new env or add a new icon you need to run the following : -$ php/vendor/php-icons scan +$ php vendor/bin/php-icons scan Until you do this icons will show up as {?} glyph. From 7ea905fb7d4bdc7e66e6bb3d47bfa898622130bd Mon Sep 17 00:00:00 2001 From: Thomas David Baker Date: Sun, 10 Nov 2024 13:02:01 -0800 Subject: [PATCH 2/3] Show discord brand icon on login with discord button This was clearly the intent but wasn't working. We should standardize on *either* Font Awesome or (better because one less network request/no over-fetching? but worse because you have to pull the images in in prod after adding one?) PHP Icons. Using both fairly silly. --- gatherling/templates/home.mustache | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gatherling/templates/home.mustache b/gatherling/templates/home.mustache index d17339f35..66e20ae45 100644 --- a/gatherling/templates/home.mustache +++ b/gatherling/templates/home.mustache @@ -83,7 +83,9 @@ - + From 2f0f6c29072bd33023d3282e4ab18106894ff498 Mon Sep 17 00:00:00 2001 From: Thomas David Baker Date: Sun, 10 Nov 2024 13:11:56 -0800 Subject: [PATCH 3/3] Move template to match new component name --- .../{formatCPMenu.mustache => formatControlPanelMenu.mustache} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename gatherling/templates/partials/{formatCPMenu.mustache => formatControlPanelMenu.mustache} (100%) diff --git a/gatherling/templates/partials/formatCPMenu.mustache b/gatherling/templates/partials/formatControlPanelMenu.mustache similarity index 100% rename from gatherling/templates/partials/formatCPMenu.mustache rename to gatherling/templates/partials/formatControlPanelMenu.mustache