@famibee/skynovel 1.23.2 → 1.25.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.
- package/CHANGELOG.md +47 -0
- package/app.js +556 -1471
- package/core/lib/sn/PropParser.d.ts.map +1 -1
- package/core/lib/sn/TxtLayer.d.ts.map +1 -1
- package/core/lib/sn/TxtStage.d.ts +3 -0
- package/core/lib/sn/TxtStage.d.ts.map +1 -1
- package/package.json +7 -7
- package/web.js +556 -1471
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
|
1
|
+
# [1.25.0](https://github.com/famibee/SKYNovel/compare/v1.24.2...v1.25.0) (2021-12-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* 文字レイヤ:クリック待ちマークの固定表示切替・表示位置を指定できる属性追加 ([0fbd99c](https://github.com/famibee/SKYNovel/commit/0fbd99cd902b595cf20e65db01c546fad0b3f91e))
|
|
7
|
+
|
|
8
|
+
- feat: 文字レイヤ:クリック待ちマークの固定表示切替・表示位置を指定できる属性追加
|
|
9
|
+
- break_fixed、break_fixed_left、break_fixed_top
|
|
10
|
+
- fix: ルビ文字などが行末になった際に行幅が広がりすぎる件
|
|
11
|
+
- fix: クリック待ちマークは最後に表示した文字の次にぶら下がるように
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.24.2](https://github.com/famibee/SKYNovel/compare/v1.24.1...v1.24.2) (2021-12-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* 行末ではないのに【〝】や【『】など行末禁則文字で改行してしまう件 ([da7b39e](https://github.com/famibee/SKYNovel/commit/da7b39e475e92ee42b54af2137ac42bd5364341d))
|
|
20
|
+
|
|
21
|
+
- fix: 行末ではないのに【〝】や【『】など行末禁則文字で改行してしまう件
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## [1.24.1](https://github.com/famibee/SKYNovel/compare/v1.24.0...v1.24.1) (2021-12-19)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* [tcy](縦中横)を使うとフリーズする場合がある件 ([4419df4](https://github.com/famibee/SKYNovel/commit/4419df48599026460985ad5b5b27ee981fe26683))
|
|
30
|
+
|
|
31
|
+
- fix: [tcy](縦中横)を使うとフリーズする場合がある件
|
|
32
|
+
- fix: [ch]で wait属性を指定しないと、他のstyle指定などが無効になる件
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
# [1.24.0](https://github.com/famibee/SKYNovel/compare/v1.23.2...v1.24.0) (2021-12-16)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* isNaN()演算子サポート ([33883dd](https://github.com/famibee/SKYNovel/commit/33883dd5241a0a2548649a2a1d13a1b464f241fd))
|
|
41
|
+
|
|
42
|
+
- feat: isNaN()演算子サポート
|
|
43
|
+
- > https://www.ikkitang1211.site/entry/defer-null-undefined
|
|
44
|
+
- > JavaScriptの仕様として、 toNumber(null) は 0 / toNumber(undefined) は NaN とするという取り決めがある
|
|
45
|
+
- NaN が判定できると数値 undefined 判定の取りこぼししなくなる
|
|
46
|
+
|
|
47
|
+
|
|
1
48
|
## [1.23.2](https://github.com/famibee/SKYNovel/compare/v1.23.1...v1.23.2) (2021-12-13)
|
|
2
49
|
|
|
3
50
|
|