Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
JMBeresford committed Nov 17, 2024
1 parent 9e449f0 commit 1fcff4b
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 13 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ 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.4.2](https://github.com/JMBeresford/retrom/compare/retrom-v0.4.1...retrom-v0.4.2) - 2024-11-17

### Fixes
- auto-updating



### New
- announcement system

Retrom now has an announcement system that can be used to display
important messages without requiring a new release. This is useful for
getting notified about breakages in current versions or new features
that are available.



- fullscreen game page overhaul

The game page in fullscreen mode was unfortunately prone to bugs and
inconsistencies on various screen sizes. This overhaul cleans up the UI
to make it more compatible with different screen sizes and resolutions,
and to make it more intuitive to use.




## [0.4.1](https://github.com/JMBeresford/retrom/compare/retrom-v0.4.0...retrom-v0.4.1) - 2024-11-13

### Fixes
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

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

[workspace.package]
edition = "2021"
version = "0.4.1"
version = "0.4.2"
authors = ["John Beresford <[email protected]>"]
license = "GPL-3.0"
readme = "./README.md"
Expand Down Expand Up @@ -34,12 +34,12 @@ 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.1" }
retrom-client = { path = "./packages/client", version = "^0.4.1" }
retrom-service = { path = "./packages/service", version = "^0.4.1" }
retrom-codegen = { path = "./packages/codegen", version = "^0.4.1" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "^0.4.1" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "^0.4.1" }
retrom-db = { path = "./packages/db", version = "^0.4.2" }
retrom-client = { path = "./packages/client", version = "^0.4.2" }
retrom-service = { path = "./packages/service", version = "^0.4.2" }
retrom-codegen = { path = "./packages/codegen", version = "^0.4.2" }
retrom-plugin-installer = { path = "./plugins/retrom-plugin-installer", version = "^0.4.2" }
retrom-plugin-launcher = { path = "./plugins/retrom-plugin-launcher", version = "^0.4.2" }
futures = "0.3.30"
bytes = "1.6.0"
reqwest = { version = "0.12.3", features = [
Expand Down

0 comments on commit 1fcff4b

Please sign in to comment.