Skip to content

Commit

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

* Added:
* Steam shortcuts for non-Steam games are now detected.
On all platforms, the shortcut's "start in" folder is used as the `<base>` path.
On Linux, the shortcut's app ID is used to check `steamapps/compatdata` for Proton saves.
* In Heroic roots, Ludusavi can now recognize games by their GOG ID.
This helps resolve cases where Heroic and Ludusavi use different titles for the same game.
The CLI `find` command now also has a `--gog-id` option.
* GUI: On the Steam Deck, an "exit" button has been added to the other screen,
to make it easier to exit the program while using game mode.
Ludusavi checks if `/home/deck` exists in order to determine whether it is running on the Steam Deck.
* CLI: `--config` option to set a custom config directory.
([Contributed by sluedecke](https://github.com/mtkennerly/ludusavi/pull/153))
* Updated translations.
(Thanks to contributors on the [Crowdin project](https://crowdin.com/project/ludusavi))
* Changed:
* Manifest updates now use gzip compression, cutting the download size to about 10% (e.g., 11.4 MiB -> 1.5 MiB).
* Fixed:
Expand Down
10 changes: 2 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,12 @@ pip install aiohttp toml

Also install the Crowdin CLI manually.

#### Automated
Run:

```bash
invoke prerelease
```

#### Manual
#### Process
* Update version in CHANGELOG.md
* Update version in Cargo.toml
* Update version in assets/com.github.mtkennerly.ludusavi.metainfo.xml
including the `releases` section and the screenshot URL.
* Run `invoke prerelease`
* Update the translation percentages in src/lang.rs
* Run `cargo build` to update the version in Cargo.lock
* Add the new version to `.github/ISSUE_TEMPLATE/*.yaml`.
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.14.0"
version = "0.15.0"
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.14.0/docs/sample-gui-linux.png</image>
<image type="source">https://raw.githubusercontent.com/mtkennerly/ludusavi/v0.15.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.15.0" date="2022-11-07"/>
<release version="0.14.0" date="2022-10-29"/>
<release version="0.13.1" date="2022-09-29"/>
<release version="0.13.0" date="2022-09-28"/>
Expand Down
1 change: 1 addition & 0 deletions lang/ar-SA.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = إلغاء تحديد الكل
button-enable-all = تفعيل الكل
button-disable-all = تعطيل الكل
button-customize = Customize
button-exit = Exit
no-roots-are-configured = إضافة بعض الجذور لنسخ المزيد من البيانات احتياطياً.
config-is-invalid = خطأ: ملف التكوين غير صالح.
manifest-is-invalid = خطأ: ملف البيان غير صالح.
Expand Down
1 change: 1 addition & 0 deletions lang/de-DE.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = Alle abwählen
button-enable-all = Alle aktivieren
button-disable-all = Alle deaktivieren
button-customize = Anpassen
button-exit = Exit
no-roots-are-configured = Fügen Sie einige Wurzeln hinzu, um noch mehr Daten zu sichern.
config-is-invalid = Fehler: Die Konfigurationsdatei ist ungültig.
manifest-is-invalid = Fehler: Die Manifest-Datei ist ungültig.
Expand Down
1 change: 1 addition & 0 deletions lang/eo-UY.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = Deselect all
button-enable-all = Enable all
button-disable-all = Disable all
button-customize = Customize
button-exit = Exit
no-roots-are-configured = Add some roots to back up even more data.
config-is-invalid = Error: The config file is invalid.
manifest-is-invalid = Error: The manifest file is invalid.
Expand Down
1 change: 1 addition & 0 deletions lang/es-ES.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = Deseleccionar todos
button-enable-all = Habilitar todos
button-disable-all = Deshabilitar todos
button-customize = Customize
button-exit = Exit
no-roots-are-configured = Añade algunas raíces para respaldar aún más datos.
config-is-invalid = Error: El archivo de configuración no es válido.
manifest-is-invalid = Error: El archivo de manifiesto no es válido.
Expand Down
1 change: 1 addition & 0 deletions lang/fil-PH.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = Alisin ang lahat
button-enable-all = Enable ang lahat
button-disable-all = Disable ang lahat
button-customize = Customize
button-exit = Exit
no-roots-are-configured = Paki-lagay mga roots upang mag-back up ng higit pang data.
config-is-invalid = Error: Invalid ang config file.
manifest-is-invalid = Error: Invalid ang manifest file.
Expand Down
1 change: 1 addition & 0 deletions lang/it-IT.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = Deseleziona tutto
button-enable-all = Attiva tutto
button-disable-all = Disattiva tutto
button-customize = Personalizza
button-exit = Exit
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
1 change: 1 addition & 0 deletions lang/ko-KR.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = 모두 선택 해제
button-enable-all = 모두 활성화
button-disable-all = 모두 비활성화
button-customize = Customize
button-exit = Exit
no-roots-are-configured = 최상위 디렉토리를 추가해서 더 많은 데이터를 백업하세요.
config-is-invalid = 오류: 설정 파일이 올바르지 않습니다.
manifest-is-invalid = 오류: 매니페스트 파일이 올바르지 않습니다.
Expand Down
1 change: 1 addition & 0 deletions lang/pl-PL.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = Odznacz wszystkie
button-enable-all = Włącz wszystkie
button-disable-all = Wyłącz wszystkie
button-customize = Customize
button-exit = Exit
no-roots-are-configured = Dodaj kilka katalogów głównych, aby utworzyć kopię większej ilości danych.
config-is-invalid = Błąd: Plik konfiguracji jest nieprawidłowy.
manifest-is-invalid = Błąd: Plik manifest jest nieprawidłowy.
Expand Down
25 changes: 13 additions & 12 deletions lang/pt-BR.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ badge-duplicates = DUPLICADOS
badge-duplicated = DUPLICADO
badge-ignored = IGNORADO
badge-redirected-from = DE: { $path }
badge-redirecting-to = TO: { $path }
badge-redirecting-to = PARA: { $path }
some-entries-failed = Algumas entradas não conseguiram processar; procure por { badge-failed } na saída para mais detalhes. Verifique se você pode acessar esses arquivos ou se os caminhos deles são muito longos.
cli-game-line-item-redirected = Redirecionado de: { $path }
cli-game-line-item-redirecting = Redirecting to: { $path }
cli-game-line-item-redirecting = Redirecionando para: { $path }
button-backup = Fazer backup
button-preview = Visualizar
button-restore = Restaurar
Expand All @@ -40,6 +40,7 @@ button-deselect-all = Desmarcar tudo
button-enable-all = Ativar tudo
button-disable-all = Desativar tudo
button-customize = Personalizar
button-exit = Exit
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 Expand Up @@ -73,7 +74,7 @@ field-redirect-source =
field-redirect-target =
.placeholder = Alvo (novo local)
field-backup-excluded-items = Exclusões do backup:
field-redirects = Redirects:
field-redirects = Redirecionar:
# This appears next to the number of full backups that you'd like to keep.
# A full backup includes all save files for a game.
field-retention-full = Todos:
Expand All @@ -83,13 +84,13 @@ field-retention-differential = Diferencial:
field-backup-format = Formato:
field-backup-compression = Compressão:
# The compression level determines how much compresison we perform.
field-backup-compression-level = Level:
label-manifest = Manifest
field-backup-compression-level = Nível:
label-manifest = Manifesto
# This shows the time when we checked for an update to the manifest.
label-checked = Checked
label-checked = Verificado
# This shows the time when we found an update to the manifest.
label-updated = Updated
label-new = New
label-updated = Atualizado
label-new = Novo
store-epic = Epic
store-gog = GOG
store-gog-galaxy = GOG Galaxy
Expand All @@ -113,7 +114,7 @@ compression-zstd = Zstd
theme = Tema
theme-light = Claro
theme-dark = Escuro
redirect-bidirectional = Bidirectional
redirect-bidirectional = Bidirecional
explanation-for-exclude-store-screenshots =
Nos backups, exclui capturas de tela específicas de armazenamento. No momento, isso só se aplica
às capturas de tela de { store-steam } que você tirou. Se um jogo tem sua própria função de captura de tela
Expand All @@ -135,8 +136,8 @@ confirm-add-missing-roots = Adicionar estas origens?
no-missing-roots = Nenhuma origem adicional encontrada.
preparing-backup-target = Preparando o diretório de backup...
updating-manifest = Atualizando manifesto...
saves-found = Save data found.
no-saves-found = No save data found.
saves-found = Dados salvos encontrados.
no-saves-found = Não foram encontrados dados salvos.
# This is tacked on to form something like "Back up (no confirmation)",
# meaning we would perform an action without asking the user if they're sure.
suffix-no-confirmation = no confirmation
suffix-no-confirmation = sem confirmação
1 change: 1 addition & 0 deletions lang/zh-CN.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ button-deselect-all = 全不选
button-enable-all = 全部启用
button-disable-all = 全部禁用
button-customize = Customize
button-exit = Exit
no-roots-are-configured = 添加一些根,以备份甚至更多的数据。
config-is-invalid = 错误:配置文件无效。
manifest-is-invalid = 错误:manifest 文件无效。
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 (100%)",
Self::Italian => "Italiano (99%)",
Self::Korean => "한국어 (47%)",
Self::Polish => "Polski (94%)",
Self::PortugueseBrazilian => "Português brasileiro (94%)",
Self::PortugueseBrazilian => "Português brasileiro (99%)",
Self::Spanish => "Español (84%)",
}
.to_string()
Expand Down

0 comments on commit b1da32d

Please sign in to comment.