| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| hyprspace-aarch64-linux | 2026-03-25 | 33.1 MB | |
| hyprspace-x86_64-linux | 2026-03-25 | 34.7 MB | |
| README.md | 2026-03-25 | 503 Bytes | |
| v0.13.0 source code.tar.gz | 2026-03-25 | 371.0 kB | |
| v0.13.0 source code.zip | 2026-03-25 | 391.2 kB | |
| Totals: 5 Items | 68.6 MB | 0 | |
This release brings a breaking change to the config file format. To make your config work like before, you'll need to change your service definitions as shown below:
Before:
:::json
{
"services": {
"example": "/tcp/8080"
}
}
After:
:::json
{
"services": {
"example": {
"target": "/tcp/8080"
}
}
}
Learn more about the config file format at https://docs.hyprspace.privatevoid.net/configuration.html