Skip to content

Commit bc5a1df

Browse files
committed
- require Windows 10 as minimum OS
1 parent b308812 commit bc5a1df

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# **14.3.0**
2+
- **(Windows):** Windows 10 wird als Minimum-OS vorausgesetzt. Ansonsten kann das Programm nicht starten.
23
- interne Geschwindigkeitsverbesserungen.
34
- Filter-Dialog vollständig nach Swing portiert -> u.a. verbesserte Darstellung im Dunkelmodus
45
- **Neuer Startparameter notwendig für Selbstbauer:** `--add-exports=java.desktop/sun.swing=ALL-UNNAMED` muss hinzugefügt werden.

src/main/java/mediathek/Main.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,12 @@ public static void main(final String... args) {
429429
checkJVMSettings();
430430

431431
if (SystemUtils.IS_OS_WINDOWS) {
432-
if (!VersionHelpers.IsWindows10OrGreater())
433-
logger.warn("This Operating System configuration is too old and will be unsupported in the next updates.");
432+
if (!VersionHelpers.IsWindows10OrGreater()) {
433+
JOptionPane.showMessageDialog(null,
434+
"MediathekView benötigt mindestens Windows 10 zum Start.\nDas Programm wird nun beendet.",
435+
Konstanten.PROGRAMMNAME, JOptionPane.ERROR_MESSAGE);
436+
System.exit(1);
437+
}
434438
}
435439

436440
setupCpuAffinity();

0 commit comments

Comments
 (0)