Skip to content

Commit

Permalink
Merge pull request #1478 from cwtickle/develop
Browse files Browse the repository at this point in the history
[ver31.7.1] 同じキー数の譜面が複数存在するときに譜面リストのキー別フィルタが重複表示される問題を修正
  • Loading branch information
cwtickle committed May 4, 2023
2 parents 8415027 + 06d3388 commit 93870cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SECURITY.md
Expand Up @@ -18,7 +18,7 @@ v24, v29の対応終了時期はv33リリース開始時を予定しています

| Version | Supported | Latest Version | Logs | First Release | End of Support |
| ------- | ------------------ |----------------|------|---------------|----------------|
| v31 | :heavy_check_mark: |[v31.7.0](https://github.com/cwtickle/danoniplus/releases/tag/v31.7.0) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-latest)|2023-03-20|-|
| v31 | :heavy_check_mark: |[v31.7.1](https://github.com/cwtickle/danoniplus/releases/tag/v31.7.1) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-latest)|2023-03-20|-|
| v30 | :heavy_check_mark: |[v30.6.2](https://github.com/cwtickle/danoniplus/releases/tag/v30.6.2) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v30)|2023-02-10|(At Release v33)|
| v29 :anchor: | :heavy_check_mark: |[v29.4.5](https://github.com/cwtickle/danoniplus/releases/tag/v29.4.5) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v29)|2022-11-05|(At Release v38)|
| v28 | :x: |[v28.6.7 (final)](https://github.com/cwtickle/danoniplus/releases/tag/v28.6.7) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v28)|2022-08-21|2023-03-20|
Expand Down
8 changes: 4 additions & 4 deletions js/danoni_main.js
Expand Up @@ -4,12 +4,12 @@
*
* Source by tickle
* Created : 2018/10/08
* Revised : 2023/05/03
* Revised : 2023/05/04
*
* https://github.com/cwtickle/danoniplus
*/
const g_version = `Ver 31.7.0`;
const g_revisedDate = `2023/05/03`;
const g_version = `Ver 31.7.1`;
const g_revisedDate = `2023/05/04`;
const g_alphaVersion = ``;

// カスタム用バージョン (danoni_custom.js 等で指定可)
Expand Down Expand Up @@ -5163,7 +5163,7 @@ const createOptionWindow = _sprite => {

// 譜面番号の再取得
g_stateObj.scoreId = getNextDifficulty(g_stateObj.scoreId, 0);
const keyLists = g_headerObj.viewLists.map(j => g_headerObj.keyLabels[j]);
const keyLists = makeDedupliArray(g_headerObj.viewLists.map(j => g_headerObj.keyLabels[j]));
g_headerObj.viewKeyLists = keyLists.sort((a, b) => parseInt(a) - parseInt(b));
g_headerObj.difSelectorUse = getDifSelectorUse(g_rootObj.difSelectorUse);

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "danoniplus",
"version": "31.7.0",
"version": "31.7.1",
"description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 93870cc

Please sign in to comment.