Skip to content

Commit

Permalink
Add missing AutoUpdater files
Browse files Browse the repository at this point in the history
  • Loading branch information
Soapwood committed Jun 29, 2024
1 parent 7084f94 commit 86e3264
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
Binary file added VXAutoUpdater/Fonts/Brushstrike trial.ttf
Binary file not shown.
42 changes: 42 additions & 0 deletions VXAutoUpdater/Theme/MenuButtonTheme.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:custom="clr-namespace:VXAutoUpdaterDesktop.Theme">

<SolidColorBrush x:Key="PrimaryColor" Color="{Binding Source={x:Static custom:ColourSchemeManager.PrimaryColour}, Path=Color}" />
<SolidColorBrush x:Key="SecondaryColor" Color="{Binding Source={x:Static custom:ColourSchemeManager.SecondaryColour}, Path=Color}" />
<SolidColorBrush x:Key="Accent1Colour" Color="{Binding Source={x:Static custom:ColourSchemeManager.Accent1Colour}, Path=Color}" />
<SolidColorBrush x:Key="Accent2Colour" Color="{Binding Source={x:Static custom:ColourSchemeManager.Accent2Colour}, Path=Color}" />
<SolidColorBrush x:Key="TextBasic" Color="{Binding Source={x:Static custom:ColourSchemeManager.TextBasic}, Path=Color}" />

<Style BasedOn="{StaticResource {x:Type ToggleButton}}"
TargetType="{x:Type RadioButton}"
x:Key="MenuButtonTheme">
<Style.Setters>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="RadioButton">
<Grid VerticalAlignment="Stretch"
HorizontalAlignment="Stretch"
Background="{TemplateBinding Background}">

<TextBlock Text="{TemplateBinding Property=Content}"
VerticalAlignment="Center"
Margin="50,0,0,0"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>

<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
</Style.Setters>

<Style.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter Property="Background" Value="{StaticResource SecondaryColor}"/>
</Trigger>

</Style.Triggers>
</Style>

</ResourceDictionary>
10 changes: 10 additions & 0 deletions VXAutoUpdater/app.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
6 changes: 6 additions & 0 deletions VXMusic.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VXMusic", "VXMusic\VXMusic.
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VXMusicDesktop", "VXMusicDesktop\VXMusicDesktop.csproj", "{F1809D99-06D4-4E9E-8FAD-27AE88AE92DD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VXAutoUpdater", "VXAutoUpdater\VXAutoUpdater.csproj", "{4105C969-2E23-4D62-BFCB-77C008389FE1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,6 +23,10 @@ Global
{F1809D99-06D4-4E9E-8FAD-27AE88AE92DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F1809D99-06D4-4E9E-8FAD-27AE88AE92DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F1809D99-06D4-4E9E-8FAD-27AE88AE92DD}.Release|Any CPU.Build.0 = Release|Any CPU
{4105C969-2E23-4D62-BFCB-77C008389FE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4105C969-2E23-4D62-BFCB-77C008389FE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4105C969-2E23-4D62-BFCB-77C008389FE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4105C969-2E23-4D62-BFCB-77C008389FE1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 86e3264

Please sign in to comment.