danoniplus 25.5.5 → 25.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/js/danoni_main.js +5 -5
  2. package/package.json +22 -22
package/js/danoni_main.js CHANGED
@@ -4,12 +4,12 @@
4
4
  *
5
5
  * Source by tickle
6
6
  * Created : 2018/10/08
7
- * Revised : 2022/02/16
7
+ * Revised : 2022/02/20
8
8
  *
9
9
  * https://github.com/cwtickle/danoniplus
10
10
  */
11
- const g_version = `Ver 25.5.5`;
12
- const g_revisedDate = `2022/02/16`;
11
+ const g_version = `Ver 25.5.6`;
12
+ const g_revisedDate = `2022/02/20`;
13
13
  const g_alphaVersion = ``;
14
14
 
15
15
  // カスタム用バージョン (danoni_custom.js 等で指定可)
@@ -5166,8 +5166,8 @@ function createLblSetting(_settingName, _adjY = 0, _settingLabel = _settingName)
5166
5166
  * @param {string} _name
5167
5167
  */
5168
5168
  function getStgDetailName(_name) {
5169
- return g_lblNameObj[`u_${_name}`] === undefined || typeof g_lblRenames !== C_TYP_OBJECT || !g_lblRenames[g_currentPage] ?
5170
- _name : g_lblNameObj[`u_${_name}`];
5169
+ return g_lblNameObj[`u_${_name}`] !== undefined && (typeof g_lblRenames !== C_TYP_OBJECT ||
5170
+ (typeof g_lblRenames === C_TYP_OBJECT && g_lblRenames[g_currentPage])) ? g_lblNameObj[`u_${_name}`] : _name;
5171
5171
  }
5172
5172
 
5173
5173
  /**
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
- {
2
- "name": "danoniplus",
3
- "version": "25.5.5",
4
- "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/cwtickle/danoniplus.git"
12
- },
13
- "keywords": [
14
- "rhythm-game",
15
- "dancing-onigiri"
16
- ],
17
- "author": "tickle <quc_tickle@cw7.sakura.ne.jp> (https://github.com/cwtickle/)",
18
- "license": "MIT",
19
- "bugs": {
20
- "url": "https://github.com/cwtickle/danoniplus/issues"
21
- },
22
- "homepage": "https://github.com/cwtickle/danoniplus#readme"
1
+ {
2
+ "name": "danoniplus",
3
+ "version": "25.5.6",
4
+ "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/cwtickle/danoniplus.git"
12
+ },
13
+ "keywords": [
14
+ "rhythm-game",
15
+ "dancing-onigiri"
16
+ ],
17
+ "author": "tickle <quc_tickle@cw7.sakura.ne.jp> (https://github.com/cwtickle/)",
18
+ "license": "MIT",
19
+ "bugs": {
20
+ "url": "https://github.com/cwtickle/danoniplus/issues"
21
+ },
22
+ "homepage": "https://github.com/cwtickle/danoniplus#readme"
23
23
  }