Skip to content

Commit

Permalink
Merge 7cf96dd into 9a54ffc
Browse files Browse the repository at this point in the history
  • Loading branch information
JMBeresford authored Jan 14, 2025
2 parents 9a54ffc + 7cf96dd commit d4ad402
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 21 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,42 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.5.0](https://github.com/JMBeresford/retrom/compare/retrom-v0.4.10...retrom-v0.5.0) - 2025-01-14

### Fixes
- don't resize window on web



### New
- [**breaking**] standalone support

The Retrom service can now be run with its own
internal database, rather than relying on an
external one.



- Configure libraries from the client

You can now modify your library configurations, such as
folder location and structure, directly from the client.

This means that just about the entire server config can be managed
from the client now. No more manually mucking around with `json`
files on the server!



- Standalone mode

Retrom can now spin up and manage its own server
locally via standalone mode. No more complicated
server installation needed!




## [0.4.10](https://github.com/JMBeresford/retrom/compare/retrom-v0.4.9...retrom-v0.4.10) - 2024-12-28

### Fixes
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exclude = ["**/node_modules", "./packages/client/web"]

[workspace.package]
edition = "2021"
version = "0.4.10"
version = "0.5.0"
authors = ["John Beresford <[email protected]>"]
license = "GPL-3.0"
readme = "./README.md"
Expand Down Expand Up @@ -34,16 +34,16 @@ tracing-futures = { version = "0.2.5", features = ["tokio", "futures"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["io", "compat"] }
dotenvy = "0.15.7"
retrom-db = { path = "./packages/db", version = "^0.4.10" }
retrom-client = { path = "./packages/client", version = "^0.4.10" }
retrom-service = { path = "./packages/service", version = "^0.4.10" }
retrom-codegen = { path = "./packages/codegen", version = "^0.4.10" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "^0.4.10" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "^0.4.10" }
retrom-plugin-service-client = { path = "./plugins/retrom-plugin-service-client", version = "^0.4.10" }
retrom-plugin-steam = { path = "./plugins/retrom-plugin-steam", version = "^0.4.10" }
retrom-plugin-config = { path = "./plugins/retrom-plugin-config", version = "^0.4.10" }
retrom-plugin-standalone = { path = "./plugins/retrom-plugin-standalone", version = "^0.4.10" }
retrom-db = { path = "./packages/db", version = "^0.5.0" }
retrom-client = { path = "./packages/client", version = "^0.5.0" }
retrom-service = { path = "./packages/service", version = "^0.5.0" }
retrom-codegen = { path = "./packages/codegen", version = "^0.5.0" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "^0.5.0" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "^0.5.0" }
retrom-plugin-service-client = { path = "./plugins/retrom-plugin-service-client", version = "^0.5.0" }
retrom-plugin-steam = { path = "./plugins/retrom-plugin-steam", version = "^0.5.0" }
retrom-plugin-config = { path = "./plugins/retrom-plugin-config", version = "^0.5.0" }
retrom-plugin-standalone = { path = "./plugins/retrom-plugin-standalone", version = "^0.5.0" }
config = { version = "0.13.4", features = ["json5"] }
futures = "0.3.30"
bytes = "1.6.0"
Expand Down

0 comments on commit d4ad402

Please sign in to comment.