mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Whitespace formatting, move Integrations folder
This commit is contained in:
parent
92c420d888
commit
cc22ee1591
@ -14,9 +14,9 @@ using Microsoft.Win32;
|
||||
|
||||
using Bloxstrap.Dialogs;
|
||||
using Bloxstrap.Helpers;
|
||||
using Bloxstrap.Helpers.Integrations;
|
||||
using Bloxstrap.Helpers.RSMM;
|
||||
using Bloxstrap.Models;
|
||||
using Bloxstrap.Integrations;
|
||||
|
||||
namespace Bloxstrap
|
||||
{
|
||||
|
@ -6,12 +6,13 @@ using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Bloxstrap.Helpers;
|
||||
|
||||
using Bloxstrap.Models;
|
||||
|
||||
using DiscordRPC;
|
||||
|
||||
namespace Bloxstrap.Helpers.Integrations
|
||||
namespace Bloxstrap.Integrations
|
||||
{
|
||||
class DiscordRichPresence : IDisposable
|
||||
{
|
||||
@ -75,7 +76,7 @@ namespace Bloxstrap.Helpers.Integrations
|
||||
return;
|
||||
|
||||
_activityInGame = false;
|
||||
_activityPlaceId = Int64.Parse(match.Groups[2].Value);
|
||||
_activityPlaceId = long.Parse(match.Groups[2].Value);
|
||||
_activityJobId = match.Groups[1].Value;
|
||||
_activityMachineAddress = match.Groups[3].Value;
|
||||
|
||||
@ -160,7 +161,7 @@ namespace Bloxstrap.Helpers.Integrations
|
||||
{
|
||||
string? log = await sr.ReadLineAsync();
|
||||
|
||||
if (String.IsNullOrEmpty(log))
|
||||
if (string.IsNullOrEmpty(log))
|
||||
logUpdatedEvent.WaitOne(1000);
|
||||
else
|
||||
await ExamineLogEntry(log);
|
@ -3,10 +3,11 @@ using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.IO.Compression;
|
||||
using System.Threading.Tasks;
|
||||
using Bloxstrap.Helpers;
|
||||
|
||||
using Bloxstrap.Models;
|
||||
|
||||
namespace Bloxstrap.Helpers.Integrations
|
||||
namespace Bloxstrap.Integrations
|
||||
{
|
||||
internal class RbxFpsUnlocker
|
||||
{
|
@ -7,13 +7,14 @@ using System.IO;
|
||||
using System.IO.Compression;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Bloxstrap.Helpers;
|
||||
|
||||
using Bloxstrap.Models;
|
||||
|
||||
using IniParser;
|
||||
using IniParser.Model;
|
||||
|
||||
namespace Bloxstrap.Helpers.Integrations
|
||||
namespace Bloxstrap.Integrations
|
||||
{
|
||||
internal class ReShade
|
||||
{
|
||||
@ -378,7 +379,7 @@ namespace Bloxstrap.Helpers.Integrations
|
||||
|
||||
string injectorLocation = Path.Combine(Directories.Modifications, "dxgi.dll");
|
||||
|
||||
if (!App.Settings.Prop.UseReShadeExtraviPresets && !String.IsNullOrEmpty(App.State.Prop.ExtraviReShadePresetsVersion))
|
||||
if (!App.Settings.Prop.UseReShadeExtraviPresets && !string.IsNullOrEmpty(App.State.Prop.ExtraviReShadePresetsVersion))
|
||||
{
|
||||
if (Utilities.GetProcessCount("RobloxPlayerBeta") > 0)
|
||||
return;
|
||||
@ -398,7 +399,7 @@ namespace Bloxstrap.Helpers.Integrations
|
||||
|
||||
// we should already be uninstalled
|
||||
// we want to ensure this is done one-time only as this could possibly interfere with other rendering hooks using dxgi.dll
|
||||
if (String.IsNullOrEmpty(App.State.Prop.ReShadeConfigVersion))
|
||||
if (string.IsNullOrEmpty(App.State.Prop.ReShadeConfigVersion))
|
||||
return;
|
||||
|
||||
App.Logger.WriteLine("[ReShade::CheckModifications] Uninstalling ReShade...");
|
Loading…
Reference in New Issue
Block a user