Skip to content

Commit

Permalink
Release v0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Nov 24, 2022
1 parent 9f18195 commit 69a39b0
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 9 deletions.
1 change: 1 addition & 0 deletions .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.15.1
- v0.15.0
- v0.14.0
- v0.13.1
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.15.1 (2022-11-25)

* Fixed:
* The placeholder `<winProgramData>` was incorrectly interpreted as
Expand All @@ -8,6 +8,9 @@
* For Wine prefixes from Heroic and Wine prefixes passed by CLI,
the prefix's `*.reg` files were backed up even if the game in question
was not known to have registry-based saves.
* Changed:
* Updated translations.
(Thanks to contributors on the [Crowdin project](https://crowdin.com/project/ludusavi))

## v0.15.0 (2022-11-07)

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.15.0"
version = "0.15.1"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2021"
description = "Game save backup tool"
Expand Down
3 changes: 2 additions & 1 deletion assets/com.github.mtkennerly.ludusavi.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@
</description>
<screenshots>
<screenshot type="default">
<image type="source">https://raw.githubusercontent.com/mtkennerly/ludusavi/v0.15.0/docs/sample-gui-linux.png</image>
<image type="source">https://raw.githubusercontent.com/mtkennerly/ludusavi/v0.15.1/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.15.1" date="2022-11-25"/>
<release version="0.15.0" date="2022-11-07"/>
<release version="0.14.0" date="2022-10-29"/>
<release version="0.13.1" date="2022-09-29"/>
Expand Down
2 changes: 1 addition & 1 deletion lang/it-IT.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ button-deselect-all = Deseleziona tutto
button-enable-all = Attiva tutto
button-disable-all = Disattiva tutto
button-customize = Personalizza
button-exit = Exit
button-exit = Esci
no-roots-are-configured = Aggiungi alcune radici per eseguire il backup di ulteriori dati.
config-is-invalid = Errore: File di configurazione non valido.
manifest-is-invalid = Errore: File manifest non valido.
Expand Down
2 changes: 1 addition & 1 deletion lang/pt-BR.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ button-deselect-all = Desmarcar tudo
button-enable-all = Ativar tudo
button-disable-all = Desativar tudo
button-customize = Personalizar
button-exit = Exit
button-exit = Sair
no-roots-are-configured = Adicione algumas raízes para armazenar ainda mais dados.
config-is-invalid = Erro: O arquivo de configuração é inválido.
manifest-is-invalid = Erro: O arquivo de manifesto é inválido.
Expand Down
4 changes: 2 additions & 2 deletions src/lang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ impl ToString for Language {
Self::Esperanto => "Esperanto (20%)",
Self::Filipino => "Filipino (57%)",
Self::German => "Deutsch (94%)",
Self::Italian => "Italiano (99%)",
Self::Italian => "Italiano (100%)",
Self::Korean => "한국어 (47%)",
Self::Polish => "Polski (94%)",
Self::PortugueseBrazilian => "Português brasileiro (99%)",
Self::PortugueseBrazilian => "Português brasileiro (100%)",
Self::Spanish => "Español (84%)",
}
.to_string()
Expand Down
7 changes: 6 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,15 @@ def lang(ctx, jar="/opt/crowdin-cli/crowdin-cli.jar"):


@task
def prerelease(ctx):
def clean(ctx):
if DIST.exists():
shutil.rmtree(DIST, ignore_errors=True)
DIST.mkdir()


@task
def prerelease(ctx):
clean(ctx)
legal(ctx)
flatpak(ctx)
lang(ctx)

0 comments on commit 69a39b0

Please sign in to comment.