@famibee/skynovel 1.25.6 → 1.25.10
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/.github/workflows/codeql-analysis.yml +0 -5
- package/CHANGELOG.md +45 -0
- package/app.js +118 -147
- package/appMain.js +31 -16
- package/core/lib/appMain.d.ts +1 -1
- package/core/lib/appMain.d.ts.map +1 -1
- package/core/lib/preload.d.ts +1 -1
- package/core/lib/preload.d.ts.map +1 -1
- package/core/lib/preload.js +1 -1
- package/core/lib/sn/DebugMng.d.ts.map +1 -1
- package/core/lib/sn/EventMng.d.ts.map +1 -1
- package/core/lib/sn/FrameMng.d.ts.map +1 -1
- package/core/lib/sn/GrpLayer.d.ts +1 -0
- package/core/lib/sn/GrpLayer.d.ts.map +1 -1
- package/core/lib/sn/Layer.d.ts +1 -0
- package/core/lib/sn/Layer.d.ts.map +1 -1
- package/core/lib/sn/LayerMng.d.ts.map +1 -1
- package/core/lib/sn/SoundMng.d.ts.map +1 -1
- package/core/lib/sn/SysApp.d.ts.map +1 -1
- package/core/lib/sn/SysBase.d.ts +1 -1
- package/core/lib/sn/Variable.d.ts.map +1 -1
- package/package.json +7 -7
- package/web.js +62 -30
|
@@ -36,11 +36,6 @@ jobs:
|
|
|
36
36
|
# a pull request then we can checkout the head.
|
|
37
37
|
fetch-depth: 2
|
|
38
38
|
|
|
39
|
-
# If this run was triggered by a pull request event, then checkout
|
|
40
|
-
# the head of the pull request instead of the merge commit.
|
|
41
|
-
- run: git checkout HEAD^2
|
|
42
|
-
if: ${{ github.event_name == 'pull_request' }}
|
|
43
|
-
|
|
44
39
|
# Initializes the CodeQL tools for scanning.
|
|
45
40
|
- name: Initialize CodeQL
|
|
46
41
|
uses: github/codeql-action/init@v1
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
## [1.25.10](https://github.com/famibee/SKYNovel/compare/v1.25.9...v1.25.10) (2022-01-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 前更新で[trans]がちらつくようになったのを修正 ([75b83d6](https://github.com/famibee/SKYNovel/commit/75b83d68a474c674e7070a1e82668f63997a6e68))
|
|
7
|
+
|
|
8
|
+
- fix: 前更新で[trans]がちらつくようになったのを修正
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [1.25.9](https://github.com/famibee/SKYNovel/compare/v1.25.8...v1.25.9) (2022-01-09)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* 動画やアニメスプライトを含まないレイヤのみのページの[trans]は処理を削減するように ([1e76a6f](https://github.com/famibee/SKYNovel/commit/1e76a6f900e3305abd292fcc4481323ee6978984))
|
|
17
|
+
|
|
18
|
+
- fix: 動画やアニメスプライトを含まないレイヤのみのページの[trans]は処理を削減するように
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## [1.25.8](https://github.com/famibee/SKYNovel/compare/v1.25.7...v1.25.8) (2022-01-08)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* 上げなおし:21年末時点版(ライブラリは更新) ([3f47a05](https://github.com/famibee/SKYNovel/commit/3f47a05fa9acd6121192b323950e647935ef56c6))
|
|
27
|
+
|
|
28
|
+
- fix: Windowsのみ:全画面から戻ると、一拍置いて極小画面サイズになる件
|
|
29
|
+
- fix: [fade]系にスキップ時処理を追記
|
|
30
|
+
- fix: 非パッケージだと versionが Electronの値になる件対応
|
|
31
|
+
- fix: const.sn.bookmark.json の値を実際のパスに置換しないように
|
|
32
|
+
- fix: [add_frame]での内部画像パス置換処理を修正
|
|
33
|
+
- fix: ライブラリ更新
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [1.25.7](https://github.com/famibee/SKYNovel/compare/v1.25.6...v1.25.7) (2021-12-28)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* [update_check]アップデート機能が動作不良だったので、暫定修正 ([31e1f6d](https://github.com/famibee/SKYNovel/commit/31e1f6d9d16f12b657b3a7a317f712c3599a470f))
|
|
42
|
+
|
|
43
|
+
- fix: [update_check]アップデート機能が動作不良だったので、暫定修正
|
|
44
|
+
|
|
45
|
+
|
|
1
46
|
## [1.25.6](https://github.com/famibee/SKYNovel/compare/v1.25.5...v1.25.6) (2021-12-27)
|
|
2
47
|
|
|
3
48
|
|