Skip to content

Commit 4ec5bf5

Browse files
committed
New release: Fix bug not connect room - haxball
1 parent b51358b commit 4ec5bf5

5 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build app
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31-
run: npm run build:win && npm run build:mac && npm run build:linux
31+
run: npm run build:win && npm run build:linux
3232

3333
- name: Upload Release Artifacts
3434
uses: softprops/action-gh-release@v2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "futhero-launcher",
3-
"version": "1.4.8",
3+
"version": "1.4.9",
44
"description": "A secure bonk.io and haxball launcher with frontend manipulation capabilities.",
55
"main": "dist/main.js",
66
"scripts": {

src/main.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ app.commandLine.appendSwitch('no-sandbox');
1212
require("dotenv").config();
1313

1414
const appVersion = app.getVersion();
15-
const isBeta = appVersion.includes("-beta");
1615

1716
console.log(`[Launcher] Versão do app: ${appVersion}`);
18-
console.log(`[Launcher] É beta? ${isBeta}`);
1917

2018
autoUpdater.logger = console;
2119
autoUpdater.autoDownload = false;
@@ -166,7 +164,7 @@ function createWindow(gameType?: GameType) {
166164
mainWindow.on("page-title-updated", (event) => {
167165
event.preventDefault();
168166
if (mainWindow && !mainWindow.isDestroyed()) {
169-
const title = isBeta ? "Futhero Launcher BETA" : "Futhero Launcher";
167+
const title = "Futhero Launcher";
170168
mainWindow.setTitle(title);
171169
}
172170
});

src/preload.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { contextBridge, ipcRenderer } from "electron";
22

33
const originalSend = ipcRenderer.send.bind(ipcRenderer);
4+
45
(ipcRenderer as any).send = function (channel: string, ...args: any[]) {
56
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
67
console.log('[IPC INTERCEPTOR] Canal:', channel);

0 commit comments

Comments
 (0)