diff --git a/src/locales/en.json b/src/locales/en.json index c71aa06a..a832e957 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -572,6 +572,14 @@ "string": "Warning: macOS games published on Steam need to be notarized by Apple, which the packager doesn't support. You can still test your game on a Mac, but you won't be able to publish it for macOS yet.", "developer_comment": "When using the Steamworks extension, warning that appears whenever macOS support is used or mentioned." }, + "steamworksTauriWarning": { + "string": "Warning: You must place steam_api64.dll (Windows) or libsteam_api.so (Linux) next to the compiled binary for Steamworks to work. The Steam client must also be running.", + "developer_comment": "When using the Steamworks extension with Tauri target." + }, + "steamworksTauriOverlayWarning": { + "string": "Warning: The Steam overlay (Shift+Tab) is Windows-only and uses a decoy swapchain approach. Achievement notification toasts will play their sound but the visual popup will not appear. On Linux/macOS the overlay is not yet supported. See the tauri-plugin-steamworks README for details.", + "developer_comment": "Overlay limitations when using Steamworks with Tauri." + }, "steamworksDocumentation": { "string": "See the extension's documentation for more details.", "developer_comment": "Link to more documentation about the Steamworks extension" diff --git a/src/p4/PackagerOptions.svelte b/src/p4/PackagerOptions.svelte index 7fd98b7c..e58f1158 100644 --- a/src/p4/PackagerOptions.svelte +++ b/src/p4/PackagerOptions.svelte @@ -1043,7 +1043,7 @@ }} >

{$_('options.steamworksExtension')}

- {#if ['electron-win64', 'electron-linux64', 'electron-mac'].includes($options.target)} + {#if ['electron-win64', 'electron-linux64', 'electron-mac', 'tauri'].includes($options.target)}

{$_('options.steamworksAvailable').replace('{n}', '480')}