danoniplus 26.5.0 → 26.7.0

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.
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Source by tickle
7
7
  * Created : 2019/11/19
8
- * Revised : 2022/02/23 (v26.3.1)
8
+ * Revised : 2022/03/12 (v26.7.0)
9
9
  *
10
10
  * https://github.com/cwtickle/danoniplus
11
11
  */
@@ -2393,6 +2393,10 @@ const g_dfColorLightObj = {
2393
2393
  ],
2394
2394
  };
2395
2395
 
2396
+ /**
2397
+ * 特殊文字列の置き換えリスト
2398
+ * (置き換え元、置き換え先の組で二次元配列として定義。主にreplaceStr関数で使用)
2399
+ */
2396
2400
  const g_escapeStr = {
2397
2401
  escape: [[`&`, `&amp;`], [`<`, `&lt;`], [`>`, `&gt;`], [`"`, `&quot;`]],
2398
2402
  escapeTag: [
@@ -2407,6 +2411,17 @@ const g_escapeStr = {
2407
2411
  escapeCode: [
2408
2412
  [`<script>`, ``], [`</script>`, ``],
2409
2413
  ],
2414
+ musicNameSimple: [
2415
+ [`<br>`, ` `], [`<nbr>`, ``], [`<dbr>`, ` `],
2416
+ ],
2417
+ musicNameMultiLine: [
2418
+ [`<nbr>`, `<br>`], [`<dbr>`, `<br>`],
2419
+ ],
2420
+ frzName: [
2421
+ [`leftdia`, `frzLdia`], [`rightdia`, `frzRdia`],
2422
+ [`left`, `frzLeft`], [`down`, `frzDown`], [`up`, `frzUp`], [`right`, `frzRight`],
2423
+ [`space`, `frzSpace`], [`iyo`, `frzIyo`], [`gor`, `frzGor`], [`oni`, `foni`],
2424
+ ],
2410
2425
  };
2411
2426
 
2412
2427
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "26.5.0",
3
+ "version": "26.7.0",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {