enhance: add note about deprecated Wine usage and native builds in update check dialog

This commit is contained in:
Ansgar Becker
2026-02-22 20:18:07 +01:00
parent af9a73c13e
commit 05886c43da

View File

@@ -165,7 +165,10 @@ begin
ReleasePackage := IfThen(AppSettings.PortableMode, 'portable', 'installer');
memoRelease.Lines.Add(f_('Version %s (yours: %s)', [ReleaseVersion, Mainform.AppVersion]));
memoRelease.Lines.Add(f_('Released: %s', [Ini.ReadString(INISECT_RELEASE, 'Date', '')]));
Note := Ini.ReadString(INISECT_RELEASE, 'Note', '');
if IsWine then
Note := _('Wine support is deprecated. Future versions will not work reliably. Use the native Linux or macOS releases instead.')
else
Note := Ini.ReadString(INISECT_RELEASE, 'Note', '');
if Note <> '' then
memoRelease.Lines.Add(_('Notes') + ': ' + Note);