diff options
| author | Emmanuel Hansen <emmausssss@gmail.com> | 2022-12-02 13:16:43 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-02 13:16:43 +0000 |
| commit | d9053bbe3745846dd758561e24dd060d76b3ad9d (patch) | |
| tree | 3f37cfc7b2b074205da6f2ec89b52e3508c34c11 /Ryujinx.Ava/Assets | |
| parent | c25e8427aa40a4ae920496220fd1e1621eff178b (diff) | |
Avalonia - Save Manager (#3476)
* Add save manager to account selector
* add fallback to app metadata for titlename if app is not in gamelist
* Allow recovering lost accounts
Diffstat (limited to 'Ryujinx.Ava/Assets')
| -rw-r--r-- | Ryujinx.Ava/Assets/Locales/en_US.json | 15 | ||||
| -rw-r--r-- | Ryujinx.Ava/Assets/Styles/BaseDark.xaml | 3 | ||||
| -rw-r--r-- | Ryujinx.Ava/Assets/Styles/Styles.xaml | 15 |
3 files changed, 24 insertions, 9 deletions
diff --git a/Ryujinx.Ava/Assets/Locales/en_US.json b/Ryujinx.Ava/Assets/Locales/en_US.json index 4561ad8b..be3071cc 100644 --- a/Ryujinx.Ava/Assets/Locales/en_US.json +++ b/Ryujinx.Ava/Assets/Locales/en_US.json @@ -596,7 +596,18 @@ "RyujinxUpdaterMessage": "Do you want to update Ryujinx to the latest version?", "SettingsTabHotkeysVolumeUpHotkey": "Increase Volume:", "SettingsTabHotkeysVolumeDownHotkey": "Decrease Volume:", - "VolumeShort": "Vol", "SettingsEnableMacroHLE": "Enable Macro HLE", - "SettingsEnableMacroHLETooltip": "High-level emulation of GPU Macro code.\n\nImproves performance, but may cause graphical glitches in some games.\n\nLeave ON if unsure." + "SettingsEnableMacroHLETooltip": "High-level emulation of GPU Macro code.\n\nImproves performance, but may cause graphical glitches in some games.\n\nLeave ON if unsure.", + "VolumeShort": "Vol", + "UserProfilesManageSaves": "Manage Saves", + "DeleteUserSave": "Do you want to delete user save for this game?", + "IrreversibleActionNote": "This action is not reversible.", + "SaveManagerHeading": "Manage Saves for {0}", + "SaveManagerTitle": "Save Manager", + "Name": "Name", + "Size": "Size", + "Search": "Search", + "UserProfilesRecoverLostAccounts": "Recover Lost Accounts", + "Recover": "Recover", + "UserProfilesRecoverHeading" : "Saves were found for the following accounts" } diff --git a/Ryujinx.Ava/Assets/Styles/BaseDark.xaml b/Ryujinx.Ava/Assets/Styles/BaseDark.xaml index 074b1661..fbd4d4b3 100644 --- a/Ryujinx.Ava/Assets/Styles/BaseDark.xaml +++ b/Ryujinx.Ava/Assets/Styles/BaseDark.xaml @@ -41,6 +41,9 @@ <SolidColorBrush x:Key="DataGridSelectionBackgroundBrush" Color="{DynamicResource DataGridSelectionColor}" /> <SolidColorBrush x:Key="ThemeAccentColorBrush" Color="{DynamicResource SystemAccentColor}" /> <SolidColorBrush x:Key="ThemeAccentBrush4" Color="{DynamicResource ThemeAccentColor4}" /> + <Color x:Key="ControlFillColorSecondary">#008AA8</Color> + <SolidColorBrush x:Key="ControlFillColorSecondaryBrush" Color="{StaticResource ControlFillColorSecondary}" /> + <StaticResource x:Key="ButtonBackgroundPointerOver" ResourceKey="ControlFillColorSecondaryBrush" /> <Color x:Key="SystemAccentColor">#FF00C3E3</Color> <Color x:Key="SystemAccentColorDark1">#FF99b000</Color> <Color x:Key="SystemAccentColorDark2">#FF006d7d</Color> diff --git a/Ryujinx.Ava/Assets/Styles/Styles.xaml b/Ryujinx.Ava/Assets/Styles/Styles.xaml index 8b09bafd..8f7c2e73 100644 --- a/Ryujinx.Ava/Assets/Styles/Styles.xaml +++ b/Ryujinx.Ava/Assets/Styles/Styles.xaml @@ -1,7 +1,6 @@ <Styles xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - xmlns:sys="clr-namespace:System;assembly=netstandard" xmlns:ui="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia"> <Design.PreviewWith> <Border Height="2000" Padding="20"> @@ -269,13 +268,15 @@ <Color x:Key="DataGridSelectionColor">#FF00FABB</Color> <Color x:Key="ThemeContentBackgroundColor">#FF2D2D2D</Color> <Color x:Key="ThemeControlBorderColor">#FF505050</Color> - <sys:Double x:Key="ScrollBarThickness">15</sys:Double> - <sys:Double x:Key="FontSizeSmall">8</sys:Double> - <sys:Double x:Key="FontSizeNormal">10</sys:Double> - <sys:Double x:Key="FontSize">12</sys:Double> - <sys:Double x:Key="FontSizeLarge">15</sys:Double> - <sys:Double x:Key="ControlContentThemeFontSize">13</sys:Double> + <x:Double x:Key="ScrollBarThickness">15</x:Double> + <x:Double x:Key="FontSizeSmall">8</x:Double> + <x:Double x:Key="FontSizeNormal">10</x:Double> + <x:Double x:Key="FontSize">12</x:Double> + <x:Double x:Key="FontSizeLarge">15</x:Double> + <x:Double x:Key="ControlContentThemeFontSize">13</x:Double> <x:Double x:Key="MenuItemHeight">26</x:Double> <x:Double x:Key="TabItemMinHeight">28</x:Double> + <x:Double x:Key="ContentDialogMaxWidth">600</x:Double> + <x:Double x:Key="ContentDialogMaxHeight">756</x:Double> </Styles.Resources> </Styles>
\ No newline at end of file |
