mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
9016f96b6a
- Code clean-ups - Added "Copy File" support in mafile context menu - Added hotkeys support to "Copy Login" and "Copy File" commands - Added experimental feature "Ignore Patch Tuesday errors" - Added MAAC batch control - Added SessionID client-side generation in MafileSerializer to support mafiles without SessionID (especially from SDA) - SplashScreen.png was slightly enhanced
49 lines
2.9 KiB
XML
49 lines
2.9 KiB
XML
<Application x:Class="NebulaAuth.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:converters="clr-namespace:NebulaAuth.Converters"
|
|
xmlns:system="clr-namespace:System;assembly=System.Runtime"
|
|
xmlns:background="clr-namespace:NebulaAuth.Converters.Background"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<SolidColorBrush x:Key="MaterialDesignPaper">#1E2025</SolidColorBrush>
|
|
<FontFamily x:Key="Roboto">pack://application:,,,/Fonts/Roboto/#Roboto</FontFamily>
|
|
<FontFamily x:Key="RobotoSymbols">pack://application:,,,/Fonts/Roboto/#Roboto Symbols</FontFamily>
|
|
<converters:CoefficientConverter x:Key="CoefficientConverter"/>
|
|
<converters:ReverseBooleanConverter x:Key="ReverseBooleanConverter"/>
|
|
<converters:ProxyTextConverter x:Key="ProxyTextConverter"/>
|
|
<converters:ProxyDataTextConverter x:Key="ProxyDataTextConverter"/>
|
|
<converters:MultiCommandParameterConverter x:Key="MultiCommandParameterConverter"/>
|
|
<converters:ColorToBrushConverter x:Key="ColorToBrushConverter"/>
|
|
<converters:AnyMafilesToVisibilityConverter x:Key="AnyMafilesToVisibilityConverter"/>
|
|
<converters:PortableMaClientStatusToColorConverter x:Key="PortableMaClientStatusToColorConverter"/>
|
|
<!-- Background converters-->
|
|
<background:BackgroundImageVisibleConverter x:Key="BackgroundImageVisibleConverter"/>
|
|
<background:BackgroundSourceConverter x:Key="BackgroundSourceConverter"/>
|
|
|
|
<system:Boolean x:Key="True">True</system:Boolean>
|
|
<system:Boolean x:Key="False">False</system:Boolean>
|
|
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
|
|
<materialDesign:BundledTheme BaseTheme="Dark" PrimaryColor="LightGreen" SecondaryColor="Purple" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/materialdesigntheme.snackbar.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/materialdesigntheme.Dark.xaml" />
|
|
<!-- Theme-->
|
|
<ResourceDictionary Source="Theme/Brushes.xaml"/>
|
|
<ResourceDictionary Source="Theme/WindowStyle/WindowStyle.xaml"/>
|
|
|
|
<!--Controls-->
|
|
<ResourceDictionary Source="View/ConfirmationTemplates.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
</Application>
|