Skip to content

Commit aa9a65e

Browse files
committed
fix(flathub): switch to GNOME runtime for WebKitGTK (#45)
The Freedesktop runtime doesn't include WebKitGTK which Tauri requires. Switch to GNOME Platform/SDK 47 which includes WebKitGTK out of the box.
1 parent 6b78020 commit aa9a65e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/store-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -449,12 +449,12 @@ jobs:
449449
# that flatpak-builder will process to download and extract dependencies
450450
cat > md.thomas.shard.launcher.yml << 'MANIFEST_EOF'
451451
id: md.thomas.shard.launcher
452-
runtime: org.freedesktop.Platform
453-
runtime-version: '25.08'
454-
sdk: org.freedesktop.Sdk
452+
runtime: org.gnome.Platform
453+
runtime-version: '47'
454+
sdk: org.gnome.Sdk
455455
sdk-extensions:
456-
- org.freedesktop.Sdk.Extension.rust-stable
457-
- org.freedesktop.Sdk.Extension.node20
456+
- org.gnome.Sdk.Extension.rust-stable
457+
- org.gnome.Sdk.Extension.node20
458458
- org.freedesktop.Sdk.Extension.openjdk21
459459
command: shard-launcher
460460

desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "shard-ui",
33
"private": true,
4-
"version": "0.1.22",
4+
"version": "0.1.23",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shard_ui"
3-
version = "0.1.22"
3+
version = "0.1.23"
44
description = "Shard launcher UI"
55
authors = ["you"]
66
edition = "2021"

desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2.0.2",
33
"productName": "Shard Launcher",
4-
"version": "0.1.22",
4+
"version": "0.1.23",
55
"identifier": "sh.shard.launcher",
66
"build": {
77
"beforeDevCommand": "bun run dev",

launcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shard"
3-
version = "0.1.22"
3+
version = "0.1.23"
44
edition = "2024"
55
description = "A minimal, content-addressed Minecraft launcher"
66
license = "MIT"

0 commit comments

Comments
 (0)