diff --git a/changelog.txt b/changelog.txt index 1e29a72867..cb969ee43c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,9 @@ New Main Menu UI Thanks to NicolasDe from Project-9 for GameUI2 New background (from tutorial levels) to accomodate the shininess +Play Replays from Leaderboards + Right-clicking when the leaderboards are open will allow you to right click a run and "Watch Replay" + More functionality in future updates! Contact/Feedback Panel Introduced a panel for in-game feedback, available in the menu. Overhauled Settings Panel @@ -23,6 +26,8 @@ Bug/Other fixes Fixed the Changelog panel to properly scroll to top upon load Removed ability to save/load (use the checkpoint menu instead!) Fixed Biohazard90's Source Shader Editor (faulty config) + Fixed Version Update panel showing when you have a higher version than master + Fixed a bug in the blockfix system with incorporating the mom_bhop_playblocksound cvar 0.4.7 Bugfixes diff --git a/mp/game/momentum/resource/ClientScheme.res b/mp/game/momentum/resource/ClientScheme.res index dbc5bac219..333541fe64 100644 --- a/mp/game/momentum/resource/ClientScheme.res +++ b/mp/game/momentum/resource/ClientScheme.res @@ -20,6 +20,9 @@ Scheme "Gray" "128 128 128 150" "Dark Gray" "64 64 64 200" + "Light Blue" "51 122 183 255" + "Dark Blue" "22 69 119 255" + "Red" "192 28 0 140" "Black" "0 0 0 196" "TransparentBlack" "0 0 0 196" @@ -145,14 +148,14 @@ Scheme ListPanel.TextColor "White" ListPanel.BgColor "TransparentBlack" ListPanel.SelectedTextColor "Black" - ListPanel.SelectedBgColor "Red" - ListPanel.SelectedOutOfFocusBgColor "Red" + ListPanel.SelectedBgColor "Light Blue" + ListPanel.SelectedOutOfFocusBgColor "Dark Blue" ListPanel.EmptyListInfoTextColor "White" Menu.TextColor "White" Menu.BgColor "TransparentBlack" Menu.ArmedTextColor "White" - Menu.ArmedBgColor "Red" + Menu.ArmedBgColor "Light Blue" Menu.TextInset "6" Chat.TypingText "White" @@ -191,10 +194,10 @@ Scheme SectionedListPanel.TextColor "White" SectionedListPanel.BrightTextColor "White" SectionedListPanel.BgColor "TransparentLightBlack" - SectionedListPanel.SelectedTextColor "Black" - SectionedListPanel.SelectedBgColor "Red" - SectionedListPanel.OutOfFocusSelectedTextColor "Black" - SectionedListPanel.OutOfFocusSelectedBgColor "255 255 255 32" + SectionedListPanel.SelectedTextColor "White" + SectionedListPanel.SelectedBgColor "Dark Blue" + SectionedListPanel.OutOfFocusSelectedTextColor "White" + SectionedListPanel.OutOfFocusSelectedBgColor "Light Blue" Slider.NobColor "108 108 108 255" Slider.TextColor "127 140 127 255" diff --git a/mp/game/momentum/resource/momentum_english.txt b/mp/game/momentum/resource/momentum_english.txt index fd6fd6afb8..18066b0c96 100644 Binary files a/mp/game/momentum/resource/momentum_english.txt and b/mp/game/momentum/resource/momentum_english.txt differ diff --git a/mp/game/momentum/resource2/schememainmenu.res b/mp/game/momentum/resource2/schememainmenu.res index 564b640618..f401af9411 100644 --- a/mp/game/momentum/resource2/schememainmenu.res +++ b/mp/game/momentum/resource2/schememainmenu.res @@ -64,7 +64,7 @@ "Colors" { "White" "255 255 255 255" - "Light.Blue" "51 122 183 255" + "Light Blue" "51 122 183 255" "Dark Blue" "22 69 119 255" "MainMenu.Logo.Left" "255 255 255 255" diff --git a/mp/src/game/client/client_momentum.vpc b/mp/src/game/client/client_momentum.vpc index 1e61d8d712..bd57cc15f4 100644 --- a/mp/src/game/client/client_momentum.vpc +++ b/mp/src/game/client/client_momentum.vpc @@ -108,7 +108,9 @@ $Project "Client (Momentum)" $File "momentum\ui\ClientTimesDisplay.h" $File "momentum\ui\ClientTimesDisplay.cpp" - + $File "momentum\ui\ReplayContextMenu.h" + $File "momentum\ui\ReplayContextMenu.cpp" + $File "momentum\ui\IVersionWarnPanel.h" $File "momentum\ui\VersionWarnPanel.cpp" $File "momentum\ui\VersionWarnPanel.h" diff --git a/mp/src/game/client/momentum/ui/ClientTimesDisplay.cpp b/mp/src/game/client/momentum/ui/ClientTimesDisplay.cpp index c3e1051967..8ff4113e49 100644 --- a/mp/src/game/client/momentum/ui/ClientTimesDisplay.cpp +++ b/mp/src/game/client/momentum/ui/ClientTimesDisplay.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include #include @@ -69,7 +70,7 @@ CClientTimesDisplay::CClientTimesDisplay(IViewPort *pViewPort) : EditablePanel(n m_pPlayerList = new SectionedListPanel(this, "PlayerList"); m_pPlayerList->SetVerticalScrollbar(false); - LoadControlSettings("Resource/UI/timesdisplay.res"); + LoadControlSettings("resource/ui/timesdisplay.res"); m_pHeader = FindControl("Header", true); m_lMapSummary = FindControl