Skip to content

Commit

Permalink
v2403
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Mar 10, 2024
1 parent 46f8afd commit 0c10bee
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
9 changes: 4 additions & 5 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions TODO.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand 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)
Expand Down
9 changes: 4 additions & 5 deletions src/main/kotlin/org/reactome/lit_ball/common/Changes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c10bee

Please sign in to comment.