From da690b67a346b3dbecaf0602c4be7edcd231b608 Mon Sep 17 00:00:00 2001 From: Isaac Sanchez-Hawkins <266845420+isanchez404@users.noreply.github.com> Date: Tue, 12 May 2026 03:59:40 -0400 Subject: [PATCH] fix(electron): point issue links to current repo (#1223) * fix(electron): point issue links to current repo * fix(electron): point updater links to org repo * fix(electron): align release publish owner --------- Co-authored-by: Isaac Sanchez --- packages/electron/main.mjs | 10 +++++----- packages/electron/package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/electron/main.mjs b/packages/electron/main.mjs index 3a09a0a9..48f525b1 100644 --- a/packages/electron/main.mjs +++ b/packages/electron/main.mjs @@ -111,10 +111,10 @@ const MINI_CHAT_MIN_WINDOW_HEIGHT = 480; const MAX_CAPTURE_PAGE_RECT_AREA = 4_000_000; const LOCAL_HOST_ID = 'local'; const ENV_OVERRIDE_HOST_ID = '__env'; -const CHANGELOG_URL = 'https://raw.githubusercontent.com/btriapitsyn/openchamber/main/CHANGELOG.md'; -const UPDATE_METADATA_URL = 'https://github.com/btriapitsyn/openchamber/releases/latest/download/latest.json'; -const GITHUB_BUG_REPORT_URL = 'https://github.com/btriapitsyn/openchamber/issues/new?template=bug_report.yml'; -const GITHUB_FEATURE_REQUEST_URL = 'https://github.com/btriapitsyn/openchamber/issues/new?template=feature_request.yml'; +const CHANGELOG_URL = 'https://raw.githubusercontent.com/openchamber/openchamber/main/CHANGELOG.md'; +const UPDATE_METADATA_URL = 'https://github.com/openchamber/openchamber/releases/latest/download/latest.json'; +const GITHUB_BUG_REPORT_URL = 'https://github.com/openchamber/openchamber/issues/new?template=bug_report.yml'; +const GITHUB_FEATURE_REQUEST_URL = 'https://github.com/openchamber/openchamber/issues/new?template=feature_request.yml'; const DISCORD_INVITE_URL = 'https://discord.gg/ZYRSdnwwKA'; const INSTALLED_APPS_CACHE_TTL_SECS = 60 * 60 * 24; const INSTALLED_APPS_CACHE_FILE = 'discovered-apps.json'; @@ -1558,7 +1558,7 @@ const compareSemver = (left, right) => { }; const parseGithubRepo = () => { - return { owner: 'btriapitsyn', repo: 'openchamber' }; + return { owner: 'openchamber', repo: 'openchamber' }; }; const setupAutoUpdater = () => { diff --git a/packages/electron/package.json b/packages/electron/package.json index 130e4fea..d6f8f597 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -91,7 +91,7 @@ }, "publish": { "provider": "github", - "owner": "btriapitsyn", + "owner": "openchamber", "repo": "openchamber" } }