From 91b8c8dfc658d202acda278ea8b17c8c860e9763 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 4 Jun 2023 19:35:20 -0500 Subject: [PATCH] Rename the new URL scheme to q3rally Websites can link to q3rally servers using the following: q3rally://connect/0.0.0.0 A protocol handler needs to be configured on the system to run: q3rally.x86_64 --uri q3rally://connect/0.0.0.0 --- engine/code/qcommon/q_shared.h | 2 +- engine/make-macosx-app.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/code/qcommon/q_shared.h b/engine/code/qcommon/q_shared.h index 91ff14ac..a0c71b20 100644 --- a/engine/code/qcommon/q_shared.h +++ b/engine/code/qcommon/q_shared.h @@ -56,7 +56,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define CINEMATICS_LOGO "idlogo.RoQ" #define CINEMATICS_INTRO "intro.RoQ" #define LEGACY_PROTOCOL - #define PROTOCOL_HANDLER "quake3" + #define PROTOCOL_HANDLER "q3rally" #endif // Heartbeat for dpmaster protocol. You shouldn't change this unless you know what you're doing diff --git a/engine/make-macosx-app.sh b/engine/make-macosx-app.sh index 672effc1..02cd0510 100755 --- a/engine/make-macosx-app.sh +++ b/engine/make-macosx-app.sh @@ -192,7 +192,7 @@ WRAPPER_NAME="${PRODUCT_NAME}.${WRAPPER_EXTENSION}" CONTENTS_FOLDER_PATH="${WRAPPER_NAME}/Contents" UNLOCALIZED_RESOURCES_FOLDER_PATH="${CONTENTS_FOLDER_PATH}/Resources" EXECUTABLE_FOLDER_PATH="${CONTENTS_FOLDER_PATH}/MacOS" -PROTOCOL_HANDLER="quake3" +PROTOCOL_HANDLER="q3rally" # loop through the architectures to build string lists for each universal binary for ARCH in $SEARCH_ARCHS; do