Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Jun 9, 2024
1 parent 92ab8d3 commit 367abb6
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ body:
label: Ludusavi version
description: If you're not using the latest version, please update and make sure the problem still occurs.
options:
- v0.24.0
- v0.23.0
- v0.22.0
- v0.21.0
Expand All @@ -16,7 +17,6 @@ body:
- v0.18.1
- v0.18.0
- v0.17.1
- v0.17.0
- Other
validations:
required: true
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.24.0 (2024-06-08)

* Added:
* On the "other" screen,
Expand All @@ -18,6 +18,8 @@
* Title normalization now ignores apostrophes and quotation marks
(e.g., `ludusavi find --normalized "Mirrors Edge"` will find `Mirror's Edge`).
* Some additional fields in the config file have been made optional.
* Updated translations.
(Thanks to contributors on the [Crowdin project](https://crowdin.com/project/ludusavi))
* Fixed:
* For Heroic and Lutris roots,
if you had multiple copies of the same game,
Expand Down
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ Also install the Crowdin CLI manually.
* Add the new version to `.github/ISSUE_TEMPLATE/*.yaml`.
* Update the README if necessary for any new features.
Check for any new content that needs to be uncommented (`<!--`).
* Run:
```
export VERSION=$(invoke version)
git add .
git commit -m Release
git tag v${VERSION} -m Release
git push
git push --tags
```
* Run: `cargo publish`
* Create a release on GitHub and attach the workflow build artifacts
(plus a zipped copy of `dist/*-legal.txt`).

#### Publish
Commands assume you've set `VERSION=$(invoke version)`.
Expand Down
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ludusavi"
version = "0.23.0"
version = "0.24.0"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2021"
description = "Game save backup tool"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ written in [Rust](https://www.rust-lang.org).
It is cross-platform and supports multiple game stores.

## Features
* Ability to back up data from more than 10,000 games plus your own custom entries.
* Ability to back up data from more than 19,000 games plus your own custom entries.
* Backup and restore for Steam as well as other game libraries.
* Both a graphical interface and command line interface for scripting.
Tab completion is available for Bash, Fish, Zsh, PowerShell, and Elvish.
Expand Down
5 changes: 3 additions & 2 deletions assets/com.github.mtkennerly.ludusavi.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<p>Ludusavi is a tool for backing up your PC video game save data, written in Rust. It is cross-platform and supports multiple game stores.</p>
<p>Features:</p>
<ul>
<li>Ability to back up data from more than 10,000 games plus your own custom entries.</li>
<li>Ability to back up data from more than 19,000 games plus your own custom entries.</li>
<li>Backup and restore for Steam as well as other game libraries.</li>
<li>Preview of the backup/restore before actually performing it.</li>
<li>Both a graphical interface and command line interface for scripting. (NOTE: CLI is named "com.github.mtkennerly.ludusavi" for Flatpak) </li>
Expand Down Expand Up @@ -52,13 +52,14 @@
</keywords>
<screenshots>
<screenshot type="default">
<image type="source">https://raw.githubusercontent.com/mtkennerly/ludusavi/v0.23.0/docs/sample-gui-linux.png</image>
<image type="source">https://raw.githubusercontent.com/mtkennerly/ludusavi/v0.24.0/docs/sample-gui-linux.png</image>
<caption>Graphical user interface</caption>
</screenshot>
</screenshots>
<content_rating type="oars-1.1" />
<launchable type="desktop-id">com.github.mtkennerly.ludusavi.desktop</launchable>
<releases>
<release version="0.24.0" date="2024-06-08"/>
<release version="0.23.0" date="2024-04-27"/>
<release version="0.22.0" date="2023-12-26"/>
<release version="0.21.0" date="2023-08-22"/>
Expand Down

0 comments on commit 367abb6

Please sign in to comment.