Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Oct 15, 2020
1 parent e42e4e5 commit 2339929
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.4.0 (2020-10-14)

* Added:
* Game-specific context menu entry to back up or restore the selected games.
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ still be included if you do a full backup of all games from the menu.
### Prompt after exiting a game
> ![Screenshot of prompt after exiting a game](docs/prompt.png)
### Menu actions
> ![Screenshot of menu actions](docs/actions.png)
### Main menu actions
> ![Screenshot of main menu actions](docs/actions.png)
### Game menu actions
> ![Screenshot of game menu actions](docs/actions-per-game.png)
### Notifications
> ![Screenshot of notifications](docs/notifications.png)
Expand All @@ -67,6 +70,9 @@ still be included if you do a full backup of all games from the menu.
use the same names, so if Ludusavi doesn't recognize it, and if the game is
from Steam, then the plugin will ask again with the game's Steam ID.
If that fails too, then you'll get a notification that no data was found.

This also applies to the "selected games" context menu option.
However, it does not apply to the "all games" main menu option.
* For backups, the plugin always sets Ludusavi's `--merge` flag. This way,
if you back up saves for one game, it will not interfere with any backups
you may have for another game.
Expand Down
Binary file added docs/actions-per-game.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/actions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion extension.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Id: mtkennerly.ludusavi
Name: Ludusavi
Author: Matthew T. Kennerly
Version: 0.3.0
Version: 0.4.0
Module: LudusaviPlaynite.dll
Type: GenericPlugin
Icon: icon.png
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def pack(ctx, toolbox="~/AppData/Local/Playnite/Toolbox.exe"):
toolbox = Path(toolbox).expanduser()
ctx.run('"{}" pack "{}" dist'.format(toolbox, target))
for file in glob(str(REPO / "dist/*.pext")):
if "raw_" in file:
if "_" in file:
shutil.move(file, str(REPO / "dist/ludusavi-playnite-v{}.pext".format(get_version())))

shutil.make_archive(str(REPO / "dist/ludusavi-playnite-v{}".format(get_version())), "zip", str(target))
Expand Down

0 comments on commit 2339929

Please sign in to comment.