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 <isanchez-hawkins@arize.com>
This commit is contained in:
committed by
GitHub
co-authored by
Isaac Sanchez
parent
707ac6f408
commit
da690b67a3
@@ -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 = () => {
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
},
|
||||
"publish": {
|
||||
"provider": "github",
|
||||
"owner": "btriapitsyn",
|
||||
"owner": "openchamber",
|
||||
"repo": "openchamber"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user