diff --git a/Bloxstrap/Enums/FlagPresets/InGameMenuVersion.cs b/Bloxstrap/Enums/FlagPresets/InGameMenuVersion.cs index ce1b7a6..0e63264 100644 --- a/Bloxstrap/Enums/FlagPresets/InGameMenuVersion.cs +++ b/Bloxstrap/Enums/FlagPresets/InGameMenuVersion.cs @@ -5,6 +5,7 @@ Default, V1, V2, - V4 + V4, + V4Chrome } } diff --git a/Bloxstrap/FastFlagManager.cs b/Bloxstrap/FastFlagManager.cs index 80e66c9..fcba521 100644 --- a/Bloxstrap/FastFlagManager.cs +++ b/Bloxstrap/FastFlagManager.cs @@ -47,11 +47,11 @@ namespace Bloxstrap { "UI.Menu.Style.DisableV2", "FFlagDisableNewIGMinDUA" }, { "UI.Menu.Style.EnableV4.1", "FFlagEnableInGameMenuControls" }, { "UI.Menu.Style.EnableV4.2", "FFlagEnableInGameMenuModernization" }, + { "UI.Menu.Style.EnableV4Chrome", "FFlagEnableInGameMenuChrome" }, { "UI.Menu.Style.ABTest.1", "FFlagEnableMenuControlsABTest" }, - { "UI.Menu.Style.ABTest.2", "FFlagEnableMenuModernizationABTest" }, - { "UI.Menu.Style.ABTest.3", "FFlagEnableMenuModernizationABTest2" }, - { "UI.Menu.Style.ABTest.4", "FFlagEnableV3MenuABTest3" } + { "UI.Menu.Style.ABTest.2", "FFlagEnableV3MenuABTest3" }, + { "UI.Menu.Style.ABTest.3", "FFlagEnableInGameMenuChromeABTest3" } }; // only one missing here is Metal because lol @@ -91,6 +91,7 @@ namespace Bloxstrap { { "DisableV2", null }, { "EnableV4", null }, + { "EnableV4Chrome", null }, { "ABTest", null } } }, @@ -101,6 +102,7 @@ namespace Bloxstrap { { "DisableV2", "True" }, { "EnableV4", "False" }, + { "EnableV4Chrome", "False" }, { "ABTest", "False" } } }, @@ -111,6 +113,7 @@ namespace Bloxstrap { { "DisableV2", "False" }, { "EnableV4", "False" }, + { "EnableV4Chrome", "False" }, { "ABTest", "False" } } }, @@ -121,6 +124,18 @@ namespace Bloxstrap { { "DisableV2", "True" }, { "EnableV4", "True" }, + { "EnableV4Chrome", "False" }, + { "ABTest", "False" } + } + }, + + { + InGameMenuVersion.V4Chrome, + new Dictionary + { + { "DisableV2", "True" }, + { "EnableV4", "True" }, + { "EnableV4Chrome", "True" }, { "ABTest", "False" } } } diff --git a/Bloxstrap/Properties/launchSettings.json b/Bloxstrap/Properties/launchSettings.json index 2cf74a5..7dc753d 100644 --- a/Bloxstrap/Properties/launchSettings.json +++ b/Bloxstrap/Properties/launchSettings.json @@ -21,7 +21,7 @@ }, "Bloxstrap (Deeplink)": { "commandName": "Project", - "commandLineArgs": "roblox://experiences/start?placeId=95206881" + "commandLineArgs": "roblox://experiences/start?placeId=13700835620" }, "Bloxstrap (Studio Launch)": { "commandName": "Project", diff --git a/Bloxstrap/Resources/Strings.Designer.cs b/Bloxstrap/Resources/Strings.Designer.cs index 4c307ed..4517b2b 100644 --- a/Bloxstrap/Resources/Strings.Designer.cs +++ b/Bloxstrap/Resources/Strings.Designer.cs @@ -947,7 +947,7 @@ namespace Bloxstrap.Resources { } /// - /// Looks up a localized string similar to Version 1 (2015). + /// Looks up a localized string similar to 2015 (V1). /// public static string Enums_FlagPresets_InGameMenuVersion_V1 { get { @@ -956,7 +956,7 @@ namespace Bloxstrap.Resources { } /// - /// Looks up a localized string similar to Version 2 (2020). + /// Looks up a localized string similar to 2022 (V2). /// public static string Enums_FlagPresets_InGameMenuVersion_V2 { get { @@ -965,7 +965,7 @@ namespace Bloxstrap.Resources { } /// - /// Looks up a localized string similar to Version 4 (2023). + /// Looks up a localized string similar to 2023 (V4). /// public static string Enums_FlagPresets_InGameMenuVersion_V4 { get { @@ -973,6 +973,15 @@ namespace Bloxstrap.Resources { } } + /// + /// Looks up a localized string similar to 2023 (V4 + New UI). + /// + public static string Enums_FlagPresets_InGameMenuVersion_V4Chrome { + get { + return ResourceManager.GetString("Enums.FlagPresets.InGameMenuVersion.V4Chrome", resourceCulture); + } + } + /// /// Looks up a localized string similar to Chosen by game. /// diff --git a/Bloxstrap/Resources/Strings.resx b/Bloxstrap/Resources/Strings.resx index 98e683c..f23b284 100644 --- a/Bloxstrap/Resources/Strings.resx +++ b/Bloxstrap/Resources/Strings.resx @@ -412,13 +412,13 @@ Click for more information Default - Version 1 (2015) + 2015 (V1) - Version 2 (2020) + 2022 (V2) - Version 4 (2023) + 2023 (V4) Chosen by game @@ -1042,4 +1042,7 @@ Scroll for more languages. Only applies to games launched from the Roblox website. + + 2023 (V4 + New UI) + \ No newline at end of file