Skip to content

Commit

Permalink
fix: added dialog when ready
Browse files Browse the repository at this point in the history
  • Loading branch information
hizumiaoba committed Aug 5, 2021
1 parent 005e008 commit 7e73e32
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 3 deletions.
68 changes: 67 additions & 1 deletion database.json
Expand Up @@ -11312,7 +11312,7 @@
}, {
"attribute" : "全タイプ",
"name" : "イケナイGO AHEAD",
"difficulty" : "MASTER+",
"difficulty" : "ⓁMASTER+",
"level" : 29,
"notes" : 973
}, {
Expand Down Expand Up @@ -11705,5 +11705,71 @@
"difficulty" : "MASTER+",
"level" : 29,
"notes" : 999
}, {
"attribute" : "パッション",
"name" : "モーレツ★世直しギルティ!",
"difficulty" : "LIGHT",
"level" : 8,
"notes" : 219
}, {
"attribute" : "パッション",
"name" : "モーレツ★世直しギルティ!",
"difficulty" : "TRICK",
"level" : 17,
"notes" : 417
}, {
"attribute" : "全タイプ",
"name" : "With Love",
"difficulty" : "LIGHT",
"level" : 6,
"notes" : 139
}, {
"attribute" : "全タイプ",
"name" : "With Love",
"difficulty" : "TRICK",
"level" : 16,
"notes" : 329
}, {
"attribute" : "全タイプ",
"name" : "イケナイGO AHEAD",
"difficulty" : "MASTER+",
"level" : 29,
"notes" : 975
}, {
"attribute" : "パッション",
"name" : "思い出じゃない今日を",
"difficulty" : "MASTER+",
"level" : 28,
"notes" : 896
}, {
"attribute" : "キュート",
"name" : "Secret Mirage",
"difficulty" : "DEBUT",
"level" : 6,
"notes" : 80
}, {
"attribute" : "キュート",
"name" : "Secret Mirage",
"difficulty" : "REGULAR",
"level" : 13,
"notes" : 185
}, {
"attribute" : "キュート",
"name" : "Secret Mirage",
"difficulty" : "PRO",
"level" : 17,
"notes" : 370
}, {
"attribute" : "キュート",
"name" : "Secret Mirage",
"difficulty" : "MASTER",
"level" : 25,
"notes" : 558
}, {
"attribute" : "キュート",
"name" : "Secret Mirage",
"difficulty" : "MASTER+",
"level" : 28,
"notes" : 757
} ]
}
2 changes: 1 addition & 1 deletion settings.json
Expand Up @@ -5,5 +5,5 @@
"windowHeight" : 360,
"songLimit" : 3,
"saveScoreLog" : false,
"outputDebugSentences" : false
"outputDebugSentences" : true
}
3 changes: 2 additions & 1 deletion src/com/ranfa/main/DelesteRandomSelector.java
Expand Up @@ -132,7 +132,7 @@ public DelesteRandomSelector() {
CompletableFuture<ArrayList<Song>> getFromJsonFuture = CompletableFuture.supplyAsync(() -> Scraping.getFromJson(), es);
CompletableFuture<ArrayList<Song>> getWholeDataFuture = CompletableFuture.supplyAsync(() -> Scraping.getWholeData(), es);
getWholeDataFuture.thenAcceptAsync(list -> LimitedLog.println("[" + Thread.currentThread().toString() + "]:" + this.getClass() + ":[INFO]: Scraping data size:" + list.size()), es);
getFromJsonFuture.thenAcceptAsync(list -> LimitedLog.println("[" + Thread.currentThread().toString() + "]:" + this.getClass() + ":[INFO] Currently database size:" + list.size()), es);
getFromJsonFuture.thenAcceptAsync(list -> LimitedLog.println("[" + Thread.currentThread().toString() + "]:" + this.getClass() + ":[INFO]: Currently database size:" + list.size()), es);
LimitedLog.println("[" + Thread.currentThread().toString() + "]:" + this.getClass() + ":[DEBUG]: " + "Version:" + getVersion());
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 640, 360);
Expand Down Expand Up @@ -242,6 +242,7 @@ public void actionPerformed(ActionEvent e) {
selectedSongsList.clear();
selectedSongsList.addAll(specificAttributeList);
LimitedLog.println("[" + Thread.currentThread().toString() + "]:" + this.getClass() + ":[INFO]: " +"Songs are selected.We are Ready to go.");
JOptionPane.showMessageDialog(null, "絞り込み完了!「開始」をクリックすることで選曲できます!");
}
});
btnImport.setFont(new Font("UD デジタル 教科書体 NP-B", Font.BOLD, 13));
Expand Down

0 comments on commit 7e73e32

Please sign in to comment.