Skip to content

Commit

Permalink
Merge pull request #1626 from cwtickle/develop
Browse files Browse the repository at this point in the history
[ver35.4.2] 環境によりタイトルの背景矢印が表示されない問題を修正
  • Loading branch information
cwtickle committed Feb 29, 2024
2 parents 2b5d0e7 + 429a822 commit d6f8cef
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ v33の対応終了時期はv36リリース開始時を予定しています。

| Version | Supported | Latest Version | Logs | First Release | End of Support |
| ------- | ------------------ |----------------|------|---------------|----------------|
| v35 | :heavy_check_mark: |[v35.4.1](https://github.com/cwtickle/danoniplus/releases/tag/v35.4.1) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-latest)|2024-01-28|(At Release v38)|
| v35 | :heavy_check_mark: |[v35.4.2](https://github.com/cwtickle/danoniplus/releases/tag/v35.4.2) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-latest)|2024-01-28|(At Release v38)|
| v34 :anchor: | :heavy_check_mark: |[v34.7.1](https://github.com/cwtickle/danoniplus/releases/tag/v34.7.1) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v34)|2023-09-24|(At Release v43)|
| v33 | :warning: |[v33.7.6](https://github.com/cwtickle/danoniplus/releases/tag/v33.7.6) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v33)|2023-07-29|(At Release v36)|
| v32 | :x: |[v32.7.7 (final)](https://github.com/cwtickle/danoniplus/releases/tag/v32.7.7) |[:memo:](https://github.com/cwtickle/danoniplus/wiki/Changelog-v32)|2023-05-07|2024-01-28|
Expand Down
9 changes: 5 additions & 4 deletions js/danoni_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
*
* Source by tickle
* Created : 2018/10/08
* Revised : 2024/02/23
* Revised : 2024/02/29
*
* https://github.com/cwtickle/danoniplus
*/
const g_version = `Ver 35.4.1`;
const g_revisedDate = `2024/02/23`;
const g_version = `Ver 35.4.2`;
const g_revisedDate = `2024/02/29`;

// カスタム用バージョン (danoni_custom.js 等で指定可)
let g_localVersion = ``;
Expand Down Expand Up @@ -3363,7 +3363,8 @@ const getMusicNameMultiLine = _musicName => {
*/
const updateImgType = (_imgType, _initFlg = false) => {
if (_initFlg) {
C_IMG_TITLE_ARROW = `../img/${_imgType.name}/arrow.${_imgType.extension}`;
const baseDir = (_imgType.name === `` ? `` : `${_imgType.name}/`);
C_IMG_TITLE_ARROW = `../img/${baseDir}arrow.${_imgType.extension}`;
}
resetImgs(_imgType.name, _imgType.extension);
reloadImgObj();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "danoniplus",
"version": "35.4.1",
"version": "35.4.2",
"description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit d6f8cef

Please sign in to comment.