diff --git a/CHANGES.txt b/CHANGES.txt index eaba9f4..703e746 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,13 @@ ## START -v2328 +v2329 - NOTE that queries of type 1 may not work as expected due to an issue at S2 + - input PMIDs + - doc: query types + - FIX: NPE in PaperList.readFromFile() + - fix: query list not refreshed after new query + - fix: after new query center list on it + +v2328 - implement query type 2 - remove unused features from type 1 query cards - try to handle SSLException diff --git a/TODO.txt b/TODO.txt index 8c06218..69e1d37 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,8 +1,4 @@ - mumble benchmark - Wahono search string: (software OR applicati* OR systems ) AND (fault* OR - defect* OR quality OR error-prone) AND (predict* - OR prone* OR probability OR assess* OR detect* OR - estimat* OR classificat*) Doc: - reasons why not all papers found: @@ -11,6 +7,7 @@ Doc: - local Chinese papers are underrepresented in S2 Features: + - search bar in annotate() - file selectors in settings dialog - recipes: export to / start / import from annotation tool --- both in filter2 - in filter2() Prodigy diff --git a/build.gradle.kts b/build.gradle.kts index f6228c8..ec57c26 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -111,7 +111,7 @@ dependencies { buildConfig { packageName("org.reactome.lit_ball") // forces the package. Defaults to '${project.group}' buildConfigField("String", "APP_NAME", "\"LitBall\"") - buildConfigField("String", "APP_VERSION", provider { "\"2328\"" }) + buildConfigField("String", "APP_VERSION", provider { "\"2329\"" }) } configurations.all { @@ -123,7 +123,7 @@ configurations.all { compose.desktop { application { mainClass = "MainKt" - version = "2328" + version = "2329" group = "org.reactome" nativeDistributions { targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) diff --git a/src/main/kotlin/org/reactome/lit_ball/common/Changes.kt b/src/main/kotlin/org/reactome/lit_ball/common/Changes.kt index 488cb42..f2952b8 100644 --- a/src/main/kotlin/org/reactome/lit_ball/common/Changes.kt +++ b/src/main/kotlin/org/reactome/lit_ball/common/Changes.kt @@ -2,8 +2,15 @@ package org.reactome.lit_ball.common object Changes { val text = """ -v2328 +v2329 - NOTE that queries of type 1 may not work as expected due to an issue at S2 + - input PMIDs + - doc: query types + - FIX: NPE in PaperList.readFromFile() + - fix: query list not refreshed after new query + - fix: after new query center list on it + +v2328 - implement query type 2 - remove unused features from type 1 query cards - try to handle SSLException