Compare commits
2 Commits
6c46a31fe9
...
v1.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 7d1e19d881 | |||
| 6c6da941d5 |
@@ -41,6 +41,12 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
ELECTRON_BUILDER_ALLOW_EMPTY_REPOSITORY: true
|
ELECTRON_BUILDER_ALLOW_EMPTY_REPOSITORY: true
|
||||||
|
|
||||||
|
- name: Extract Version
|
||||||
|
id: get_version
|
||||||
|
run: |
|
||||||
|
VERSION=$(node -p "require('./frontend/package.json').version")
|
||||||
|
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Upload Release Artifacts
|
- name: Upload Release Artifacts
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main'
|
if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main'
|
||||||
@@ -49,8 +55,8 @@ jobs:
|
|||||||
frontend/release/*.AppImage
|
frontend/release/*.AppImage
|
||||||
frontend/release/*.deb
|
frontend/release/*.deb
|
||||||
frontend/release/*.exe
|
frontend/release/*.exe
|
||||||
tag_name: v${{ github.run_number }}
|
tag_name: v${{ steps.get_version.outputs.VERSION }}
|
||||||
name: Release v${{ github.run_number }}
|
name: Release v${{ steps.get_version.outputs.VERSION }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -508,7 +508,7 @@ electron_1.ipcMain.handle('switch-account', async (event, loginName) => await ha
|
|||||||
electron_1.ipcMain.handle('open-external', (event, url) => electron_1.shell.openExternal(url));
|
electron_1.ipcMain.handle('open-external', (event, url) => electron_1.shell.openExternal(url));
|
||||||
electron_1.ipcMain.handle('open-steam-login', async (event, expectedSteamId) => {
|
electron_1.ipcMain.handle('open-steam-login', async (event, expectedSteamId) => {
|
||||||
const loginSession = electron_1.session.fromPartition('persist:steam-login');
|
const loginSession = electron_1.session.fromPartition('persist:steam-login');
|
||||||
await loginSession.clearStorageData({ storages: ['cookies', 'localstorage', 'indexdb'] });
|
// Removed: automatic clearStorageData to allow cookie persistence
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
const loginWindow = new electron_1.BrowserWindow({
|
const loginWindow = new electron_1.BrowserWindow({
|
||||||
width: 800, height: 700, parent: mainWindow || undefined, modal: true, title: 'Login to Steam',
|
width: 800, height: 700, parent: mainWindow || undefined, modal: true, title: 'Login to Steam',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ultimate-ban-tracker-desktop",
|
"name": "ultimate-ban-tracker-desktop",
|
||||||
"description": "Professional Steam Account Manager & Ban Tracker",
|
"description": "Professional Steam Account Manager & Ban Tracker",
|
||||||
"version": "1.0.0",
|
"version": "1.1.0",
|
||||||
"author": "Nils Pukropp <nils@narl.io>",
|
"author": "Nils Pukropp <nils@narl.io>",
|
||||||
"homepage": "https://narl.io",
|
"homepage": "https://narl.io",
|
||||||
"license": "SEE LICENSE IN LICENSE",
|
"license": "SEE LICENSE IN LICENSE",
|
||||||
|
|||||||
Reference in New Issue
Block a user