@next2d/player 1.14.24 → 1.16.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -1
  3. package/package.json +15 -15
package/README.md CHANGED
@@ -11,7 +11,7 @@ Next2D Player
11
11
  [![release](https://img.shields.io/github/v/release/Next2D/Player)](https://github.com/Next2D/Player/releases)
12
12
  [![Github All Releases](https://img.shields.io/npm/dt/@next2d/player)](https://github.com/Next2D/Player/releases)
13
13
  [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.gg/6c9rv5Uns5)
14
- ![Twitter Follow](https://img.shields.io/twitter/follow/Next2D?style=social)
14
+ [![Twitter](https://img.shields.io/twitter/follow/Next2D?style=social)](https://twitter.com/Next2D)
15
15
 
16
16
  [日本語]
17
17
  Next2D Playerは、WebGLのハードウェアアクセラレーションでグラフィックス処理負荷を軽減し、OffscreenCanvasのマルチスレッド処理で描画パフォーマンスを向上させています。
package/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { $currentPlayer, $initialize, $isSafari, $rendererWorker } from "@next2d/util";
3
3
  import { Next2D } from "@next2d/core";
4
4
  if (!("next2d" in window)) {
5
- console.log("%c Next2D Player %c 1.14.24 %c https://next2d.app", "color: #fff; background: #5f5f5f", "color: #fff; background: #4bc729", "");
5
+ console.log("%c Next2D Player %c 1.16.0 %c https://next2d.app", "color: #fff; background: #5f5f5f", "color: #fff; background: #4bc729", "");
6
6
  window.next2d = new Next2D([new Promise((resolve) => {
7
7
  if (document.readyState === "loading") {
8
8
  const initialize = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/player",
3
- "version": "1.14.24",
3
+ "version": "1.16.0",
4
4
  "description": "Experience the fast and beautiful anti-aliased rendering of WebGL. You can create rich, interactive graphics, cross-platform applications and games without worrying about browser or device compatibility.",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "packages/*"
20
20
  ],
21
21
  "scripts": {
22
- "start": "webpack serve",
22
+ "start": "tsc && node ./scripts/build.js && webpack serve",
23
23
  "lint": "eslint src/**/*.ts packages/**/*.ts worker/**/*.ts",
24
24
  "publish:dist": "tsc && node ./scripts/publish.js",
25
25
  "clean": "node ./scripts/clean.js",
@@ -32,19 +32,19 @@
32
32
  "url": "https://github.com/sponsors/Next2D"
33
33
  },
34
34
  "dependencies": {
35
- "@next2d/core": "1.14.24",
36
- "@next2d/display": "1.14.24",
37
- "@next2d/events": "1.14.24",
38
- "@next2d/filters": "1.14.24",
39
- "@next2d/geom": "1.14.24",
40
- "@next2d/interface": "1.14.24",
41
- "@next2d/media": "1.14.24",
42
- "@next2d/net": "1.14.24",
43
- "@next2d/share": "1.14.24",
44
- "@next2d/text": "1.14.24",
45
- "@next2d/ui": "1.14.24",
46
- "@next2d/util": "1.14.24",
47
- "@next2d/webgl": "1.14.24"
35
+ "@next2d/core": "1.16.0",
36
+ "@next2d/display": "1.16.0",
37
+ "@next2d/events": "1.16.0",
38
+ "@next2d/filters": "1.16.0",
39
+ "@next2d/geom": "1.16.0",
40
+ "@next2d/interface": "1.16.0",
41
+ "@next2d/media": "1.16.0",
42
+ "@next2d/net": "1.16.0",
43
+ "@next2d/share": "1.16.0",
44
+ "@next2d/text": "1.16.0",
45
+ "@next2d/ui": "1.16.0",
46
+ "@next2d/util": "1.16.0",
47
+ "@next2d/webgl": "1.16.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@babel/core": "^7.22.5",