Skip to content

Commit 08656b3

Browse files
committed
www.solsticegamestudios.com -> solsticegamestudios.com
1 parent 414ef29 commit 08656b3

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
custom: ['https://www.solsticegamestudios.com/donate/']
1+
custom: ['https://solsticegamestudios.com/donate/']

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
***GModPatchTool** does what Facepunch [don't](https://github.com/Facepunch/gmod-html/pull/5)!*
66

7-
**Created by Solstice Game Studios (www.solsticegamestudios.com)**
7+
**Created by Solstice Game Studios (solsticegamestudios.com)**
88

99
# 🛠️ Patches We Apply
1010
### All Platforms
@@ -40,7 +40,7 @@
4040
# ❓ Players: How to Install / Use
4141
Download the **[Latest Release](https://github.com/solsticegamestudios/GModPatchTool/releases)** and run the application.
4242

43-
Need a more in-depth guide? Take a look at https://www.solsticegamestudios.com/fixmedia/
43+
Need a more in-depth guide? Take a look at https://solsticegamestudios.com/fixmedia/
4444

4545
# 👩‍💻 Developers: How to Use / Detect
4646
Direct players to follow the Players' instructions above. This patch is CLIENTSIDE only!
@@ -59,11 +59,11 @@ Direct players to follow the Players' instructions above. This patch is CLIENTSI
5959
**If you want to go more in-depth:** Check out [our fork of gmod-html](https://github.com/solsticegamestudios/gmod-html) and [our CEF build scripts](cef_build).
6060

6161
# 📢 Need Help / Contact Us
62-
* Read the FAQ: https://www.solsticegamestudios.com/fixmedia/faq/
63-
* Discord: https://www.solsticegamestudios.com/discord/
62+
* Read the FAQ: https://solsticegamestudios.com/fixmedia/faq/
63+
* Discord: https://solsticegamestudios.com/discord/
6464
* Email: contact@solsticegamestudios.com
6565

6666
# 💖 Help Support Us
6767
This project is open source and provided free of charge for the Garry's Mod community.
6868

69-
**If you like what we're doing here, consider [throwing a few dollars our way](https://www.solsticegamestudios.com/donate/)!** Our work is 100% funded by users of the tool!
69+
**If you like what we're doing here, consider [throwing a few dollars our way](https://solsticegamestudios.com/donate/)!** Our work is 100% funded by users of the tool!

examples/detection_example.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
--[[
22
GModPatchTool (formerly GModCEFCodecFix) detection code example
33
4-
Copyright 2024-2025, Solstice Game Studios (www.solsticegamestudios.com)
4+
Copyright 2024-2025, Solstice Game Studios (solsticegamestudios.com)
55
LICENSE: GNU General Public License v3.0
66
77
Purpose: Detects if GModPatchTool's CEF patches have been applied successfully on a GMod client.
88
99
Contact:
1010
Repository: https://github.com/solsticegamestudios/GModPatchTool/
11-
Discord: https://www.solsticegamestudios.com/discord/
11+
Discord: https://solsticegamestudios.com/discord/
1212
Email: contact@solsticegamestudios.com
1313
]]
1414

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ const ABOUT: &str = r#" ________ ___ ______ __ __ ____
1717
\____/_/ /_/\____/\__,_/_/ \__,_/\__/\___/_/ /_/_/ \____/\____/_/
1818
GModPatchTool (formerly GModCEFCodecFix)
1919
20-
Copyright 2020-2025, Solstice Game Studios (www.solsticegamestudios.com)
20+
Copyright 2020-2025, Solstice Game Studios (solsticegamestudios.com)
2121
LICENSE: GNU General Public License v3.0
2222
2323
Purpose: Patches Garry's Mod to Update/Improve Chromium Embedded Framework (CEF) and Fix common launch/performance issues (esp. on Linux/Proton/macOS).
2424
25-
Guide: https://www.solsticegamestudios.com/fixmedia/
26-
FAQ/Common Issues: https://www.solsticegamestudios.com/fixmedia/faq/
27-
Discord: https://www.solsticegamestudios.com/discord/
25+
Guide: https://solsticegamestudios.com/fixmedia/
26+
FAQ/Common Issues: https://solsticegamestudios.com/fixmedia/faq/
27+
Discord: https://solsticegamestudios.com/discord/
2828
Email: contact@solsticegamestudios.com
2929
"#;
3030

src/patch.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Version and Manifest files
22
const TEXT_SERVER_ROOTS: [&str; 2] = [
33
"https://raw.githubusercontent.com/solsticegamestudios/GModPatchTool/refs/heads/files/",
4-
"https://www.solsticegamestudios.com/gmodpatchtool/"
4+
"https://solsticegamestudios.com/gmodpatchtool/"
55
];
66

77
// Patch files
88
const BINARY_SERVER_ROOTS: [&str; 2] = [
99
"https://media.githubusercontent.com/media/solsticegamestudios/GModPatchTool/refs/heads/files/",
10-
"https://www.solsticegamestudios.com/gmodpatchtool/" // TODO: Webhook that triggers git pull and clears the cache on Cloudflare
10+
"https://solsticegamestudios.com/gmodpatchtool/" // TODO: Webhook that triggers git pull and clears the cache on Cloudflare
1111
];
1212

1313
//const GMOD_STEAM_APPID: u64 = 4000;
@@ -1491,7 +1491,7 @@ where
14911491
}
14921492

14931493
terminal_write(writer, "\n💖 Did you find this tool useful? Please consider donating a few dollars to help support it:", true, if writer_is_interactive { Some("magenta") } else { None });
1494-
terminal_write(writer, "\thttps://www.solsticegamestudios.com/donate/", true, None);
1494+
terminal_write(writer, "\thttps://solsticegamestudios.com/donate/", true, None);
14951495

14961496
Ok(())
14971497
}

0 commit comments

Comments
 (0)