mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
* add functionality for grabbing userid * Create UserInfoResponse.cs * add user pfp small image thingy * add missing semicolons * get rid of semicolons * debugging (remove later) * make properties nullable * forgot to put dollar sign before interpolated string * make properties that cant be nullable not nullable * more debugging * remove thing * remove other thing * remove thing (again) (again) * remove thing (again) (again) (again) * add space between username and displayname to make it more visually pleasing * matt review changes (better code readability) * add strings for show account on profile * add AccountShownOnProfile setting * add DiscordActivityJoinEnabled to integrations viewmodel * fix accidentally swapping 2 variables * refrence correct variables * refrence correct variables (again) * add showaccountonprofile strings * add option to integrations page * add missing < that somehow got lost * make that its own option * dont invert that value * dont invert that (again) * Update IntegrationsViewModel.cs * fix grammatical issue in string * move else to new line * fix merge conflicts * move gameJoinLoadTime check * matt review changes * handle if parsing userid fails --------- Co-authored-by: pizzaboxer <pizzaboxer@pizzaboxer.xyz>
32 lines
1.4 KiB
C#
32 lines
1.4 KiB
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Bloxstrap.Models.Persistable
|
|
{
|
|
public class Settings
|
|
{
|
|
// bloxstrap configuration
|
|
public BootstrapperStyle BootstrapperStyle { get; set; } = BootstrapperStyle.FluentDialog;
|
|
public BootstrapperIcon BootstrapperIcon { get; set; } = BootstrapperIcon.IconBloxstrap;
|
|
public string BootstrapperTitle { get; set; } = App.ProjectName;
|
|
public string BootstrapperIconCustomLocation { get; set; } = "";
|
|
public Theme Theme { get; set; } = Theme.Default;
|
|
public bool CheckForUpdates { get; set; } = true;
|
|
public bool ConfirmLaunches { get; set; } = false;
|
|
public string Locale { get; set; } = "nil";
|
|
public bool ForceRobloxLanguage { get; set; } = false;
|
|
public bool UseFastFlagManager { get; set; } = true;
|
|
public bool WPFSoftwareRender { get; set; } = false;
|
|
|
|
// integration configuration
|
|
public bool EnableActivityTracking { get; set; } = true;
|
|
public bool UseDiscordRichPresence { get; set; } = true;
|
|
public bool HideRPCButtons { get; set; } = true;
|
|
public bool AccountShownOnProfile { get; set; } = true;
|
|
public bool ShowServerDetails { get; set; } = false;
|
|
public ObservableCollection<CustomIntegration> CustomIntegrations { get; set; } = new();
|
|
|
|
// mod preset configuration
|
|
public bool UseDisableAppPatch { get; set; } = false;
|
|
}
|
|
}
|