Skip to content

Commit

Permalink
Added three new MediaLinkStyles
Browse files Browse the repository at this point in the history
  • Loading branch information
BoiHanny committed Oct 28, 2024
1 parent fa6f5b3 commit 232c49d
Showing 1 changed file with 74 additions and 31 deletions.
105 changes: 74 additions & 31 deletions vrcosc-magicchatbox/Classes/DataAndSecurity/DataController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ private static void CheckForSpecialMessages(ObservableCollection<StatusItem> sta
{
ViewModel.Instance.Egg_Dev = true;
}
if(statusList.Any(x => x.msg.Equals("izurubae", StringComparison.OrdinalIgnoreCase)))
if (statusList.Any(x => x.msg.Equals("izurubae", StringComparison.OrdinalIgnoreCase)))
{
ViewModel.Instance.IzuruBaeMode = true;
}
Expand Down Expand Up @@ -1218,44 +1218,87 @@ public static ObservableCollection<MediaLinkStyle> DefaultMediaLinkStyles()
{
ID = 3,
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "●",
MiddleCharacter = "◐",
NonFilledCharacter = "○",
TimePrefix = "「",
TimeSuffix = "」",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "●",
MiddleCharacter = "◐",
NonFilledCharacter = "○",
TimePrefix = "「",
TimeSuffix = "」",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
},
new MediaLinkStyle
{
ID = 4,
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "♣",
MiddleCharacter = "♠",
NonFilledCharacter = "○",
TimePrefix = "【",
TimeSuffix = "】",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "♣",
MiddleCharacter = "♠",
NonFilledCharacter = "○",
TimePrefix = "【",
TimeSuffix = "】",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
},
new MediaLinkStyle
{
ID = 5,
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "★",
MiddleCharacter = "✴",
NonFilledCharacter = "☆",
TimePrefix = "«",
TimeSuffix = "»",
SpaceBetweenPreSuffixAndTime = true,
SystemDefault = true
ID = 5,
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "★",
MiddleCharacter = "✴",
NonFilledCharacter = "☆",
TimePrefix = "«",
TimeSuffix = "»",
SpaceBetweenPreSuffixAndTime = true,
SystemDefault = true
},
new MediaLinkStyle
{
ID = 6,
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "▞",
MiddleCharacter = "▞",
NonFilledCharacter = "━",
TimePrefix = "┣",
TimeSuffix = "┫",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
},
new MediaLinkStyle
{
ID = 7,
ProgressBarLength = 8,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "◉",
MiddleCharacter = "◉",
NonFilledCharacter = "◎",
TimePrefix = "",
TimeSuffix = "",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
},
new MediaLinkStyle
{
ID = 8,
ProgressBarLength = 7,
DisplayTime = true,
ShowTimeInSuperscript = true,
FilledCharacter = "┅",
MiddleCharacter = "🕷️",
NonFilledCharacter = "┅",
TimePrefix = "🧙",
TimeSuffix = "🕸️",
SpaceBetweenPreSuffixAndTime = false,
SystemDefault = true
},

};
}

Expand Down

0 comments on commit 232c49d

Please sign in to comment.