bump version, add button labels

This commit is contained in:
Jakob 2023-09-28 22:46:19 +02:00
parent e8af34b79c
commit 02984e0d2b
5 changed files with 20 additions and 5 deletions

View file

@ -46,9 +46,9 @@
Severity="Informational" /> Severity="Informational" />
<ui:Button x:Name="buttonSkipVersion" Margin="8,0,0,0" Grid.Column="1" Appearance="Dark" Icon="ArrowForward24" Visibility="Collapsed" ToolTip="{x:Static p:Resources.ui_skipversion}" Click="buttonSkipVersion_Click" /> <ui:Button x:Name="buttonSkipVersion" Margin="8,0,0,0" Grid.Column="1" Appearance="Dark" Icon="ArrowForward24" Visibility="Collapsed" ToolTip="{x:Static p:Resources.ui_skipversion}" Click="buttonSkipVersion_Click" />
<ui:Button x:Name="buttonDownload" Margin="8,0,0,0" MinWidth="100" Grid.Column="2" Appearance="Primary" Icon="ArrowDownload24" Visibility="Collapsed" Click="buttonDownload_Click" /> <ui:Button x:Name="buttonDownload" Margin="8,0,0,0" MinWidth="100" Grid.Column="2" Appearance="Primary" Content="{x:Static p:Resources.ui_download}" Icon="ArrowDownload24" Visibility="Visible" Click="buttonDownload_Click" />
<ui:Button x:Name="buttonInstall" Margin="8,0,0,0" MinWidth="100" Grid.Column="2" Appearance="Primary" Icon="AppsAddIn24" Visibility="Collapsed" Click="buttonInstall_Click" /> <ui:Button x:Name="buttonInstall" Margin="8,0,0,0" MinWidth="100" Grid.Column="2" Appearance="Primary" Content="{x:Static p:Resources.ui_install}" Icon="AppsAddIn24" Visibility="Collapsed" Click="buttonInstall_Click" />
</Grid> </Grid>
<ProgressBar x:Name="progressbarDownload" Grid.Row="2" Value="0" Visibility="Collapsed"/> <ProgressBar x:Name="progressbarDownload" Grid.Row="2" Value="0" Visibility="Collapsed"/>

View file

@ -49,5 +49,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.0")] [assembly: AssemblyVersion("3.1")]
[assembly: AssemblyFileVersion("3.0")] [assembly: AssemblyFileVersion("3.1")]

View file

@ -249,6 +249,15 @@ namespace EnvyUpdate.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to Download.
/// </summary>
public static string ui_download {
get {
return ResourceManager.GetString("ui_download", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Enable logging to file. /// Looks up a localized string similar to Enable logging to file.
/// </summary> /// </summary>

View file

@ -180,6 +180,9 @@
<data name="ui_autostart" xml:space="preserve"> <data name="ui_autostart" xml:space="preserve">
<value>Beim Start von Windows ausführen</value> <value>Beim Start von Windows ausführen</value>
</data> </data>
<data name="ui_download" xml:space="preserve">
<value>Herunterladen</value>
</data>
<data name="ui_enable_logging" xml:space="preserve"> <data name="ui_enable_logging" xml:space="preserve">
<value>Programm-Log in Datei schreiben</value> <value>Programm-Log in Datei schreiben</value>
</data> </data>

View file

@ -180,6 +180,9 @@
<data name="ui_autostart" xml:space="preserve"> <data name="ui_autostart" xml:space="preserve">
<value>Run at Windows startup</value> <value>Run at Windows startup</value>
</data> </data>
<data name="ui_download" xml:space="preserve">
<value>Download</value>
</data>
<data name="ui_enable_logging" xml:space="preserve"> <data name="ui_enable_logging" xml:space="preserve">
<value>Enable logging to file</value> <value>Enable logging to file</value>
</data> </data>