diff --git a/database.json b/database.json index 8aa0ff5..9de95a5 100644 --- a/database.json +++ b/database.json @@ -11312,7 +11312,7 @@ }, { "attribute" : "全タイプ", "name" : "イケナイGO AHEAD", - "difficulty" : "MASTER+", + "difficulty" : "ⓁMASTER+", "level" : 29, "notes" : 973 }, { @@ -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 } ] } \ No newline at end of file diff --git a/settings.json b/settings.json index 12dc9f7..35a6046 100644 --- a/settings.json +++ b/settings.json @@ -5,5 +5,5 @@ "windowHeight" : 360, "songLimit" : 3, "saveScoreLog" : false, - "outputDebugSentences" : false + "outputDebugSentences" : true } \ No newline at end of file diff --git a/src/com/ranfa/main/DelesteRandomSelector.java b/src/com/ranfa/main/DelesteRandomSelector.java index ac61813..5ebaac0 100644 --- a/src/com/ranfa/main/DelesteRandomSelector.java +++ b/src/com/ranfa/main/DelesteRandomSelector.java @@ -132,7 +132,7 @@ public DelesteRandomSelector() { CompletableFuture> getFromJsonFuture = CompletableFuture.supplyAsync(() -> Scraping.getFromJson(), es); CompletableFuture> 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); @@ -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));