@melonjs/spine-plugin 2.0.0 → 2.0.1

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Changed
6
+ - minimum melonJS version is now 18.2.1 (loading screen race condition fix)
7
+
3
8
  ## 2.0.0
4
9
 
5
10
  ### Changed
package/README.md CHANGED
@@ -30,7 +30,7 @@ A [Spine](http://en.esotericsoftware.com/spine-in-depth) 4.2 runtime integration
30
30
  ## Installation
31
31
  -------------------------------------------------------------------------------
32
32
  This plugin is already bundled with the required Spine [4.x runtime](package.json#dependencies), so there is no need to install it separately.
33
- >Note: this plugin requires melonJS version 18.2.0 or higher.
33
+ >Note: this plugin requires melonJS version 18.2.1 or higher.
34
34
 
35
35
  To install the plugin using npm:
36
36
 
@@ -119,7 +119,8 @@ me.loader.preload(DataManifest, async function() {
119
119
 
120
120
  | @melonjs/spine-plugin | melonJS | spine-runtime |
121
121
  |---|---|---|
122
- | v2.0.x | v18.2.x (or higher) | v4.2.x |
122
+ | v2.0.1+ | v18.2.1 (or higher) | v4.2.x |
123
+ | v2.0.0 | v18.2.0 | v4.2.x |
123
124
  | v1.5.x | v15.12.x — v18.0.x | v4.1, v4.2-beta |
124
125
 
125
126
  ## Questions, need help ?
package/build/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * melonJS Spine plugin - 2.0.0
2
+ * melonJS Spine plugin - 2.0.1
3
3
  * http://www.melonjs.org
4
4
  * @melonjs/spine-plugin is licensed under the MIT License.
5
5
  * http://www.opensource.org/licenses/mit-license
@@ -15463,10 +15463,10 @@ import { plugin } from "melonjs";
15463
15463
 
15464
15464
  // package.json
15465
15465
  var name = "@melonjs/spine-plugin";
15466
- var version = "2.0.0";
15466
+ var version = "2.0.1";
15467
15467
  var homepage = "https://www.npmjs.com/package/@melonjs/spine-plugin";
15468
15468
  var peerDependencies = {
15469
- melonjs: ">=18.2.0"
15469
+ melonjs: ">=18.2.1"
15470
15470
  };
15471
15471
  var dependencies = {
15472
15472
  "@esotericsoftware/spine-canvas": "^4.2.108",