Skip to content

Commit

Permalink
v2331
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Dec 6, 2023
1 parent a52255c commit 1026431
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## START
v2331
- no need for outer parenthesis in logical expressions
- doc: logical expr
- fix: duplicate DOIs in acc./rej. files

v2330
- NOTE that queries of type 1 may not work as expected due to an issue at S2
- in annotate: delete paper
- Wikidata as PMID2DOI bkp server
- doc: PMIDs
Expand Down
3 changes: 2 additions & 1 deletion TODO.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
- analyze and make sure DOIs are written uppercase, file-specific modules?
- mumble benchmark

Doc:
Expand All @@ -16,8 +15,10 @@ Features:
- in annotate() export to / start / import from Prodigy
- HTTP buffer
- clicking sort in filtering2 still grabs focus
- going Main from annotate resets list pos
- new query from old (allowing change of keywords but shortcutting some download)
- refactor: rename model functions so they reflect the event not the intent
- "duplicate" sorting controls code in A/F rootstore
- settings mutex
- don't discard non-DOI expr search results / use archived directly?
- manually add DOIs to accepted
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,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 { "\"2330\"" })
buildConfigField("String", "APP_VERSION", provider { "\"2331\"" })
}

configurations.all {
Expand All @@ -124,7 +124,7 @@ configurations.all {
compose.desktop {
application {
mainClass = "MainKt"
version = "2330"
version = "2331"
group = "org.reactome"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
Expand Down
6 changes: 5 additions & 1 deletion src/main/kotlin/org/reactome/lit_ball/common/Changes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ package org.reactome.lit_ball.common

object Changes {
val text = """
v2331
- no need for outer parenthesis in logical expressions
- doc: logical expr
- fix: duplicate DOIs in acc./rej. files
v2330
- NOTE that queries of type 1 may not work as expected due to an issue at S2
- in annotate: delete paper
- Wikidata as PMID2DOI bkp server
- doc: PMIDs
Expand Down

0 comments on commit 1026431

Please sign in to comment.