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" } }