excalibur 0.26.0-alpha.382 → 0.26.0-alpha.383
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 +31 -4
- package/build/dist/excalibur.js +2 -2
- package/build/dist/excalibur.min.js +1 -1
- package/build/dist/excalibur.min.js.LICENSE.txt +1 -1
- package/build/dist/index.js +2 -2
- package/build/esm/excalibur.js +2 -2
- package/build/esm/excalibur.min.js +1 -1
- package/build/esm/excalibur.min.js.LICENSE.txt +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,37 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## Breaking Changes
|
|
9
|
+
|
|
10
|
+
-
|
|
11
|
+
|
|
12
|
+
### Deprecated
|
|
13
|
+
|
|
14
|
+
-
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
-
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
-
|
|
23
|
+
|
|
24
|
+
### Updates
|
|
25
|
+
|
|
26
|
+
-
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
-
|
|
31
|
+
|
|
32
|
+
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
|
|
33
|
+
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
|
|
34
|
+
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## [0.25.2] - 2022-01-21
|
|
38
|
+
|
|
8
39
|
### Breaking Changes
|
|
9
40
|
|
|
10
41
|
- `ex.Util.extend()` is removed, modern js spread operator `{...someobject, ...someotherobject}` handles this better.
|
|
@@ -101,11 +132,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
101
132
|
* Event types (up, down, move, etc) now all exist in 2 types `ex.Input.PointerEvent` and `ex.Input.WheelEvent`
|
|
102
133
|
* The `stopPropagation()` method used to cancel further dispatches has been renamed to `cancel()` to match other events API.
|
|
103
134
|
* Events no longer have a reference to the `pointer` but now have all of the same information that was availabe on the pointer `worldPos`, `screenPos`, `pagePos`
|
|
104
|
-
-
|
|
105
135
|
|
|
106
|
-
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
|
|
107
|
-
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
|
|
108
|
-
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
|
|
109
136
|
|
|
110
137
|
## [0.25.1] - 2021-11-05
|
|
111
138
|
|
package/build/dist/excalibur.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* excalibur - 0.26.0-alpha.
|
|
2
|
+
* excalibur - 0.26.0-alpha.383+eee7d5d - 2022-1-22
|
|
3
3
|
* https://github.com/excaliburjs/Excalibur
|
|
4
4
|
* Copyright (c) 2022 Excalibur.js <https://github.com/excaliburjs/Excalibur/graphs/contributors>
|
|
5
5
|
* Licensed BSD-2-Clause
|
|
@@ -30121,7 +30121,7 @@ Promises_Promise = Promise_1 = Promises_decorate([
|
|
|
30121
30121
|
* The current Excalibur version string
|
|
30122
30122
|
* @description `process.env.__EX_VERSION` gets replaced by Webpack on build
|
|
30123
30123
|
*/
|
|
30124
|
-
const EX_VERSION = "0.26.0-alpha.
|
|
30124
|
+
const EX_VERSION = "0.26.0-alpha.383+eee7d5d";
|
|
30125
30125
|
|
|
30126
30126
|
polyfill();
|
|
30127
30127
|
// This file is used as the bundle entry point and exports everything
|