File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# ** 14.3.0**
2
+ - ** (Windows):** Windows 10 wird als Minimum-OS vorausgesetzt. Ansonsten kann das Programm nicht starten.
2
3
- interne Geschwindigkeitsverbesserungen.
3
4
- Filter-Dialog vollständig nach Swing portiert -> u.a. verbesserte Darstellung im Dunkelmodus
4
5
- ** Neuer Startparameter notwendig für Selbstbauer:** ` --add-exports=java.desktop/sun.swing=ALL-UNNAMED ` muss hinzugefügt werden.
Original file line number Diff line number Diff line change @@ -429,8 +429,12 @@ public static void main(final String... args) {
429
429
checkJVMSettings ();
430
430
431
431
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.\n Das Programm wird nun beendet." ,
435
+ Konstanten .PROGRAMMNAME , JOptionPane .ERROR_MESSAGE );
436
+ System .exit (1 );
437
+ }
434
438
}
435
439
436
440
setupCpuAffinity ();
You can’t perform that action at this time.
0 commit comments