From 3f67e92c5c11eadb03430225b87820a3676e77a4 Mon Sep 17 00:00:00 2001 From: Dennis Ranke Date: Wed, 4 May 2022 08:48:16 +0200 Subject: [PATCH] prepare for 0.2.0-rc2 release --- Cargo.lock | 2 +- Cargo.toml | 2 +- site/content/_index.md | 11 +++++++++++ site/static/v0.2.0-rc2/index.html | 1 + src/run-web.html | 2 +- web/src/index.html | 2 +- web/src/microw8.js | 2 +- 7 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 site/static/v0.2.0-rc2/index.html diff --git a/Cargo.lock b/Cargo.lock index ac6f093..fc0dcb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2637,7 +2637,7 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uw8" -version = "0.2.0-rc1" +version = "0.2.0-rc2" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 945635e..66abb19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uw8" -version = "0.2.0-rc1" +version = "0.2.0-rc2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/site/content/_index.md b/site/content/_index.md index 8ee65ab..e9153e8 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -29,6 +29,17 @@ Examplers for older versions: ## Versions +### v0.2.0-rc2 + +* [Web runtime](v0.2.0-rc2) +* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.2.0-rc2/microw8-0.2.0-rc2-linux.tgz) +* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.2.0-rc2/microw8-0.2.0-rc2-macos.tgz) +* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.2.0-rc2/microw8-0.2.0-rc2-windows.zip) + +Changes: + +* fix timing issues of sound playback, especially on systems with large sound buffers + ### v0.2.0-rc1 * [Web runtime](v0.2.0-rc1) diff --git a/site/static/v0.2.0-rc2/index.html b/site/static/v0.2.0-rc2/index.html new file mode 100644 index 0000000..ff05584 --- /dev/null +++ b/site/static/v0.2.0-rc2/index.html @@ -0,0 +1 @@ +MicroW8
MicroW8 0.2.0-rc2
\ No newline at end of file diff --git a/src/run-web.html b/src/run-web.html index 052f6fc..ac011df 100644 --- a/src/run-web.html +++ b/src/run-web.html @@ -1 +1 @@ -uw8-run
\ No newline at end of file +uw8-run
\ No newline at end of file diff --git a/web/src/index.html b/web/src/index.html index 9d1a70f..1f6b2df 100644 --- a/web/src/index.html +++ b/web/src/index.html @@ -10,7 +10,7 @@
- MicroW8 0.2.0-rc1 + MicroW8 0.2.0-rc2
diff --git a/web/src/microw8.js b/web/src/microw8.js index 6156809..f73947d 100644 --- a/web/src/microw8.js +++ b/web/src/microw8.js @@ -308,7 +308,7 @@ export default function MicroW8(screen, config = {}) { canvasCtx.putImageData(imageData, 0, 0); let timeOffset = ((time * 6) % 100 - 50) / 6; - thisFrame = startTime + time - timeOffset / 2; + thisFrame = startTime + time - timeOffset / 8; } else { thisFrame = Date.now(); }