back to 100

This commit is contained in:
Bui 2022-02-27 17:25:02 +00:00
parent bdad6b702a
commit 0dab74c0bb
2 changed files with 4 additions and 5 deletions

View File

@ -3016,11 +3016,10 @@ class SongSelect{
if(query){ if(query){
results = fuzzysort.go(query, results, {keys: ["titlePrepared", "subtitlePrepared"], allowTypo: true}) results = fuzzysort.go(query, results, {keys: ["titlePrepared", "subtitlePrepared"], allowTypo: true})
results = results.map(result => result.obj) .map(result => result.obj)
} }
results = results.slice(0, 100) return results.slice(0, 100)
return results
} }
searchInput(){ searchInput(){

View File

@ -1354,7 +1354,7 @@ var translations = {
ja: [ ja: [
"CTRL+Fで検索窓を開く!", "CTRL+Fで検索窓を開く!",
"検索フィルタの組み合わせは自由自在です!", "検索フィルタの組み合わせは自由自在です!",
"最も関連性の高い50件のみを表示します。", "最も関連性の高い100件のみを表示します。",
"キーワードでジャンルを絞り込めます!(例: \"genre:variety\", \"genre:namco\")", "キーワードでジャンルを絞り込めます!(例: \"genre:variety\", \"genre:namco\")",
"「oni:10」などのフィルターを使用して、特定の難易度の曲を検索して", "「oni:10」などのフィルターを使用して、特定の難易度の曲を検索して",
"Difficulty filters support ranges, too! Try \"ura:1-5\"!", "Difficulty filters support ranges, too! Try \"ura:1-5\"!",
@ -1367,7 +1367,7 @@ var translations = {
en: [ en: [
"Open the search window by pressing CTRL+F!", "Open the search window by pressing CTRL+F!",
"Mix and match as many search filters as you want!", "Mix and match as many search filters as you want!",
"Only the 50 most relevant search results are shown.", "Only the 100 most relevant search results are shown.",
"Filter by genre by using the \"genre:\" keyword! (e.g. \"genre:variety\", \"genre:namco\")", "Filter by genre by using the \"genre:\" keyword! (e.g. \"genre:variety\", \"genre:namco\")",
"Use filters like \"oni:10\" to search for songs with a particular difficulty!", "Use filters like \"oni:10\" to search for songs with a particular difficulty!",
"Difficulty filters support ranges, too! Try \"ura:1-5\"!", "Difficulty filters support ranges, too! Try \"ura:1-5\"!",