Skip to content

Commit

Permalink
v2329
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Nov 11, 2023
1 parent c21940c commit 93ee77d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 1 addition & 4 deletions TODO.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand 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)
Expand Down
9 changes: 8 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,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
Expand Down

0 comments on commit 93ee77d

Please sign in to comment.