diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e1154b..d8e8c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [mmclient-v0.6.0] - 2025-01-26 + +### New Features + +- Support ffmpeg vulkan decode (5c76b29273d3c0b29edb9e34e33096af76814398) +- Explicit video refresh (60dffc04f4f338c3fce6d791211c12d7471a187a) +- Implement forward error correction (729e652a001d155345c80b7f5fef397a884a1a98) + +### Bugfixes + +- Enforce non-fractional scales from the client (2a25ca95db01ff8460328f8f258faadf55d948bb) +- Take application names with path included (100d51e8f44129a23b1df944a897a3123ef12d1c) + ## [mmserver-v0.7.0] - 2025-01-26 ### New Features diff --git a/README.md b/README.md index 59a4592..d390b50 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,6 @@ This is a game streaming and remote desktop tool for Linux hosts, featuring: - [Documentation Book](https://colinmarc.github.io/magic-mirror) - [Latest Server Release [mmserver-v0.7.0]](https://github.com/colinmarc/magic-mirror/releases/tag/mmserver-v0.7.0) - - [Latest CLI Client Release [mmclient-v0.5.0]](https://github.com/colinmarc/magic-mirror/releases/tag/mmclient-v0.5.0) + - [Latest CLI Client Release [mmclient-v0.6.0]](https://github.com/colinmarc/magic-mirror/releases/tag/mmclient-v0.6.0) - [Latest macOS Client Release](https://github.com/colinmarc/magic-mirror-swiftui/releases/latest) - [Discord](https://discord.gg/v22G644DzS) diff --git a/docs/content/_index.md b/docs/content/_index.md index b25da01..c95ec42 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -16,7 +16,7 @@ an open-source game streaming and remote desktop tool for linux hosts. These links always point to the latest release. - 💾 [Server [mmserver-v0.7.0]](https://github.com/colinmarc/magic-mirror/releases/tag/mmserver-v0.7.0) - - 💾 [Command-Line Client [mmclient-v0.5.0]](https://github.com/colinmarc/magic-mirror/releases/tag/mmclient-v0.5.0) + - 💾 [Command-Line Client [mmclient-v0.6.0]](https://github.com/colinmarc/magic-mirror/releases/tag/mmclient-v0.6.0) - 💾 [macOS GUI Client](https://github.com/colinmarc/magic-mirror-swiftui/releases/latest) ### Setup Guides diff --git a/docs/content/setup/client.md b/docs/content/setup/client.md index 72f4222..524d03e 100644 --- a/docs/content/setup/client.md +++ b/docs/content/setup/client.md @@ -15,7 +15,7 @@ later. ## Installing the commandline client There is also a cross-platform commandline client, `mmclient`. You can download -it [here](https://github.com/colinmarc/magic-mirror/releases/tag/mmclient-v0.5.0). +it [here](https://github.com/colinmarc/magic-mirror/releases/tag/mmclient-v0.6.0). The commandline client requires `ffmpeg` 6.0 or later to be installed on the system. It also requires up-to-date Vulkan drivers. diff --git a/mm-client/Cargo.lock b/mm-client/Cargo.lock index 09e478e..90b5329 100644 --- a/mm-client/Cargo.lock +++ b/mm-client/Cargo.lock @@ -1824,7 +1824,7 @@ dependencies = [ [[package]] name = "mm-client" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "ash", diff --git a/mm-client/Cargo.toml b/mm-client/Cargo.toml index bd9bad9..82bafdf 100644 --- a/mm-client/Cargo.toml +++ b/mm-client/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "mm-client" -version = "0.5.0" +version = "0.6.0" edition = "2021" [[bin]]