File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change @@ -12,10 +12,8 @@ app.commandLine.appendSwitch('no-sandbox');
1212require ( "dotenv" ) . config ( ) ;
1313
1414const appVersion = app . getVersion ( ) ;
15- const isBeta = appVersion . includes ( "-beta" ) ;
1615
1716console . log ( `[Launcher] Versão do app: ${ appVersion } ` ) ;
18- console . log ( `[Launcher] É beta? ${ isBeta } ` ) ;
1917
2018autoUpdater . logger = console ;
2119autoUpdater . 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 } ) ;
Original file line number Diff line number Diff line change 11import { contextBridge , ipcRenderer } from "electron" ;
22
33const 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 ) ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments