v1.19 — Bug fixes, Hungarian accents, better error handling
- Fix: Back button was always visible (ternary always returned Visible)
- Fix: Missing Hungarian accents on EditionPage ("Válasszon kiadást")
- Fix: Better ODT download error messages (network/timeout distinguished)
- Signed with Azure Trusted Signing (Microsoft root CA, instant SmartScreen trust)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -9,9 +9,9 @@
|
|||||||
<Company>InstaSoft Zrt.</Company>
|
<Company>InstaSoft Zrt.</Company>
|
||||||
<Product>InstaSoft Office Tool</Product>
|
<Product>InstaSoft Office Tool</Product>
|
||||||
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
|
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
|
||||||
<Version>1.1.7</Version>
|
<Version>1.1.9</Version>
|
||||||
<AssemblyVersion>1.1.7.0</AssemblyVersion>
|
<AssemblyVersion>1.1.9.0</AssemblyVersion>
|
||||||
<FileVersion>1.1.7.0</FileVersion>
|
<FileVersion>1.1.9.0</FileVersion>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/>
|
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<TextBlock Text="v1.17" HorizontalAlignment="Right" VerticalAlignment="Center"
|
<TextBlock Text="v1.19" HorizontalAlignment="Right" VerticalAlignment="Center"
|
||||||
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
|
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ namespace InstaSoftOfficeTool
|
|||||||
|
|
||||||
private void UpdateButtons()
|
private void UpdateButtons()
|
||||||
{
|
{
|
||||||
BtnBack.Visibility = _currentPageIndex > 0 ? Visibility.Visible : Visibility.Visible;
|
BtnBack.Visibility = _currentPageIndex > 0 ? Visibility.Visible : Visibility.Collapsed;
|
||||||
BtnNext.Visibility = Visibility.Visible;
|
BtnNext.Visibility = Visibility.Visible;
|
||||||
|
|
||||||
// On SummaryPage = "Tov\u00e1bb"
|
// On SummaryPage = "Tov\u00e1bb"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<StackPanel Grid.Row="0" Margin="0,0,0,24">
|
<StackPanel Grid.Row="0" Margin="0,0,0,24">
|
||||||
<TextBlock x:Name="TitleText" Text="Valasszon kiadast" FontSize="24" FontWeight="Light"/>
|
<TextBlock x:Name="TitleText" Text="Válasszon kiadást" FontSize="24" FontWeight="Light"/>
|
||||||
<TextBlock x:Name="SubtitleText" FontSize="14"
|
<TextBlock x:Name="SubtitleText" FontSize="14"
|
||||||
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
|
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ namespace InstaSoftOfficeTool.Pages
|
|||||||
_config = config;
|
_config = config;
|
||||||
_editions = OfficeEdition.GetEditions(_config.Version);
|
_editions = OfficeEdition.GetEditions(_config.Version);
|
||||||
|
|
||||||
SubtitleText.Text = _config.GetVersionDisplayName() + " — melyik kiadast szeretne?";
|
SubtitleText.Text = _config.GetVersionDisplayName() + " \u2014 melyik kiad\u00e1st szeretn\u00e9?";
|
||||||
|
|
||||||
BuildEditionCards();
|
BuildEditionCards();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,6 +85,17 @@ namespace InstaSoftOfficeTool.Services
|
|||||||
StatusChanged?.Invoke("ODT setup.exe k\u00e9sz.");
|
StatusChanged?.Invoke("ODT setup.exe k\u00e9sz.");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
catch (System.Net.Http.HttpRequestException ex)
|
||||||
|
{
|
||||||
|
StatusChanged?.Invoke("H\u00e1l\u00f3zati hiba: Nincs internetkapcsolat vagy a szerver nem el\u00e9rhet\u0151.");
|
||||||
|
StatusChanged?.Invoke("R\u00e9szletek: " + ex.Message);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
catch (TaskCanceledException)
|
||||||
|
{
|
||||||
|
StatusChanged?.Invoke("Id\u0151t\u00fall\u00e9p\u00e9s: A let\u00f6lt\u00e9s t\u00fal sok\u00e1ig tartott. Ellen\u0151rizze az internetkapcsolatot.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
StatusChanged?.Invoke("Hiba: " + ex.GetType().Name + ": " + ex.Message);
|
StatusChanged?.Invoke("Hiba: " + ex.GetType().Name + ": " + ex.Message);
|
||||||
|
|||||||
Reference in New Issue
Block a user