Skip to content

Releases: ruffle-rs/ruffle

Nightly 2021-10-06

06 Oct 00:01
Compare
Choose a tag to compare
Nightly 2021-10-06 Pre-release
Pre-release
nightly-2021-10-06

chore: Bump h263-rs and h263-rs-yuv git refs

Nightly 2021-10-05

05 Oct 00:02
Compare
Choose a tag to compare
Nightly 2021-10-05 Pre-release
Pre-release
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

04 Oct 00:01
Compare
Choose a tag to compare
Nightly 2021-10-04 Pre-release
Pre-release
nightly-2021-10-04

avm2: Remove `is_boxed_primitive`, as we are no longer accepting boxe…

Nightly 2021-10-03

03 Oct 00:02
Compare
Choose a tag to compare
Nightly 2021-10-03 Pre-release
Pre-release
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

02 Oct 00:01
Compare
Choose a tag to compare
Nightly 2021-10-02 Pre-release
Pre-release
nightly-2021-10-02

avm2: Move `QNameObject` specific methods behind an `as_qname_object`…

Nightly 2021-10-01

01 Oct 00:02
Compare
Choose a tag to compare
Nightly 2021-10-01 Pre-release
Pre-release
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

28 Sep 00:19
Compare
Choose a tag to compare
Nightly 2021-09-28 Pre-release
Pre-release
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

27 Sep 00:19
Compare
Choose a tag to compare
Nightly 2021-09-27 Pre-release
Pre-release
nightly-2021-09-27

extension: Add log level option

Nightly 2021-09-26

26 Sep 00:20
Compare
Choose a tag to compare
Nightly 2021-09-26 Pre-release
Pre-release
nightly-2021-09-26

tests: Remove superfluous `^M` characters from ActionScript source

Nightly 2021-09-25

25 Sep 00:18
Compare
Choose a tag to compare
Nightly 2021-09-25 Pre-release
Pre-release
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.