From 5571d3a79a293823886002a028c7670c9d9e726b Mon Sep 17 00:00:00 2001 From: Tim Blyth Date: Tue, 20 Jan 2026 15:26:37 +1300 Subject: [PATCH 1/3] Minor: fix typo in developer mode shortcut instructions You're = You are Your = ownership Your new shortcut is correct --- apps/docs/src/developers/devtools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/src/developers/devtools.md b/apps/docs/src/developers/devtools.md index 75b1219..371c2ab 100644 --- a/apps/docs/src/developers/devtools.md +++ b/apps/docs/src/developers/devtools.md @@ -9,7 +9,7 @@ Starting Steam in developer mode is rather straight forward, all it requires is ### Windows -On Windows, many developers choose to create a custom shortcut for Steam to launch it into developer mode. To do this, lookup Steam on the start menu, right click it and open its file location. From there create a copy of the existing Steam shortcut and name it something relevant like **Steam Dev**. Right click you're new shortcut and at the end of the target simply add `-dev`. Now, whenever you want to develop your theme, Start steam from this shortcut. +On Windows, many developers choose to create a custom shortcut for Steam to launch it into developer mode. To do this, lookup Steam on the start menu, right click it and open its file location. From there create a copy of the existing Steam shortcut and name it something relevant like **Steam Dev**. Right click your new shortcut and at the end of the target simply add `-dev`. Now, whenever you want to develop your theme, Start steam from this shortcut. ### Linux From 080c5a82983c0656d1e02dc23f5505f7f36ddd9e Mon Sep 17 00:00:00 2001 From: Tim Blyth Date: Tue, 20 Jan 2026 15:30:31 +1300 Subject: [PATCH 2/3] Minor: clarify -dev placement in Windows shortcut target --- apps/docs/src/developers/devtools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/src/developers/devtools.md b/apps/docs/src/developers/devtools.md index 371c2ab..cd4fa4f 100644 --- a/apps/docs/src/developers/devtools.md +++ b/apps/docs/src/developers/devtools.md @@ -9,7 +9,7 @@ Starting Steam in developer mode is rather straight forward, all it requires is ### Windows -On Windows, many developers choose to create a custom shortcut for Steam to launch it into developer mode. To do this, lookup Steam on the start menu, right click it and open its file location. From there create a copy of the existing Steam shortcut and name it something relevant like **Steam Dev**. Right click your new shortcut and at the end of the target simply add `-dev`. Now, whenever you want to develop your theme, Start steam from this shortcut. +On Windows, many developers choose to create a custom shortcut for Steam to launch it into developer mode. To do this, lookup Steam on the start menu, right click it and open its file location. From there create a copy of the existing Steam shortcut and name it something relevant like **Steam Dev**. Right click your new shortcut and at the end of the target outside the quotes simply add `-dev` (e.g. `"C:\Program Files (x86)\Steam\steam.exe" -dev`). Now, whenever you want to develop your theme, Start steam from this shortcut. ### Linux From 29649e27a22a19429a8a9a7360cbf8dce9a84c26 Mon Sep 17 00:00:00 2001 From: Tim Blyth Date: Tue, 20 Jan 2026 15:35:28 +1300 Subject: [PATCH 3/3] Minor: further grammar fixes in devtools documentation --- apps/docs/src/developers/devtools.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/docs/src/developers/devtools.md b/apps/docs/src/developers/devtools.md index cd4fa4f..d62edb9 100644 --- a/apps/docs/src/developers/devtools.md +++ b/apps/docs/src/developers/devtools.md @@ -9,7 +9,7 @@ Starting Steam in developer mode is rather straight forward, all it requires is ### Windows -On Windows, many developers choose to create a custom shortcut for Steam to launch it into developer mode. To do this, lookup Steam on the start menu, right click it and open its file location. From there create a copy of the existing Steam shortcut and name it something relevant like **Steam Dev**. Right click your new shortcut and at the end of the target outside the quotes simply add `-dev` (e.g. `"C:\Program Files (x86)\Steam\steam.exe" -dev`). Now, whenever you want to develop your theme, Start steam from this shortcut. +On Windows, many developers choose to create a custom shortcut for Steam to launch it into developer mode. To do this, lookup Steam on the start menu, right click it and open its file location. From there, create a copy of the existing Steam shortcut and name it something relevant like **Steam Dev**. Right click your new shortcut and at the end of the target outside the quotes simply add `-dev` (e.g. `"C:\Program Files (x86)\Steam\steam.exe" -dev`). Now, whenever you want to develop your theme, Start steam from this shortcut. ### Linux @@ -34,11 +34,11 @@ You can also view all open pages from http://127.0.0.1:8080. For the sake of theming you'll likely never need to interact with the `SharedJSContext`, or really know what it is, so just skip this section. ::: -You'll run into it several times whether you're developing a theme or plugin. We'll explain what it is here; its a concept definitely worth noting. +You'll run into it several times whether you're developing a theme or plugin. We'll explain what it is here; it's a concept definitely worth noting. ### What is it? What does it do? -To put it simple, its the brain of Steam. All of Steams windows are managed from the window `SharedJSContext`. This is a _pseudo_ window of sorts as its entirely headless and just runs JavaScript that loads other windows. +To put it simple, it's the brain of Steam. All of Steams windows are managed from the window `SharedJSContext`. This is a _pseudo_ window of sorts as it's entirely headless and just runs JavaScript that loads other windows. ### What does that imply?