Releases: ruffle-rs/ruffle
Releases · ruffle-rs/ruffle
Nightly 2021-10-06
nightly-2021-10-06 chore: Bump h263-rs and h263-rs-yuv git refs
Nightly 2021-10-05
build(deps): bump pretty_assertions from 0.7.2 to 1.0.0 Bumps [pretty_assertions](https://github.com/colin-kiegel/rust-pretty-assertions) from 0.7.2 to 1.0.0. - [Release notes](https://github.com/colin-kiegel/rust-pretty-assertions/releases) - [Changelog](https://github.com/colin-kiegel/rust-pretty-assertions/blob/main/CHANGELOG.md) - [Commits](https://github.com/colin-kiegel/rust-pretty-assertions/compare/v0.7.2...v1.0.0) --- updated-dependencies: - dependency-name: pretty_assertions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Nightly 2021-10-04
nightly-2021-10-04 avm2: Remove `is_boxed_primitive`, as we are no longer accepting boxe…
Nightly 2021-10-03
swf: Improve `ActionTry` read/write * Use `TryFlags` instead of hard-coded binary literals. * Rename `try_length`, `catch_length`, `finally_length` to `try_size`, `catch_size`, `finally_size` to match SWF19 namings. * Refactor write and fix a few bugs there: * The actions length should not include the try, catch, finally bodies, only the metadata of `flags`, `try_size`, `catch_size`, `finally_size` and catch variable (either as `u8` or `SwfStr`). * A placeholder byte should be written in place of the catch variable when there is no catch clause.
Nightly 2021-10-02
nightly-2021-10-02 avm2: Move `QNameObject` specific methods behind an `as_qname_object`…
Nightly 2021-10-01
build(deps-dev): bump typedoc from 0.21.9 to 0.22.4 in /web Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.21.9 to 0.22.4. - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.21.9...v0.22.4) --- updated-dependencies: - dependency-name: typedoc dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Nightly 2021-09-28
build(deps): bump instant from 0.1.10 to 0.1.11 Bumps [instant](https://github.com/sebcrozet/instant) from 0.1.10 to 0.1.11. - [Release notes](https://github.com/sebcrozet/instant/releases) - [Commits](https://github.com/sebcrozet/instant/compare/v0.1.10...v0.1.11) --- updated-dependencies: - dependency-name: instant dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Nightly 2021-09-27
nightly-2021-09-27 extension: Add log level option
Nightly 2021-09-26
nightly-2021-09-26 tests: Remove superfluous `^M` characters from ActionScript source
Nightly 2021-09-25
web: Mark TypeScript enums as const Unlike regular enums, const enums are completely removed during compilation, and as such are zero-cost in bundle size terms. Since it is not possible to query the possible values of a const enum at runtime, adapt the `autoplay` and `unmuteOverlay` validation logic.