Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
- name: Build Linux ${{ matrix.arch }}
run: |
if [ "${{ matrix.arch }}" = "x64" ]; then
pnpm run build:linux --x64
pnpm run build:linux --x64 --publish=never
else
pnpm run build:linux --${{ matrix.arch }}
pnpm run build:linux --${{ matrix.arch }} --publish=never
fi

- name: Upload Linux artifacts
Expand Down Expand Up @@ -89,9 +89,9 @@ jobs:
shell: bash
run: |
if [ "${{ matrix.arch }}" = "x64" ]; then
pnpm run build:win --x64
pnpm run build:win --x64 --publish=never
else
pnpm run build:win --${{ matrix.arch }}
pnpm run build:win --${{ matrix.arch }} --publish=never
fi

- name: Upload Windows artifacts
Expand Down Expand Up @@ -133,9 +133,9 @@ jobs:
- name: Build macOS ${{ matrix.arch }}
run: |
if [ "${{ matrix.arch }}" = "x64" ]; then
pnpm run build:mac --x64
pnpm run build:mac --x64 --publish=never
else
pnpm run build:mac --${{ matrix.arch }}
pnpm run build:mac --${{ matrix.arch }} --publish=never
fi

- name: Upload macOS artifacts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"publish": {
"provider": "github",
"owner": "p-stream",
"owner": "xp-technologies-dev",
"repo": "p-stream-desktop"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/main/auto-updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const PRELOAD = path.join(__dirname, '..', 'preload');
const UPDATER = path.join(__dirname, '..', 'updater');

// GitHub repository configuration
const GITHUB_OWNER = 'p-stream';
const GITHUB_OWNER = 'xp-technologies-dev';
const GITHUB_REPO = 'p-stream-desktop';

// Updater window reference
Expand Down
6 changes: 3 additions & 3 deletions src/main/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ if (app.isPackaged) {
// But we can explicitly set it to ensure it works
autoUpdater.setFeedURL({
provider: 'github',
owner: 'p-stream',
owner: 'xp-technologies-dev',
repo: 'p-stream-desktop',
});
console.log('Auto-updater configured for GitHub releases');
Expand Down Expand Up @@ -1116,7 +1116,7 @@ autoUpdater.on('update-available', (info) => {
await checkAndAutoUpdate();
} else if (result.response === 1) {
// Open Releases Page button
shell.openExternal('https://github.com/p-stream/p-stream-desktop/releases');
shell.openExternal('https://github.com/xp-technologies-dev/p-stream-desktop/releases');
}
})
.catch(console.error);
Expand Down Expand Up @@ -1416,7 +1416,7 @@ app.whenReady().then(async () => {
// IPC handler for opening releases page in external browser
ipcMain.handle('openReleasesPage', () => {
try {
shell.openExternal('https://github.com/p-stream/p-stream-desktop/releases');
shell.openExternal('https://github.com/xp-technologies-dev/p-stream-desktop/releases');
return { success: true };
} catch (error) {
console.error('Failed to open releases page:', error);
Expand Down