Skip to content

Commit

Permalink
v2405
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Apr 3, 2024
1 parent e22a249 commit 558b9c7
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## START
v2405
- new query type: S2 recommendations

v2404
- more date matcher fixes
- don't discard non-DOI results / use archived directly by prefixing with "S2:"
Expand Down
17 changes: 10 additions & 7 deletions TODO.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
- query type 4: S2 recommendations https://api.semanticscholar.org/api-docs/recommendations
- new query from old (allowing change of keywords but shortcutting some download)
- new query from old (type 1,2,3 from type 1)
- easy change/selection of query path
- opening/closing filter dialog removes focus on list
- focus: clicking sort in filtering2 still grabs focus
- focus: clicking delete in annotate still grabs focus
- focus: when in paper detail dialog, cursor up/down still moves list (instead of scrolling details)
- going Main from annotate resets list pos
- TAB does not advance field in new query dialog etc
- manually add IDs to accepted by adding an IDs field to query settings dialog

Doc:
- json export
Expand All @@ -11,16 +20,10 @@ Doc:

Features:
- refactor: rename model functions so they reflect the event not the intent
- clicking sort in filtering2 still grabs focus
- clicking delete in annotate still grabs focus
- going Main from annotate resets list pos
- when in paper detail dialog, cursor up/down still moves list (instead of scrolling details)
- new query from old (allowing change of keywords but shortcutting some download)
- file selectors in settings dialog
- HTTP buffer
- complain if Q1 date filter in wrong format
- settings mutex
- manually add DOIs to accepted
- when annotate, why is S2 accessed again? because some accepted dois are defect

Other ideas:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,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 { "\"2404\"" })
buildConfigField("String", "APP_VERSION", provider { "\"2405\"" })
}

configurations.all {
Expand All @@ -152,7 +152,7 @@ configurations.all {
compose.desktop {
application {
mainClass = "MainKt"
version = "2404"
version = "2405"
group = "org.reactome"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
Expand Down
9 changes: 9 additions & 0 deletions src/main/kotlin/org/reactome/lit_ball/common/Changes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package org.reactome.lit_ball.common

object Changes {
val text = """
v2405
- new query type: S2 recommendations
v2404
- more date matcher fixes
- don't discard non-DOI results / use archived directly by prefixing with "S2:"
Expand All @@ -12,6 +15,12 @@ v2403
- fix expression search type matching
- better handling of 492
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
v2401
- filter button/dialog in paper lists
- in paper list, put query name in header
Expand Down

0 comments on commit 558b9c7

Please sign in to comment.