mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-24 05:01:24 +00:00
Version bumped to 3.0. Lets try and keep it list this.
This commit is contained in:
parent
28660dc650
commit
fa37e0d314
5 changed files with 13 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
||||||
# List fixes here for the 2.3 release
|
# List fixes here for the 3.0 release
|
||||||
|
|
||||||
|
* Version now 3.0
|
||||||
* Added replacement model functionality for ammo
|
* Added replacement model functionality for ammo
|
||||||
* Bots dont talk about flags any more.
|
* Bots dont talk about flags any more.
|
||||||
* The wepons menu now shows up where its supposed to (incl. TP style TDM)
|
* The wepons menu now shows up where its supposed to (incl. TP style TDM)
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.134 2003/03/02 21:12:46 jbravo
|
||||||
|
// Version bumped to 3.0. Lets try and keep it list this.
|
||||||
|
//
|
||||||
// Revision 1.133 2003/02/27 07:33:58 jbravo
|
// Revision 1.133 2003/02/27 07:33:58 jbravo
|
||||||
// Bots stfy about flags. Its cases. Teamname fixes. TP style TP fixes.
|
// Bots stfy about flags. Its cases. Teamname fixes. TP style TP fixes.
|
||||||
//
|
//
|
||||||
|
@ -653,7 +656,7 @@ static cvarTable_t gameCvarTable[] = {
|
||||||
{&g_RQ3_NextMapID, "g_RQ3_NextMapID", "-1", CVAR_SYSTEMINFO, 0, qfalse},
|
{&g_RQ3_NextMapID, "g_RQ3_NextMapID", "-1", CVAR_SYSTEMINFO, 0, qfalse},
|
||||||
{&g_RQ3_NextMap, "g_RQ3_NextMap", "", CVAR_SYSTEMINFO, 0, qfalse},
|
{&g_RQ3_NextMap, "g_RQ3_NextMap", "", CVAR_SYSTEMINFO, 0, qfalse},
|
||||||
//Makro - for server browsers
|
//Makro - for server browsers
|
||||||
{&g_RQ3_version, "g_RQ3_version", "2.3", CVAR_SERVERINFO | CVAR_SYSTEMINFO | CVAR_ROM, 0, qfalse},
|
{&g_RQ3_version, "g_RQ3_version", "3.0", CVAR_SERVERINFO | CVAR_SYSTEMINFO | CVAR_ROM, 0, qfalse},
|
||||||
//Makro - max votes per client
|
//Makro - max votes per client
|
||||||
{&g_RQ3_maxClientVotes, "g_RQ3_maxClientVotes", "3", CVAR_ARCHIVE, 0, qfalse}
|
{&g_RQ3_maxClientVotes, "g_RQ3_maxClientVotes", "3", CVAR_ARCHIVE, 0, qfalse}
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.63 2003/03/02 21:12:46 jbravo
|
||||||
|
// Version bumped to 3.0. Lets try and keep it list this.
|
||||||
|
//
|
||||||
// Revision 1.62 2003/02/26 18:22:05 makro
|
// Revision 1.62 2003/02/26 18:22:05 makro
|
||||||
// Added an option to change crosshair size in assetGlobalDef's
|
// Added an option to change crosshair size in assetGlobalDef's
|
||||||
//
|
//
|
||||||
|
@ -4998,7 +5001,7 @@ static void UI_BuildServerDisplayList(qboolean force)
|
||||||
if (len == 0) {
|
if (len == 0) {
|
||||||
//Makro - changing from Team Arena to RQ3 beta2
|
//Makro - changing from Team Arena to RQ3 beta2
|
||||||
//strcpy(uiInfo.serverStatus.motd, "Welcome to Team Arena!");
|
//strcpy(uiInfo.serverStatus.motd, "Welcome to Team Arena!");
|
||||||
strcpy(uiInfo.serverStatus.motd, " *** Welcome to Reaction Quake 3 v2.3 *** ");
|
strcpy(uiInfo.serverStatus.motd, " *** Welcome to Reaction Quake 3 v3.0 *** ");
|
||||||
len = strlen(uiInfo.serverStatus.motd);
|
len = strlen(uiInfo.serverStatus.motd);
|
||||||
}
|
}
|
||||||
if (len != uiInfo.serverStatus.motdLen) {
|
if (len != uiInfo.serverStatus.motdLen) {
|
||||||
|
|
|
@ -132,7 +132,7 @@
|
||||||
textscale .45
|
textscale .45
|
||||||
textalignx 220
|
textalignx 220
|
||||||
textaligny 100
|
textaligny 100
|
||||||
text "REACTION QUAKE 3 v2.3"
|
text "REACTION QUAKE 3 v3.0"
|
||||||
autowrapped
|
autowrapped
|
||||||
visible 1
|
visible 1
|
||||||
decoration
|
decoration
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
itemDef {
|
itemDef {
|
||||||
name copyright
|
name copyright
|
||||||
autowrapped
|
autowrapped
|
||||||
text "Reaction Quake 3 v2.3\n"
|
text "Reaction Quake 3 v3.0\n"
|
||||||
"Copyright (c) 2000 - 2003 Reaction Quake 3 Team\n"
|
"Copyright (c) 2000 - 2003 Reaction Quake 3 Team\n"
|
||||||
"Quake III Arena (c) 1999 - 2000 id Software Inc."
|
"Quake III Arena (c) 1999 - 2000 id Software Inc."
|
||||||
style 0
|
style 0
|
||||||
|
|
Loading…
Reference in a new issue