diff --git a/CHANGES.txt b/CHANGES.txt index 7246b28..cb84f38 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,9 +1,8 @@ ## START -v2402 - - HTTP 429 effectively means "use API key" - - use bulk API for paper refs too - - better list sync after manipulate filtered - - query type 1: more filters: pubdate, articletype +v2403 + - fix expression search date matching + - fix expression search type matching + - better handling of 492 v2401 - filter button/dialog in paper lists diff --git a/TODO.txt b/TODO.txt index 2727c72..ed97ba7 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,6 +1,7 @@ - query type 4: S2 recommendations https://api.semanticscholar.org/api-docs/recommendations - Q1: don't discard non-DOI results / use archived directly by prefixing with "S2:" - make path editable by click + - bulk PMID lookup Doc: - json export diff --git a/build.gradle.kts b/build.gradle.kts index 066ea87..559d886 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -139,7 +139,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 { "\"2402\"" }) + buildConfigField("String", "APP_VERSION", provider { "\"2403\"" }) } configurations.all { @@ -151,7 +151,7 @@ configurations.all { compose.desktop { application { mainClass = "MainKt" - version = "2402" + version = "2403" 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 e54031d..689b0f7 100644 --- a/src/main/kotlin/org/reactome/lit_ball/common/Changes.kt +++ b/src/main/kotlin/org/reactome/lit_ball/common/Changes.kt @@ -2,11 +2,10 @@ package org.reactome.lit_ball.common object Changes { val text = """ -v2402 - - HTTP 429 effectively means "use API key" - - use bulk API for paper refs too - - better list sync after manipulate filtered - - query type 1: more filters: pubdate, articletype +v2403 + - fix expression search date matching + - fix expression search type matching + - better handling of 492 v2401 - filter button/dialog in paper lists