Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework mode select menu #624

Merged
merged 42 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f85f382
Initial commit
F1F7Y Apr 22, 2023
088336c
Fix scrolling with scroll wheel
F1F7Y Apr 22, 2023
6edbe37
Make arrow buttons work
F1F7Y Apr 22, 2023
8a9859b
Add filters panel vgui elements
F1F7Y Apr 23, 2023
b10f77e
Properly setup filter buttons
F1F7Y Apr 23, 2023
6d19530
Implement filtering
F1F7Y Apr 23, 2023
d1a4de6
Scrollbar fixes
F1F7Y Apr 23, 2023
a614f4b
Add cp
F1F7Y Apr 23, 2023
7b85277
English localization
F1F7Y Apr 23, 2023
15f0cdb
Properly lock unfinished gamemodes
F1F7Y Apr 23, 2023
f6007f4
Add back accidentally removed tabs, vscode moment
F1F7Y Apr 23, 2023
1d69a78
me when spaces
F1F7Y Apr 23, 2023
daed6a3
Lack of sleep
F1F7Y Apr 23, 2023
21911ea
Category overwrites
F1F7Y Apr 23, 2023
d0e968b
Fix FFA category collision
F1F7Y Apr 23, 2023
7dfb352
Formatting
F1F7Y Apr 23, 2023
bb5189e
Fix category filter
F1F7Y Apr 23, 2023
1743fdb
Move mfd to pvp
F1F7Y Apr 23, 2023
b464b37
Fix empty menu bug
F1F7Y Apr 23, 2023
7b726a0
Update Northstar.Client/mod/scripts/vscripts/ui/menu_mode_select.nut
F1F7Y Apr 24, 2023
dde3b07
Update Northstar.Client/mod/scripts/vscripts/ui/menu_mode_select.nut
F1F7Y Apr 24, 2023
f41f13f
Update Northstar.Client/mod/scripts/vscripts/ui/menu_mode_select.nut
F1F7Y Apr 24, 2023
324bd23
Update Northstar.Client/mod/scripts/vscripts/ui/menu_mode_select.nut
F1F7Y Apr 24, 2023
6aa5127
Update Northstar.Client/mod/scripts/vscripts/ui/menu_mode_select.nut
F1F7Y Apr 24, 2023
1f7bdc2
Update Northstar.Client/mod/scripts/vscripts/ui/menu_mode_select.nut
F1F7Y Apr 24, 2023
2b70127
Convert to tabs
F1F7Y Apr 24, 2023
a40b3c0
Merge branch 'main' into main
F1F7Y Apr 24, 2023
7d476d9
Merge branch 'main' into main
F1F7Y Apr 29, 2023
48445c9
Merge branch 'main' into main
F1F7Y May 1, 2023
2e9f55d
Remove bounty hunt from locked modes list
F1F7Y May 1, 2023
9797de5
Merge branch 'main' into main
uniboi May 10, 2023
069ceb5
Merge branch 'main' into main
F1F7Y May 15, 2023
1d4342a
Merge branch 'main' into main
uniboi May 30, 2023
e19eb2c
Merge branch 'main' into main
uniboi Jun 27, 2023
90d37d7
Merge branch 'main' into main
uniboi Jun 28, 2023
7e8019e
Merge branch 'main' into main
uniboi Aug 2, 2023
fc21276
Merge branch 'main' into main
ASpoonPlaysGames Oct 8, 2023
6fec064
Merge branch 'main' into main
F1F7Y Sep 8, 2024
a5bfc87
Update menu_mode_select.nut
F1F7Y Sep 8, 2024
df0ebd4
Merge branch 'main' into fifty-main
GeckoEidechse Sep 9, 2024
7264850
Merge branch 'main' into main
GeckoEidechse Sep 10, 2024
28dc3bd
Merge branch 'main' into fifty-main
GeckoEidechse Sep 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Northstar.Client/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
"Name": "modlist_reverse",
"DefaultValue": "0",
"Flags": "ARCHIVE_PLAYERPROFILE"
},
{
"Name": "modemenu_mode_filter",
"DefaultValue": "-1"
}
],
"Scripts": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,18 @@ Press Yes if you agree to this. This choice can be changed in the mods menu at a
"JSON_PARSE_ERROR" "Error parsing json response"
"UNSUPPORTED_VERSION" "The version you are using is no longer supported"

// Mode menu
"MODE_MENU_PVPVE" "PvPvE"
"MODE_MENU_PVE" "PvE"
"MODE_MENU_PVP" "PvP"
"MODE_MENU_FFA" "FFA"
"MODE_MENU_TITAN_ONLY" "Titan Only"
"MODE_MENU_OTHER" "Other"
"MODE_MENU_CUSTOM" "Custom"
"MODE_MENU_ALL" "All"
"MODE_MENU_UNKNOWN" "Unknown"
"MODE_MENU_SWITCH" "Filter"

"AUTHENTICATION_FAILED_HEADER" "Authentication Failed"
"AUTHENTICATION_FAILED_BODY" "Failed to authenticate with Atlas!"
"AUTHENTICATION_FAILED_ERROR_CODE" "Error code: ^DB6F2C00%s1^"
Expand Down
Loading
Loading