From d71e02c31c0ed603800cb07a7cf77cbb6837a151 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Mon, 18 Feb 2008 04:18:53 +0000 Subject: [PATCH] Added quotes to include directory and link library paths that contain env variables. (In case the paths contain spaces like for me :o) Updated sample_mm and stub_mm projects to use new env variables. Updated sourcemm.net to metamodsource.net Updated version number for the new upcoming tag --HG-- branch : sourcemm-1.4.3 extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/branches/sourcemm-1.4.3%40656 --- sourcemm/concommands.cpp | 8 ++++---- sourcemm/msvc8/sourcemm.vcproj | 4 ++-- sourcemm/sample_mm/msvc8/sample_mm.vcproj | 6 ++++-- sourcemm/stub_mm/msvc8/stub_mm.vcproj | 6 ++++-- sourcemm/svn_version.h | 8 ++++---- 5 files changed, 18 insertions(+), 14 deletions(-) diff --git a/sourcemm/concommands.cpp b/sourcemm/concommands.cpp index cf42a82..6ef18a1 100644 --- a/sourcemm/concommands.cpp +++ b/sourcemm/concommands.cpp @@ -147,7 +147,7 @@ CON_COMMAND(meta, "Metamod:Source Menu") CONMSG(" GameDLL/Plugins: David \"BAILOPAN\" Anderson\n"); CONMSG(" GameDLL: Scott \"Damaged Soul\" Ehlert\n"); CONMSG("For more information, see the official website\n"); - CONMSG("http://www.sourcemm.net/\n"); + CONMSG("http://www.metamodsource.net/\n"); return; } else if (strcmp(command, "version") == 0) { @@ -163,7 +163,7 @@ CON_COMMAND(meta, "Metamod:Source Menu") CONMSG("Compiled on: %s\n", SOURCEMM_DATE); CONMSG("Plugin interface version: %d:%d\n", PLAPI_VERSION, PLAPI_MIN_VERSION); CONMSG("SourceHook version: %d:%d\n", g_SourceHook.GetIfaceVersion(), g_SourceHook.GetImplVersion()); - CONMSG("http://www.sourcemm.net/\n"); + CONMSG("http://www.metamodsource.net/\n"); return; } else if (strcmp(command, "game") == 0) { @@ -712,7 +712,7 @@ void ClientCommand_handler(edict_t *client) CLIENT_CONMSG(client, " Core: David \"BAILOPAN\" Anderson\n"); CLIENT_CONMSG(client, " Core: Scott \"Damaged Soul\" Ehlert\n"); CLIENT_CONMSG(client, "For more information, see the official website\n"); - CLIENT_CONMSG(client, "http://www.sourcemm.net/\n"); + CLIENT_CONMSG(client, "http://www.metamodsource.net/\n"); RETURN_META(MRES_SUPERCEDE); } else if(strcmp(subcmd, "version") == 0) { @@ -720,7 +720,7 @@ void ClientCommand_handler(edict_t *client) CLIENT_CONMSG(client, "Compiled on: %s\n", SOURCEMM_DATE); CLIENT_CONMSG(client, "Plugin interface version: %d:%d\n", PLAPI_VERSION, PLAPI_MIN_VERSION); CLIENT_CONMSG(client, "SourceHook version: %d:%d\n", g_SourceHook.GetIfaceVersion(), g_SourceHook.GetImplVersion()); - CLIENT_CONMSG(client, "http://www.sourcemm.net/\n"); + CLIENT_CONMSG(client, "http://www.metamodsource.net/\n"); RETURN_META(MRES_SUPERCEDE); } else if(strcmp(subcmd, "list") == 0) { diff --git a/sourcemm/msvc8/sourcemm.vcproj b/sourcemm/msvc8/sourcemm.vcproj index 485dc1b..6430d55 100644 --- a/sourcemm/msvc8/sourcemm.vcproj +++ b/sourcemm/msvc8/sourcemm.vcproj @@ -41,7 +41,7 @@