Skip to content

Commit fb96860

Browse files
committed
Update copyright years
1 parent 59eaf22 commit fb96860

183 files changed

Lines changed: 248 additions & 194 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/ui/menudef.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/cg_public.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/cg_syscalls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/g_public.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/g_syscalls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/keycodes.h

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212
@@ -45,6 +45,47 @@ typedef enum {
4545
K_ESCAPE = 27,
4646
K_SPACE = 32,
4747

48+
K_QUOTE = '\'',
49+
K_PLUS = '+',
50+
K_COMMA = ',',
51+
K_MINUS = '-',
52+
K_DOT = '.',
53+
K_SLASH = '/',
54+
K_SEMICOLON = ';',
55+
K_EQUAL = '=',
56+
K_BACKSLASH = '\\',
57+
K_UNDERSCORE = '_',
58+
K_BRACKET_OPEN = '[',
59+
K_BRACKET_CLOSE = ']',
60+
61+
K_A = 'a',
62+
K_B = 'b',
63+
K_C = 'c',
64+
K_D = 'd',
65+
K_E = 'e',
66+
K_F = 'f',
67+
K_G = 'g',
68+
K_H = 'h',
69+
K_I = 'i',
70+
K_J = 'j',
71+
K_K = 'k',
72+
K_L = 'l',
73+
K_M = 'm',
74+
K_N = 'n',
75+
K_O = 'o',
76+
K_P = 'p',
77+
K_Q = 'q',
78+
K_R = 'r',
79+
K_S = 's',
80+
K_T = 't',
81+
K_U = 'u',
82+
K_V = 'v',
83+
K_W = 'w',
84+
K_X = 'x',
85+
K_Y = 'y',
86+
K_Z = 'z',
87+
88+
// following definitions must not be changed
4889
K_BACKSPACE = 127,
4990

5091
K_COMMAND = 128,
@@ -160,10 +201,28 @@ typedef enum {
160201
K_AUX14,
161202
K_AUX15,
162203
K_AUX16,
163-
164-
K_LAST_KEY // this had better be <256!
204+
// end of compatibility list
205+
206+
K_SUPER,
207+
K_COMPOSE,
208+
K_MODE,
209+
K_HELP,
210+
K_PRINT,
211+
K_SYSREQ,
212+
K_SCROLLOCK,
213+
K_BREAK,
214+
K_MENU,
215+
K_EURO,
216+
K_UNDO,
217+
218+
MAX_KEYS
165219
} keyNum_t;
166220

221+
// MAX_KEYS replaces K_LAST_KEY, however some mods may have used K_LAST_KEY
222+
// in detecting binds, so we leave it defined to the old hardcoded value
223+
// of maxiumum keys to prevent mods from crashing older versions of the engine
224+
#define K_LAST_KEY 233
225+
167226
// The menu code needs to get both key and char events, but
168227
// to avoid duplicating the paths, the char events are just
169228
// distinguished by or'ing in K_CHAR_FLAG (ugly)

code/api/et/q_shared.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/q_shared.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/surfaceflags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

code/api/et/tr_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
66
77
Enemy Territory Fortress
88
Copyright (C) 2000-2006 Quake III Fortress (Q3F) Development Team / Splash Damage Ltd.
9-
Copyright (C) 2005-2018 Enemy Territory Fortress Development Team
9+
Copyright (C) 2005-2026 Enemy Territory Fortress Development Team
1010
1111
This file is part of Enemy Territory Fortress (ETF).
1212

0 commit comments

Comments
 (0)