Skip to content

Commit

Permalink
Add check for updates checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
xoascf committed Apr 27, 2024
1 parent ebeaa29 commit f4bf740
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions RetroBar/Languages/English.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<s:String x:Key="taskbar_scale_2x">200%</s:String>
<s:String x:Key="taskbar_scale_current">Current setting: {0}%</s:String>
<s:String x:Key="debug_logging">Enable debug logging</s:String>
<s:String x:Key="check_for_updates">Check for updates</s:String>
<s:String x:Key="ok_dialog">OK</s:String>

<s:String x:Key="customize_notifications">Customize Notifications</s:String>
Expand Down
1 change: 1 addition & 0 deletions RetroBar/Languages/español.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<s:String x:Key="taskbar_scale_2x">200%</s:String>
<s:String x:Key="taskbar_scale_current">Configuración actual: {0}%</s:String>
<s:String x:Key="debug_logging">Habilitar registro de depuración</s:String>
<s:String x:Key="check_for_updates">Comprobar actualizaciones</s:String>
<s:String x:Key="ok_dialog">Aceptar</s:String>

<s:String x:Key="customize_notifications">Personalizar notificaciones</s:String>
Expand Down
4 changes: 4 additions & 0 deletions RetroBar/PropertiesWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@
IsChecked="{Binding Source={x:Static Settings:Settings.Instance}, Path=DebugLogging, UpdateSourceTrigger=PropertyChanged}">
<Label Content="{DynamicResource debug_logging}" />
</CheckBox>
<CheckBox x:Name="cbCheckForUpdates"
IsChecked="{Binding Source={x:Static Settings:Settings.Instance}, Path=Updates, UpdateSourceTrigger=PropertyChanged}">
<Label Content="{DynamicResource check_for_updates}" />
</CheckBox>
<DockPanel>
<Label VerticalAlignment="Center"
Target="{Binding ElementName=cboInvertIconsMode}">
Expand Down

0 comments on commit f4bf740

Please sign in to comment.