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:
hariel1985
2026-04-06 17:04:11 +02:00
szülő 53ae21dd87
commit 8e4ad331f1
6 fájl változott, egészen pontosan 18 új sor hozzáadva és 7 régi sor törölve

Fájl megtekintése

@@ -9,9 +9,9 @@
<Company>InstaSoft Zrt.</Company>
<Product>InstaSoft Office Tool</Product>
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
<Version>1.1.7</Version>
<AssemblyVersion>1.1.7.0</AssemblyVersion>
<FileVersion>1.1.7.0</FileVersion>
<Version>1.1.9</Version>
<AssemblyVersion>1.1.9.0</AssemblyVersion>
<FileVersion>1.1.9.0</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>latest</LangVersion>
</PropertyGroup>

Fájl megtekintése

@@ -45,7 +45,7 @@
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/>
</StackPanel>
</StackPanel>
<TextBlock Text="v1.17" HorizontalAlignment="Right" VerticalAlignment="Center"
<TextBlock Text="v1.19" HorizontalAlignment="Right" VerticalAlignment="Center"
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
</Grid>
</Border>

Fájl megtekintése

@@ -121,7 +121,7 @@ namespace InstaSoftOfficeTool
private void UpdateButtons()
{
BtnBack.Visibility = _currentPageIndex > 0 ? Visibility.Visible : Visibility.Visible;
BtnBack.Visibility = _currentPageIndex > 0 ? Visibility.Visible : Visibility.Collapsed;
BtnNext.Visibility = Visibility.Visible;
// On SummaryPage = "Tov\u00e1bb"

Fájl megtekintése

@@ -10,7 +10,7 @@
</Grid.RowDefinitions>
<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"
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
</StackPanel>

Fájl megtekintése

@@ -17,7 +17,7 @@ namespace InstaSoftOfficeTool.Pages
_config = config;
_editions = OfficeEdition.GetEditions(_config.Version);
SubtitleText.Text = _config.GetVersionDisplayName() + " melyik kiadast szeretne?";
SubtitleText.Text = _config.GetVersionDisplayName() + " \u2014 melyik kiad\u00e1st szeretn\u00e9?";
BuildEditionCards();
}

Fájl megtekintése

@@ -85,6 +85,17 @@ namespace InstaSoftOfficeTool.Services
StatusChanged?.Invoke("ODT setup.exe k\u00e9sz.");
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)
{
StatusChanged?.Invoke("Hiba: " + ex.GetType().Name + ": " + ex.Message);