Copyright: readable pill with proper "© 2026 ASTERION VR — All rights reserved"
The previous copyright was a faded TextBlock at Opacity 0.7 with the secondary grey color, sitting directly on top of the variable- luminance background image. Hard to read on the bright spots of the ASTERION VR engraving. Wrap it in a Border with #A0000000 background (~63% opacity black) and CornerRadius=10 — same pill style as the license badge — so the text reads cleanly regardless of what's behind. Foreground is now plain white instead of the secondary grey. Text changed from the terse "© ASTERION VR" to the proper convention: - UI: "© 2026 ASTERION VR — Tous droits réservés" (matches the French-language UI in MainWindow + Settings) - Assembly metadata (Properties → Détails on the .exe): English form "© 2026 ASTERION VR — All rights reserved" Same change applied to PSLauncher.Updater.csproj. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
<AssemblyName>PSLauncher</AssemblyName>
|
<AssemblyName>PSLauncher</AssemblyName>
|
||||||
<Company>ASTERION VR</Company>
|
<Company>ASTERION VR</Company>
|
||||||
<Product>PROSERVE Launcher</Product>
|
<Product>PROSERVE Launcher</Product>
|
||||||
<Copyright>© ASTERION VR</Copyright>
|
<Copyright>© 2026 ASTERION VR — All rights reserved</Copyright>
|
||||||
<RootNamespace>PSLauncher.App</RootNamespace>
|
<RootNamespace>PSLauncher.App</RootNamespace>
|
||||||
<Version>0.7.0</Version>
|
<Version>0.7.0</Version>
|
||||||
<AssemblyVersion>0.7.0.0</AssemblyVersion>
|
<AssemblyVersion>0.7.0.0</AssemblyVersion>
|
||||||
|
|||||||
@@ -496,13 +496,17 @@
|
|||||||
Content="🔄 Vérifier les MAJ"
|
Content="🔄 Vérifier les MAJ"
|
||||||
Command="{Binding CheckForUpdatesCommand}" />
|
Command="{Binding CheckForUpdatesCommand}" />
|
||||||
|
|
||||||
<!-- Copyright flottant en bas-droite, discret -->
|
<!-- Copyright flottant en bas-droite, sur une pill sombre pour rester
|
||||||
<TextBlock HorizontalAlignment="Right" VerticalAlignment="Bottom"
|
lisible quel que soit l'arrière-plan (image, voile noir, etc.). -->
|
||||||
Margin="0,0,32,28"
|
<Border HorizontalAlignment="Right" VerticalAlignment="Bottom"
|
||||||
Text="© ASTERION VR"
|
Margin="0,0,32,28"
|
||||||
FontSize="11"
|
Background="#A0000000"
|
||||||
Foreground="{StaticResource Brush.Text.Secondary}"
|
CornerRadius="10"
|
||||||
Opacity="0.7" />
|
Padding="10,4">
|
||||||
|
<TextBlock Text="© 2026 ASTERION VR — Tous droits réservés"
|
||||||
|
FontSize="11"
|
||||||
|
Foreground="White" />
|
||||||
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<!-- Footer : visible uniquement quand busy / status à afficher.
|
<!-- Footer : visible uniquement quand busy / status à afficher.
|
||||||
|
|||||||
@@ -235,7 +235,7 @@
|
|||||||
<Run Text="Version : " />
|
<Run Text="Version : " />
|
||||||
<Run Text="{Binding LauncherVersion, Mode=OneWay}" FontWeight="SemiBold" />
|
<Run Text="{Binding LauncherVersion, Mode=OneWay}" FontWeight="SemiBold" />
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
<TextBlock Text="© ASTERION VR — Tous droits réservés"
|
<TextBlock Text="© 2026 ASTERION VR — Tous droits réservés"
|
||||||
FontSize="12"
|
FontSize="12"
|
||||||
Foreground="{StaticResource Brush.Text.Secondary}"
|
Foreground="{StaticResource Brush.Text.Secondary}"
|
||||||
Margin="0,4,0,0" />
|
Margin="0,4,0,0" />
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<Version>0.5.0</Version>
|
<Version>0.5.0</Version>
|
||||||
<ApplicationIcon>..\PSLauncher.App\Resources\favicon.ico</ApplicationIcon>
|
<ApplicationIcon>..\PSLauncher.App\Resources\favicon.ico</ApplicationIcon>
|
||||||
<Company>ASTERION VR</Company>
|
<Company>ASTERION VR</Company>
|
||||||
<Copyright>© ASTERION VR</Copyright>
|
<Copyright>© 2026 ASTERION VR — All rights reserved</Copyright>
|
||||||
|
|
||||||
<!-- Single-file self-contained pour le publish (~10 Mo) -->
|
<!-- Single-file self-contained pour le publish (~10 Mo) -->
|
||||||
<PublishSingleFile>true</PublishSingleFile>
|
<PublishSingleFile>true</PublishSingleFile>
|
||||||
|
|||||||
Reference in New Issue
Block a user