Skip to content

Commit

Permalink
details
Browse files Browse the repository at this point in the history
  • Loading branch information
BLCK-B committed Aug 16, 2024
1 parent 1b76ebd commit 44855f4
Show file tree
Hide file tree
Showing 20 changed files with 294 additions and 68 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

// https://services.gradle.org/distributions - in gradle-wrapper.properties

// TODO: build/resources/aot/META-INF/native-image tracing CI integration or git

plugins {
id 'java'
id 'org.springframework.boot' version '3.3.2'
Expand All @@ -36,13 +38,13 @@ repositories {
}

graalvmNative {
binaries {
main {
binaries.all {
imageName.set("MusicReleaseTracker")
buildArgs.add('--verbose')
// sqlite
buildArgs.add('--initialize-at-build-time=org.sqlite.util.ProcessRunner')
// quick build
// buildArgs.add('-Ob')
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ public void cleanArtistSource(TablesEnum table, String artist) {
}

public List<MediaItem> getTableData(TablesEnum source, String artist) {
if (source == TablesEnum.combview || artist.isBlank())
if (artist == null)
return DB.loadCombviewTable();
else if (source == TablesEnum.combview || artist.isBlank())
return DB.loadCombviewTable();
else
return DB.loadTable(source, artist);
Expand Down
30 changes: 30 additions & 0 deletions src/main/resources/static/assets/index-BGTHEjB3.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/main/resources/static/assets/index-BJel56Jv.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 44855f4

Please sign in to comment.