diff --git a/Cargo.lock b/Cargo.lock index 678856c..e330f73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2637,7 +2637,7 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uw8" -version = "0.2.0-rc2" +version = "0.2.0-rc3" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 97f0bc3..6b67f29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uw8" -version = "0.2.0-rc2" +version = "0.2.0-rc3" 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 e9153e8..53863cb 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -29,6 +29,24 @@ Examplers for older versions: ## Versions +### v0.2.0-rc3 + +* [Web runtime](v0.2.0-rc3) +* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.2.0-rc3/microw8-0.2.0-rc3-linux.tgz) +* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.2.0-rc3/microw8-0.2.0-rc3-macos.tgz) +* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.2.0-rc3/microw8-0.2.0-rc3-windows.zip) + +Changes: + +* improve timing stability some more. essentially now guaranteeing that "frame = time_ms * 6 / 100" returns + consecutive frame numbers, provided the module can be run at 60 fps +* add support to redirect text output to the console for debugging using control code 6 +* update curlywas: +* * add support for `else if` +* * add support for escape sequences in strings +* * add support for char literals +* * add support for binop-assignment, eg. `+=`, `^=`, `<<=` etc. (also support for the tee operator: `+:=`) + ### v0.2.0-rc2 * [Web runtime](v0.2.0-rc2) diff --git a/site/static/v0.2.0-rc3/index.html b/site/static/v0.2.0-rc3/index.html new file mode 100644 index 0000000..9c00091 --- /dev/null +++ b/site/static/v0.2.0-rc3/index.html @@ -0,0 +1 @@ +MicroW8
MicroW8 0.2.0-rc3
\ No newline at end of file diff --git a/web/src/index.html b/web/src/index.html index 1f6b2df..235eee2 100644 --- a/web/src/index.html +++ b/web/src/index.html @@ -10,7 +10,7 @@
- MicroW8 0.2.0-rc2 + MicroW8 0.2.0-rc3