Skip to content

Commit

Permalink
Release 2.0.106
Browse files Browse the repository at this point in the history
  • Loading branch information
YeonV committed Dec 26, 2024
1 parent 266d9ff commit a0704b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Trigger Build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: LedFx BuildPipeline New
workflow: LedFx BuildPipeline UV
# workflow: LedFx BuildPipeline
repo: YeonV/LedFx-Builds
token: ${{ secrets.FRONTEND_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ledfx",
"version": "2.0.105-b21",
"version": "2.0.106",
"description": "LedFx v2 - BladeMOD!",
"author": "YeonV aka Blade",
"private": true,
Expand Down Expand Up @@ -286,4 +286,4 @@
]
}
}
}
}
8 changes: 4 additions & 4 deletions src/app/electron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import {
} from 'electron'
import { EventEmitter } from 'events'
import { fileURLToPath } from 'node:url'
import isCC from './app/utils/isCC.mjs'
import createWindow from './app/utils/win.mjs'
import { handleProtocol, setupProtocol } from './app/protocol.mjs'
import { closeAllSubs, startInstance } from './app/instances.mjs'
import { createTray } from './app/utils/tray.mjs'
import { handlers } from './app/handlers.mjs'
import isCC from './app/utils/isCC.mjs'
import createWindow from './app/utils/win.mjs'
import getReduxPath from './app/utils/getReduxPath.mjs'
import createLedfxFolder from './app/utils/createLedFxFolder.mjs'

Expand All @@ -26,14 +26,14 @@ EventEmitter.defaultMaxListeners = 15

const subpy: any = null
const subprocesses: Record<string, any> = {}
let wind: BrowserWindow | null = null
const win: BrowserWindow | null = null
let wind: BrowserWindow | null = null

setupProtocol()
const gotTheLock = app.requestSingleInstanceLock()

const reduxDevtoolsPath = getReduxPath()
createLedfxFolder()
const reduxDevtoolsPath = getReduxPath()

const ready = () =>
app.whenReady().then(async () => {
Expand Down

0 comments on commit a0704b4

Please sign in to comment.