Skip to content

Commit 0e808ba

Browse files
committed
Emulsion-no-install_x86_64.AppImage
1 parent e9e2536 commit 0e808ba

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

build/after-build.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function processAppImage() {
5959
listFiles('./squashfs-root');
6060

6161
// Modify atexit function in AppRun
62-
console.log('Modifying AppRun script...');
62+
// console.log('Modifying AppRun script...');
6363
// modifyAppRunAtexit('./squashfs-root/AppRun');
6464

6565
// Remove locale files
@@ -106,6 +106,13 @@ async function processAppImage() {
106106

107107
console.log('AppImage processing complete');
108108

109+
// Rename the untouched AppImage file
110+
const renamedAppImageName = 'Emulsion-no-install_x86_64.AppImage';
111+
const renamedAppImagePath = path.join(distDir, renamedAppImageName);
112+
113+
console.log(`Renaming ${appImageName} to ${renamedAppImageName}`);
114+
fs.renameSync(appImagePath, renamedAppImagePath);
115+
109116
} catch (error) {
110117
console.error('Error processing AppImage:', error.message);
111118
throw error;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emulsion",
3-
"version": "0.10.29",
3+
"version": "0.10.30",
44
"summary": "Better gaming throught chemistry",
55
"description": "Display your games collection into responsive galleries, manage game metadata, cover art and emulator configuration. Launch your games in style.",
66
"homepage": "https://yphil.gitlab.io/emulsion",

0 commit comments

Comments
 (0)