@next2d/player 2.7.0 → 2.8.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/next2d.js +7 -7
  2. package/package.json +12 -12
  3. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/player",
3
- "version": "2.7.0",
3
+ "version": "2.8.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@next2d.app> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -43,17 +43,17 @@
43
43
  "dependencies": {
44
44
  "fflate": "^0.8.2",
45
45
  "htmlparser2": "^10.0.0",
46
- "@next2d/cache": "2.7.0",
47
- "@next2d/core": "2.7.0",
48
- "@next2d/display": "2.7.0",
49
- "@next2d/events": "2.7.0",
50
- "@next2d/filters": "2.7.0",
51
- "@next2d/geom": "2.7.0",
52
- "@next2d/media": "2.7.0",
53
- "@next2d/net": "2.7.0",
54
- "@next2d/render-queue": "2.7.0",
55
- "@next2d/text": "2.7.0",
56
- "@next2d/ui": "2.7.0"
46
+ "@next2d/cache": "2.8.0",
47
+ "@next2d/core": "2.8.0",
48
+ "@next2d/display": "2.8.0",
49
+ "@next2d/events": "2.8.0",
50
+ "@next2d/filters": "2.8.0",
51
+ "@next2d/geom": "2.8.0",
52
+ "@next2d/media": "2.8.0",
53
+ "@next2d/net": "2.8.0",
54
+ "@next2d/render-queue": "2.8.0",
55
+ "@next2d/text": "2.8.0",
56
+ "@next2d/ui": "2.8.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@eslint/eslintrc": "^3.3.1",
package/src/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  import { Next2D } from "@next2d/core";
3
3
  if (!("next2d" in window)) {
4
- console.log("%c Next2D Player %c 2.7.0 %c https://next2d.app", "color: #fff; background: #5f5f5f", "color: #fff; background: #4bc729", "");
4
+ console.log("%c Next2D Player %c 2.8.0 %c https://next2d.app", "color: #fff; background: #5f5f5f", "color: #fff; background: #4bc729", "");
5
5
  window.next2d = new Next2D();
6
6
  }