etro 0.8.3 → 0.8.4
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/nodejs.yml +5 -2
- package/CHANGELOG.md +9 -0
- package/CONTRIBUTING.md +1 -0
- package/dist/etro-cjs.js +16 -6425
- package/dist/etro-iife.js +16 -6425
- package/dist/layer/audio-source.d.ts +1 -2
- package/dist/movie.d.ts +3 -1
- package/karma.conf.js +17 -1
- package/package.json +4 -7
- package/scripts/gen-effect-samples.html +27 -18
- package/scripts/save-effect-samples.js +6 -1
- package/src/layer/audio-source.ts +4 -5
- package/src/movie.ts +21 -9
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
name: Node CI
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
- push
|
|
5
|
+
- pull_request
|
|
4
6
|
|
|
5
7
|
jobs:
|
|
6
8
|
build:
|
|
@@ -22,8 +24,9 @@ jobs:
|
|
|
22
24
|
- name: npm install, lint, build, and test
|
|
23
25
|
run: |
|
|
24
26
|
npm ci
|
|
27
|
+
node node_modules/puppeteer/install.js
|
|
25
28
|
npm run lint
|
|
26
29
|
npm run build
|
|
27
|
-
npm test
|
|
30
|
+
xvfb-run --auto-servernum npm test
|
|
28
31
|
env:
|
|
29
32
|
CI: true
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [0.8.4] - 2022-02-23
|
|
9
|
+
### Fixed
|
|
10
|
+
- **Major memory leak.**
|
|
11
|
+
- `Movie#play()` not resolving.
|
|
12
|
+
- `Movie#paused` set to false after done playing or recording.
|
|
13
|
+
- Movies' `currentTime` being off by a fraction of a second a few frames after playing.
|
|
14
|
+
- Movies' `currentTime` setter not respecting `autoRefresh`.
|
|
15
|
+
|
|
8
16
|
## [0.8.3] - 2022-01-18
|
|
9
17
|
### Fixed
|
|
10
18
|
- Recording not respecting the `type` option.
|
|
@@ -193,6 +201,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
193
201
|
- Gaussian blur
|
|
194
202
|
- Transform
|
|
195
203
|
|
|
204
|
+
[0.8.4]: https://github.com/etro-js/etro/compare/v0.8.3...v0.8.4
|
|
196
205
|
[0.8.3]: https://github.com/etro-js/etro/compare/v0.8.2...v0.8.3
|
|
197
206
|
[0.8.2]: https://github.com/etro-js/etro/compare/v0.8.1...v0.8.2
|
|
198
207
|
[0.8.1]: https://github.com/etro-js/etro/compare/v0.8.0...v0.8.1
|
package/CONTRIBUTING.md
CHANGED