Skip to content

Commit

Permalink
Merge pull request #1531 from cwtickle/develop
Browse files Browse the repository at this point in the history
[ver33.1.2] フリーズアローの終点と次のフリーズアローの始点が近い場合の判定不具合を修正
  • Loading branch information
cwtickle committed Aug 14, 2023
2 parents f8a4a46 + 5859411 commit 05904a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions SECURITY.md
Expand Up @@ -18,11 +18,11 @@ v31の対応終了時期はv34リリース開始時を予定しています。

| Version | Supported | Latest Version | Logs | First Release | End of Support |
| ------- | ------------------ |----------------|------|---------------|----------------|
| v33 | :heavy_check_mark: |[v33.1.1](https://github.com/cwtickle/danoniplus/releases/tag/v33.1.1) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-latest)|2023-07-29|(At Release v36)|
| v32 | :heavy_check_mark: |[v32.7.0](https://github.com/cwtickle/danoniplus/releases/tag/v32.7.0) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v32)|2023-05-07|(At Release v35)|
| v31 | :warning: |[v31.7.3](https://github.com/cwtickle/danoniplus/releases/tag/v31.7.3) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v31)|2023-03-20|(At Release v34)|
| v33 | :heavy_check_mark: |[v33.1.2](https://github.com/cwtickle/danoniplus/releases/tag/v33.1.2) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-latest)|2023-07-29|(At Release v36)|
| v32 | :heavy_check_mark: |[v32.7.1](https://github.com/cwtickle/danoniplus/releases/tag/v32.7.1) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v32)|2023-05-07|(At Release v35)|
| v31 | :warning: |[v31.7.4](https://github.com/cwtickle/danoniplus/releases/tag/v31.7.4) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v31)|2023-03-20|(At Release v34)|
| v30 | :x: |[v30.6.3 (final)](https://github.com/cwtickle/danoniplus/releases/tag/v30.6.3) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v30)|2023-02-10|2023-07-29|
| v29 :anchor: | :heavy_check_mark: |[v29.4.6](https://github.com/cwtickle/danoniplus/releases/tag/v29.4.6) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v29)|2022-11-05|(At Release v38)|
| v29 :anchor: | :heavy_check_mark: |[v29.4.7](https://github.com/cwtickle/danoniplus/releases/tag/v29.4.7) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v29)|2022-11-05|(At Release v38)|

<details>
<summary>End of support version / 過去バージョン</summary>
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/08/04
* Revised : 2023/08/14
*
* https://github.com/cwtickle/danoniplus
*/
const g_version = `Ver 33.1.1`;
const g_revisedDate = `2023/08/04`;
const g_version = `Ver 33.1.2`;
const g_revisedDate = `2023/08/14`;

// カスタム用バージョン (danoni_custom.js 等で指定可)
let g_localVersion = ``;
Expand Down Expand Up @@ -9414,7 +9414,7 @@ const mainInit = _ => {

frzOFF: (_j, _k, _cnt) => {

if (g_workObj.judgFrzCnt[_j] === _k - 1 && _cnt <= g_judgObj.frzJ[g_judgPosObj.sfsf]) {
if (g_workObj.judgFrzCnt[_j] === _k - 1) {
const prevFrzName = `frz${_j}_${g_workObj.judgFrzCnt[_j]}`;
const prevFrz = g_attrObj[prevFrzName];

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

0 comments on commit 05904a6

Please sign in to comment.