Skip to content

Commit

Permalink
chore: release mmserver-v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmarc committed Jan 26, 2025
1 parent 334d5b3 commit 5b81c6d
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 8 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## [mmserver-v0.7.0] - 2025-01-26

### New Features

- Enable hierarchical coding (90d636ffba8379da420e09c6f228fb65c334a7f2)
- Explicit video refresh (60dffc04f4f338c3fce6d791211c12d7471a187a)
- Implement forward error correction (729e652a001d155345c80b7f5fef397a884a1a98)
- Remove support for CPU encoders (a5d069cb7bde15931748e41ae3d9e12a6f917445)
- Log basic attachment stats (b42cb40cb3d5fbedd2a17d37e09da8984029998c)

### Bugfixes

- Pass correct flags to move_mount (af519eebc5a8f251624b3d063a7241910cddf2cc)
- Pass correct flags to move_mount (take 2) (2e6053675a229dba4fc012b5de4afb723e9a0aca)
- Enforce non-fractional scales from the client (2a25ca95db01ff8460328f8f258faadf55d948bb)
- Disable explicit sync if the syncobj_surface is destroyed (e6017dec6bb9daadbbe50898f7cd9cf7c14b19aa)
- Reduce the verbosity of some logging (b0abe2a76466e98ba8d4f844e88fd4ad4ce6c7ee)
- Print frame duration from encoder (4a9af4f712ce723306364bece359c9bf18515554)
- Add overall encode timing to tracy (334d5b37fe394e652bd27224c1c8e905e9c8a794)

## [mmserver-v0.6.1] - 2024-12-17

### New Features
Expand Down
2 changes: 1 addition & 1 deletion LICENSES/BUSL-1.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that
functionality of the Licensed Work, thereby utilizing
graphics processing hardware owned or operated by you.

Change Date: 2028-12-01
Change Date: 2029-01-01
Change License: MIT License

For information about alternative licensing arrangements for the Software,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This is a game streaming and remote desktop tool for Linux hosts, featuring:
### Quick Links

- [Documentation Book](https://colinmarc.github.io/magic-mirror)
- [Latest Server Release [mmserver-v0.6.1]](https://github.com/colinmarc/magic-mirror/releases/tag/mmserver-v0.6.1)
- [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 macOS Client Release](https://github.com/colinmarc/magic-mirror-swiftui/releases/latest)
- [Discord](https://discord.gg/v22G644DzS)
2 changes: 1 addition & 1 deletion docs/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ an open-source game streaming and remote desktop tool for linux hosts.

These links always point to the latest release.

- 💾 [Server [mmserver-v0.6.1]](https://github.com/colinmarc/magic-mirror/releases/tag/mmserver-v0.6.1)
- 💾 [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)
- 💾 [macOS GUI Client](https://github.com/colinmarc/magic-mirror-swiftui/releases/latest)

Expand Down
6 changes: 3 additions & 3 deletions docs/content/setup/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ toc = true

## Quickstart

First, grab [the latest server release](https://github.com/colinmarc/magic-mirror/releases/tag/mmserver-v0.6.1) and untar it somewhere:
First, grab [the latest server release](https://github.com/colinmarc/magic-mirror/releases/tag/mmserver-v0.7.0) and untar it somewhere:

```sh
curl -fsSL "https://github.com/colinmarc/magic-mirror/releases/download/mmserver-v0.6.1/mmserver-v0.6.1-linux-amd64.tar.gz" \
curl -fsSL "https://github.com/colinmarc/magic-mirror/releases/download/mmserver-v0.7.0/mmserver-v0.7.0-linux-amd64.tar.gz" \
| tar zxv
cd mmserver-v0.6.1
cd mmserver-v0.7.0
```

Then, create a [configuration file](@/reference/config.md) with at least one application definition:
Expand Down
2 changes: 1 addition & 1 deletion mm-server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mm-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "mm-server"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
publish = false

Expand Down

0 comments on commit 5b81c6d

Please sign in to comment.