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.
@@ -1,6 +1,8 @@
1
1
  name: Node CI
2
2
 
3
- on: [push]
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
@@ -20,6 +20,7 @@ Thank you for considering contributing to Etro! There are many ways you can cont
20
20
  git clone -b master --single-branch https://github.com/username/etro.git
21
21
  cd etro
22
22
  npm install
23
+ node node_modules/puppeteer/install.js
23
24
  ```
24
25
 
25
26
  ## Making your changes