Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified h/heroic-games-launcher/manifest.x86_64.bin
Binary file not shown.
5 changes: 3 additions & 2 deletions h/heroic-games-launcher/manifest.x86_64.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
"/usr/lib/heroic/resources/app.asar.unpacked/build/icon.icns",
"/usr/lib/heroic/resources/app.asar.unpacked/build/icon.png",
"/usr/lib/heroic/resources/app.asar.unpacked/build/mac-icon.icns",
"/usr/lib/heroic/resources/app.asar.unpacked/build/preload/webviewPreload.js",
"/usr/lib/heroic/resources/app.asar.unpacked/build/win_icon.ico",
"/usr/lib/heroic/snapshot_blob.bin",
"/usr/lib/heroic/v8_context_snapshot.bin",
Expand All @@ -151,6 +152,6 @@
}
},
"source-name": "heroic-games-launcher",
"source-release": "1",
"source-version": "2.22.0"
"source-release": "2",
"source-version": "2.22.1"
}
11 changes: 6 additions & 5 deletions h/heroic-games-launcher/pkg/fix-exec-heroic-add-to-steam.patch
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
diff --git a/src/backend/shortcuts/nonesteamgame/nonesteamgame.ts b/src/backend/shortcuts/nonesteamgame/nonesteamgame.ts
index 1e308c33..186d37a7 100644
index 28c917ce..646d19c9 100644
--- a/src/backend/shortcuts/nonesteamgame/nonesteamgame.ts
+++ b/src/backend/shortcuts/nonesteamgame/nonesteamgame.ts
@@ -263,7 +263,8 @@ async function addNonSteamGame(props: {
@@ -255,7 +255,8 @@ async function addNonSteamGame(game: Game): Promise<boolean> {
// add new Entry
const newEntry = {} as ShortcutEntry
newEntry.AppName = props.gameInfo.title
newEntry.AppName = gameInfo.title
- newEntry.Exe = `"${app.getPath('exe')}"`
+ // modified as otherwise it will add some like "/usr/lib/electron36/electron"
+ newEntry.Exe = `"heroic"`
newEntry.StartDir = `"${process.cwd()}"`

if (isFlatpak) {
diff --git a/src/backend/shortcuts/shortcuts/shortcuts.ts b/src/backend/shortcuts/shortcuts/shortcuts.ts
index 0bf16f14..e1ceca72 100644
index 528d3e5b..2a517571 100644
--- a/src/backend/shortcuts/shortcuts/shortcuts.ts
+++ b/src/backend/shortcuts/shortcuts/shortcuts.ts
@@ -221,9 +221,8 @@ async function generateMacOsApp(gameInfo: GameInfo) {
@@ -224,9 +224,8 @@ async function generateMacOsApp(gameInfo: GameInfo) {
writeFileSync(plistFile, plist)

// write the run.sh file
Expand All @@ -28,3 +28,4 @@ index 0bf16f14..e1ceca72 100644
const shortcut = `#!/bin/bash
# autogenerated file - do not edit


Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--- a/flatpak/com.heroicgameslauncher.hgl.desktop 2026-04-30 08:49:37.698540546 +0200
+++ b/flatpak/com.heroicgameslauncher.hgl.desktop 2026-04-30 08:54:28.314802989 +0200
diff --git a/flatpak/com.heroicgameslauncher.hgl.desktop b/flatpak/com.heroicgameslauncher.hgl.desktop
index 63840084..6d78fdcd 100644
--- a/flatpak/com.heroicgameslauncher.hgl.desktop
+++ b/flatpak/com.heroicgameslauncher.hgl.desktop
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=Heroic Games Launcher
Expand Down
13 changes: 6 additions & 7 deletions h/heroic-games-launcher/stone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
# SPDX-License-Identifier: MPL-2.0

name : heroic-games-launcher
version : "2.22.0"
release : 1
homepage : https://heroicgameslauncher.com
version : "2.22.1"
release : 2
homepage : https://heroicgameslauncher.com
upstreams :
- git|https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher.git : 0411046a34eb25b84ea79513af6289f75af2384a
summary : A games launcher for GOG, Amazon and Epic Games for Linux, Windows and macOS.
- git|https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher.git : dbb5f4a500e9b27e650a449e2290f23ed584bbd3
summary : A games launcher for GOG, Amazon and Epic Games for Linux, Windows and macOS.
description : |
Heroic is an Open Source Game Launcher for Linux, Windows and macOS. Right now it supports launching games from the Epic Games Store using Legendary, GOG Games using our custom implementation with gogdl and Amazon Games using Nile.
license :
- GPL-3.0-or-later
license : GPL-3.0-or-later
builddeps :
- binary(pnpm)
- pkgconfig(alsa)
Expand Down