Skip to content

Tags: fabadja/ruffle

Tags

nightly-2021-02-06

Toggle nightly-2021-02-06's commit message
core: Fix stroke artifacts when using drawing API

Some recent changes with lyon's API could cause Ruffle to draw extra
strokes when it sees two Move commands in a row -- an extra zero-length
stroke would appear. Let's merge adjacent Move commands in the
tessellator to avoid this issue.

(TODO: Add an example to visual_tests).

nightly-2021-02-05

Toggle nightly-2021-02-05's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
web: Fix some context menu and warning message issues

nightly-2021-02-04

Toggle nightly-2021-02-04's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: Revert "build(deps): bump quick-xml from 0.20.0 to 0.21.0"

This reverts commit 0c6c339.

nightly-2021-02-03

Toggle nightly-2021-02-03's commit message
ci: Fix publish AUR package job

nightly-2021-02-02

Toggle nightly-2021-02-02's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
ci: Publish nightly builds to the AUR

Add a new job to release_nightly.yml that updates the AUR package
https://aur.archlinux.org/packages/ruffle-nightly-bin/ on nightly
basis.

nightly-2021-02-01

Toggle nightly-2021-02-01's commit message
chore: Add wasm-bindgen-cli version to docs

nightly-2021-01-31

Toggle nightly-2021-01-31's commit message
build(deps): bump isahc from 1.0.3 to 1.1.0

Bumps [isahc](https://github.com/sagebind/isahc) from 1.0.3 to 1.1.0.
- [Release notes](https://github.com/sagebind/isahc/releases)
- [Commits](sagebind/isahc@1.0.3...1.1.0)

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

nightly-2021-01-30

Toggle nightly-2021-01-30's commit message
core: Remove unneeded pub

nightly-2021-01-29

Toggle nightly-2021-01-29's commit message
chore: Add a few comments about unsafe usage

nightly-2021-01-28

Toggle nightly-2021-01-28's commit message
desktop: Fix sound envelopes to use proper positions

The points in an SWF sound envelope are always in 44.1KHz. The
desktop audio backend would end up using this points in the sound's
sample rate, often causing the envelope to be delayed.

Now the envelope is applied after resampling, and the positions
are scaled based on the output sample rate.