From 5e86f8ce02278588f2e5e79548c91730acc3f9ff Mon Sep 17 00:00:00 2001
From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com>
Date: Sun, 22 Sep 2024 12:33:30 +0100
Subject: [PATCH 1/3] remove hyperion update warning
---
Bloxstrap/Installer.cs | 7 -------
Bloxstrap/Resources/Strings.Designer.cs | 11 -----------
Bloxstrap/Resources/Strings.resx | 5 -----
3 files changed, 23 deletions(-)
diff --git a/Bloxstrap/Installer.cs b/Bloxstrap/Installer.cs
index 9e2f6f2..59fc133 100644
--- a/Bloxstrap/Installer.cs
+++ b/Bloxstrap/Installer.cs
@@ -459,14 +459,7 @@ namespace Bloxstrap
string configLocation = Path.Combine(Paths.Modifications, "ReShade.ini");
if (File.Exists(injectorLocation))
- {
- Frontend.ShowMessageBox(
- Strings.Bootstrapper_HyperionUpdateInfo,
- MessageBoxImage.Warning
- );
-
File.Delete(injectorLocation);
- }
if (File.Exists(configLocation))
File.Delete(configLocation);
diff --git a/Bloxstrap/Resources/Strings.Designer.cs b/Bloxstrap/Resources/Strings.Designer.cs
index 56f7a4c..f261f0a 100644
--- a/Bloxstrap/Resources/Strings.Designer.cs
+++ b/Bloxstrap/Resources/Strings.Designer.cs
@@ -159,17 +159,6 @@ namespace Bloxstrap.Resources {
}
}
- ///
- /// Looks up a localized string similar to Roblox has now finished rolling out the new game client update, featuring 64-bit support and the Hyperion anticheat. ReShade does not work with this update, and so it has now been disabled and removed from Bloxstrap.
- ///
- ///Your ReShade configuration files will still be saved, and you can locate them by opening the folder where Bloxstrap is installed to, and navigating to the Integrations folder. You can choose to delete these if you want..
- ///
- public static string Bootstrapper_HyperionUpdateInfo {
- get {
- return ResourceManager.GetString("Bootstrapper.HyperionUpdateInfo", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Failed to save {0}: {1}.
///
diff --git a/Bloxstrap/Resources/Strings.resx b/Bloxstrap/Resources/Strings.resx
index 99adfd7..b10ea6e 100644
--- a/Bloxstrap/Resources/Strings.resx
+++ b/Bloxstrap/Resources/Strings.resx
@@ -138,11 +138,6 @@
You must first install Bloxstrap before uninstalling.
-
- Roblox has now finished rolling out the new game client update, featuring 64-bit support and the Hyperion anticheat. ReShade does not work with this update, and so it has now been disabled and removed from Bloxstrap.
-
-Your ReShade configuration files will still be saved, and you can locate them by opening the folder where Bloxstrap is installed to, and navigating to the Integrations folder. You can choose to delete these if you want.
-
Bloxstrap does not have enough disk space to download and install Roblox. Please free up some disk space and try again.
From 3b51345819de1901c30f777bfec094ac09d8da2f Mon Sep 17 00:00:00 2001
From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com>
Date: Thu, 26 Sep 2024 16:01:06 +0100
Subject: [PATCH 2/3] add ribbonconfig to studio package map
---
Bloxstrap/AppData/RobloxStudioData.cs | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Bloxstrap/AppData/RobloxStudioData.cs b/Bloxstrap/AppData/RobloxStudioData.cs
index fca5a63..d3440b3 100644
--- a/Bloxstrap/AppData/RobloxStudioData.cs
+++ b/Bloxstrap/AppData/RobloxStudioData.cs
@@ -21,7 +21,7 @@
{ "RobloxStudio.zip", @"" },
{ "redist.zip", @"" },
{ "LibrariesQt5.zip", @"" },
-
+
{ "content-studio_svg_textures.zip", @"content\studio_svg_textures\"},
{ "content-qt_translations.zip", @"content\qt_translations\" },
{ "content-api-docs.zip", @"content\api_docs\" },
@@ -34,7 +34,8 @@
{ "ApplicationConfig.zip", @"ApplicationConfig\" },
{ "Plugins.zip", @"Plugins\" },
{ "Qml.zip", @"Qml\" },
- { "StudioFonts.zip", @"StudioFonts\" }
+ { "StudioFonts.zip", @"StudioFonts\" },
+ { "RibbonConfig.zip", @"RibbonConfig.zip\" }
};
}
}
From 2de686a71aeeda607b49d2c54c53c2f933dc54b3 Mon Sep 17 00:00:00 2001
From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com>
Date: Fri, 27 Sep 2024 19:04:46 +0100
Subject: [PATCH 3/3] fix ribbonconfig path
---
Bloxstrap/AppData/RobloxStudioData.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Bloxstrap/AppData/RobloxStudioData.cs b/Bloxstrap/AppData/RobloxStudioData.cs
index d3440b3..eb04662 100644
--- a/Bloxstrap/AppData/RobloxStudioData.cs
+++ b/Bloxstrap/AppData/RobloxStudioData.cs
@@ -35,7 +35,7 @@
{ "Plugins.zip", @"Plugins\" },
{ "Qml.zip", @"Qml\" },
{ "StudioFonts.zip", @"StudioFonts\" },
- { "RibbonConfig.zip", @"RibbonConfig.zip\" }
+ { "RibbonConfig.zip", @"RibbonConfig\" }
};
}
}