From 6f423a6b93b6f106df7e4abdb3dddd2223642d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Mon, 30 Mar 2020 18:22:44 +0200 Subject: [PATCH] 1.10.8 RELEASE --- CHANGELOG.txt | 61 +++++++++++++++++++ src/main/de/jClipCorn/Main.java | 4 +- .../util/helper/ApplicationHelper.java | 2 +- 3 files changed, 64 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a7791f41..10b0047b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,66 @@ +######################################################################## +############ Mon Mar 30 18:22:44 2020 +0200 1.10.8 RELEASE ############ +######################################################################## + + +1.10.8 Bugfix: Fixed net use parser for empty result +1.10.8 Bugfix: Fixed vlc connection with other localizations +1.10.8 Feature: Added help text to vlc robot +1.10.8 Bugfix: Fixed updateSeasonInDatabase and UniTests +1.10.8 Feature: Add new DatabaseError: ERROR_INVALID_CHARACTERS +1.10.8 Feature: Load History data async +1.10.8 Task: Remove redundant [SERIESID] <> [LOCALID] columns +1.10.8 Feature: Remove (now-redundant) viewed field from database and models +1.10.8 Feature: Allow shortcuts in series frame +1.10.8 Bugfix: Fix vlc autoPlay with files containing special characters +1.10.8 Bugfix: Fix selection-by-key in EnumComboBox +1.10.8 Task: autoResize AddMultipleEpisodes Table on change +1.10.8 Task: Use [getSemiCommonLanguages] also for MainTable +1.10.8 Feature: Show and Change update frequency in VLCRobotFrame +1.10.8 Feature: Logtab for VLCRobotFrame +1.10.8 Bugfix: Fixed clicking on whitespace in MainTable triggering event +1.10.8 Task: Ignore very short (percentual) parts of series in folder lang +1.10.8 Task: Log errors from SingUtilities.[invokeLater|invokeAndWait] +1.10.8 Bugfix: Fix over-sensitive change detection in DateTimeListEditor +1.10.8 Feature: Show Dialog if SetViewed fails +1.10.8 Feature: Edit Episode ViewedHistory in BatchEditFrame +1.10.8 Task: (TravisCI) update CI to JDK-12 +1.10.8 Feature: VLCRobot [FIN] +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Task: Upgrade to JDK-14 + - update gradle + - update gradle wrapper + - remove PROP_DISABLE_SSL setting + - remove deprecated ShellFolder UNC path query method + - remove other deprecated methods +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Task: Set VLC Path from InitialConfigFrame +1.10.8 Task: New (and improved) TableColumnAdjuster +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Feature: VLCRobot [WIP] +1.10.8 Bugfix: Fix layout of Extended Settings Frame +1.10.8 Task: Make copy-error in AddMultiEpisodesFrame non-fatal +1.10.8 Bugfix: Fix exception in Statistics[UserScore] +1.10.8 Feature: Sort elements in FilterTree +1.10.8 Feature: Add language 20:Korean +1.10.8 Feature: Show DB history of Series/Seasons/Episodes +1.10.8 Bugfix: Fixed display of genres in ParseOnlineDialog +1.10.8 Task: Made EnumComboBoxes typesafe and allowed ordering+filtering in them +1.10.8 Feature: New UserScore value: [RMID] +1.10.8 Bugfix: Fixed Genre parser for MAL remote +1.10.8 Task: Smaller default height for AddMovieFrame in Win design +1.10.8 Bugfix: Fixed Genre parser for MAL remote +1.10.8 Bugfix: Fixed AddEpisode with unchanged path +1.10.8 Bugfix: Fixed NPE in TMDB parser +1.10.8 Task: Remove Eclipse localization warnings +1.10.8 Bugfix: Fixed LAST_ID filter not woking without aggressive history merge + + ######################################################################## ############ Sat Oct 12 20:58:11 2019 +0200 1.10.7 RELEASE ############ ######################################################################## diff --git a/src/main/de/jClipCorn/Main.java b/src/main/de/jClipCorn/Main.java index 8cdd7a38..f496ea2d 100644 --- a/src/main/de/jClipCorn/Main.java +++ b/src/main/de/jClipCorn/Main.java @@ -28,14 +28,14 @@ public class Main { public final static String TITLE = "jClipCorn"; //$NON-NLS-1$ - public final static String VERSION = /**/"1.10.7.13"/**/; //$NON-NLS-1$ + public final static String VERSION = /**/"1.10.8"/**/; //$NON-NLS-1$ public final static String DBVERSION = "17"; //$NON-NLS-1$ public final static String JXMLVER = "5"; //$NON-NLS-1$ private final static String PROPERTIES_PATH = "jClipcorn.properties"; //$NON-NLS-1$ public static boolean DEBUG = "true".equals(System.getProperty("ineclipse")); //$NON-NLS-1$//$NON-NLS-2$ - public static boolean BETA = true; + public static boolean BETA = false; public static void main(String[] arg) { Globals.TIMINGS.start(Globals.TIMING_STARTUP_TOTAL); diff --git a/src/main/de/jClipCorn/util/helper/ApplicationHelper.java b/src/main/de/jClipCorn/util/helper/ApplicationHelper.java index 7267c946..eb81907c 100644 --- a/src/main/de/jClipCorn/util/helper/ApplicationHelper.java +++ b/src/main/de/jClipCorn/util/helper/ApplicationHelper.java @@ -151,7 +151,7 @@ public static List> getNetUse() throws Ex if (CCStreams.iterate(lines).any(p -> p.toLowerCase().contains("error"))) throw new Exception("Parser Error: Table start not found (+error)"); if (CCStreams.iterate(lines).count(p -> !Str.isNullOrWhitespace(p)) <= 2) return new ArrayList<>(); // No entries in list - + throw new Exception("Parser Error: Table start not found"); }