From 5249a14364361d463deb49651799cbf7bbc12a42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Tron=C3=AD=C4=8Dek?= Date: Fri, 23 May 2025 15:26:45 +0200 Subject: [PATCH] Change default endpoint to `app.gitpod.io` --- README.md | 4 ++-- src/constants.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7143c8a..60a2cfd 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Gitpod Browser extension -[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://gitpod.io/#https://github.com/gitpod-io/browser-extension) +[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://app.gitpod.io/#https://github.com/gitpod-io/browser-extension) -This is the browser extension for Gitpod. It supports Chrome (see [Chrome Web Store](https://chrome.google.com/webstore/detail/dodmmooeoklaejobgleioelladacbeki/)), Firefox (see [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/gitpod/)) and Edge (see [how to install Chrome extensions](https://support.microsoft.com/help/4538971/microsoft-edge-add-or-remove-extensions)), and adds a **Gitpod** button to the configured GitLab, GitHub and Bitbucket installations (defaults to `gitlab.com`, `github.com` and `bitbucket.org`) which immediately creates a Gitpod workspace for the current git context: +This is the browser extension for Gitpod. It supports Chrome (see [Chrome Web Store](https://chrome.google.com/webstore/detail/dodmmooeoklaejobgleioelladacbeki/)), Firefox (see [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/gitpod/)) and Edge (see [how to install Chrome extensions](https://support.microsoft.com/help/4538971/microsoft-edge-add-or-remove-extensions)), and adds a **Gitpod** button to the configured GitLab, GitHub, Bitbucket and Azure DevOps installations (defaults to `gitlab.com`, `github.com`, `bitbucket.org` and `dev.azure.com`) which immediately creates a Gitpod workspace for the current git context: ![Gitpodify](./docs/github-injected.png "Gitpodify") diff --git a/src/constants.ts b/src/constants.ts index 24e418c..b1f6c04 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,3 +1,3 @@ -export const DEFAULT_GITPOD_ENDPOINT = "https://gitpod.io"; +export const DEFAULT_GITPOD_ENDPOINT = "https://app.gitpod.io"; export const ALL_ORIGINS_WILDCARD = "*://*/*"; export const EVENT_CURRENT_URL_CHANGED = "current-url-changed";