Skip to content

Commit

Permalink
0.13.1 (#242)
Browse files Browse the repository at this point in the history
Note: If you've manually installed a pre-release before, this update
will fail. Please manually download the latest version instead.

- Games are shown as they are found. For very large libraries, this can
make a huge difference, since you now start seeing some results
immediately, instead of having to wait potentially minutes for the whole
thing to be processed (especially for Steam games).

- We no longer directly fetch game engine info from PCGamingWiki. That
information is saved in my own database, to avoid overwhelming their
servers (plus it's a lot faster for you).

- Some data is cached, so you see relevant information much more quickly
when starting Rai Pal.

- List of patrons in the Thanks tab ❤️ (only if they have a public
profile).

- The "Demo vs Game" and "VR vs Flat" columns are now merged into a
"tags" column. So you can hide demos or vr games by disabling that tag
in the filter. This will probably also be used later for things like
UEVR and UUVR compatibility scores.

- Definitely more suff I'm forgetting.
  • Loading branch information
Raicuparta authored Oct 27, 2024
2 parents cb3eb6b + 59f2799 commit 4e0446a
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions backend/tauri-app/capabilities/main.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "main-capabilities",
"local": true,
"windows": [
"main"
],
"permissions": [
"core:path:default",
"core:event:default",
"core:window:default",
"core:app:default",
"core:resources:default",
"dialog:allow-open",
"dialog:allow-ask",
"updater:allow-check",
"shell:default"
]
}
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "main-capabilities",
"local": true,
"windows": ["main"],
"permissions": [
"core:path:default",
"core:event:default",
"core:window:default",
"core:app:default",
"core:resources:default",
"dialog:allow-open",
"dialog:allow-ask",
"updater:allow-check",
"shell:default",
"updater:default"
]
}

0 comments on commit 4e0446a

Please sign in to comment.