mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
* add background updating * add RobloxState * fix potential race condition with RobloxState * update ForceRobloxReinstallation in menu * disable AssertReadOnlyDirectory * add storage space check * add logging to IsEligibleForBackgroundUpdate * add a setting to toggle background updates * fix mutex names being mixed up * update string * update strings * update strings
27 lines
714 B
C#
27 lines
714 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.AppData
|
|
{
|
|
public class RobloxPlayerData : CommonAppData, IAppData
|
|
{
|
|
public string ProductName => "Roblox";
|
|
|
|
public string BinaryType => "WindowsPlayer";
|
|
|
|
public string RegistryName => "RobloxPlayer";
|
|
|
|
public override string ExecutableName => "RobloxPlayerBeta.exe";
|
|
|
|
public override AppState State => App.RobloxState.Prop.Player;
|
|
|
|
public override IReadOnlyDictionary<string, string> PackageDirectoryMap { get; set; } = new Dictionary<string, string>()
|
|
{
|
|
{ "RobloxApp.zip", @"" }
|
|
};
|
|
}
|
|
}
|