Skip to content

Commit 333d437

Browse files
committed
fix(brand): restore original logo as docs-site wordmark
The figlet-generated ASCII wordmark was never the official asset. Use the repo's original gSlapper logo (726x124 RGBA) as the docs-site wordmark, served at different display sizes. gsp-mark.png remains rendered from gsp.txt for the sidebar mark.
1 parent d2501ff commit 333d437

5 files changed

Lines changed: 5 additions & 13 deletions

File tree

docs-site/brand/gslapper.txt

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs-site/components/docs-home.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export function DocsHome() {
5050
className="docs-wordmark"
5151
src={`${basePath}/brand/gslapper-wordmark.png`}
5252
alt="gSlapper"
53-
width="1128"
54-
height="259"
53+
width="726"
54+
height="124"
5555
/>
5656
<p id="docs-home-purpose">
5757
A wallpaper utility for Wayland that plays video and static image wallpapers with
-1.31 KB
Loading

docs-site/scripts/check-export.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ assert.doesNotMatch(installationHtml, /\[!NOTE\]|\[!IMPORTANT\]|\[!WARNING\]/, '
8282
assert.match(installationHtml, /callout/, 'installation is missing rendered Callout markup');
8383

8484
// Brand images must carry intrinsic dimensions matching the PNG aspect ratio
85-
assert.match(docsHtml, /brand\/gslapper-wordmark\.png[^>]*width="1128"/, 'wordmark img width does not match PNG (1128)');
86-
assert.match(docsHtml, /brand\/gslapper-wordmark\.png[^>]*height="259"/, 'wordmark img height does not match PNG (259)');
85+
assert.match(docsHtml, /brand\/gslapper-wordmark\.png[^>]*width="726"/, 'wordmark img width does not match PNG (726)');
86+
assert.match(docsHtml, /brand\/gslapper-wordmark\.png[^>]*height="124"/, 'wordmark img height does not match PNG (124)');
8787
assert.match(docsHtml, /brand\/gsp-mark\.png[^>]*width="551"/, 'gsp mark img width does not match PNG (551)');
8888
assert.match(docsHtml, /brand\/gsp-mark\.png[^>]*height="259"/, 'gsp mark img height does not match PNG (259)');
8989

scripts/render_docs_brand.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
ROOT = Path(__file__).resolve().parents[1]
1212
ASSETS = (
13-
(ROOT / "docs-site/brand/gslapper.txt", ROOT / "docs-site/public/brand/gslapper-wordmark.png"),
1413
(ROOT / "docs-site/brand/gsp.txt", ROOT / "docs-site/public/brand/gsp-mark.png"),
1514
)
1615
FONT_CANDIDATES = (
@@ -59,7 +58,7 @@ def check_assets() -> None:
5958

6059

6160
def main() -> None:
62-
parser = argparse.ArgumentParser(description="Render transparent documentation wordmarks")
61+
parser = argparse.ArgumentParser(description="Render transparent documentation mark")
6362
parser.add_argument("--check", action="store_true", help="verify committed PNGs are current")
6463
args = parser.parse_args()
6564

0 commit comments

Comments
 (0)