Skip to content

Releases: ruffle-rs/ruffle

Nightly 2021-12-18

18 Dec 00:01
Compare
Choose a tag to compare
Nightly 2021-12-18 Pre-release
Pre-release
nightly-2021-12-18

web: Check `$CI` environment variable

Nightly 2021-12-16

16 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-16 Pre-release
Pre-release
core: Introduce `InputManager`

`InputManager` encapsulates the common logic that previously the
`UiBackend`s used to implement.

Nightly 2021-12-14

14 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-14 Pre-release
Pre-release
build(deps): bump serde from 1.0.130 to 1.0.131

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.130 to 1.0.131.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.130...v1.0.131)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Nightly 2021-12-13

13 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-13 Pre-release
Pre-release
nightly-2021-12-13

web/extension: Allow 'data:' URLs as image src - needed by the canvas…

Nightly 2021-12-12

12 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-12 Pre-release
Pre-release
nightly-2021-12-12

chore: clippy

Nightly 2021-12-11

11 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-11 Pre-release
Pre-release
web: Suppress Webpack's size limit for .wasm files

Webpack warns on assets larger than 250KB by default. Our WebAssembly
module exceeds this limit by far (it's a few MBs).

Nightly 2021-12-10

10 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-10 Pre-release
Pre-release
render: Stub L16 JPEG pixel format

16-bit luminance (grayscale) images are very rare, so it's hard to
tell what the expected behavior should be.

Nightly 2021-12-09

09 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-09 Pre-release
Pre-release
nightly-2021-12-09

chore: Remove more explicit clones

Nightly 2021-12-07

07 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-07 Pre-release
Pre-release
nightly-2021-12-07

docs: Fix grammar in CONTRIBUTING.md

Nightly 2021-12-06

06 Dec 00:02
Compare
Choose a tag to compare
Nightly 2021-12-06 Pre-release
Pre-release
html: Handle attribute errors gracefully

`quick-xml` returns an `Err` for invalid attributes (e.g. unquoted).
Handle such errors by ignoring the HTML completely and return an
empty string instead, as Flash does.

Fix #5789.