diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 48116a3..ab62f5a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -15,7 +15,7 @@ Explain how to test the feature (or fix) for someone who doesn't know anything a At very least add the specific URL from which to test the build and add to it any param you think it would be needed. --> -1. Go to: https://play.decentraland.zone/index.html?renderer=urn:decentraland:off-chain:renderer-artifacts:{branch_name}&{desired_url_params} +1. Go to: https://decentraland.zone/play/index.html?renderer=urn:decentraland:off-chain:renderer-artifacts:{branch_name}&{desired_url_params} 2. ... ## Our Code Review Standards diff --git a/README.md b/README.md index 8e2dc88..1fb4dce 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ We can add the following parameters to the custom protocol to change the behavio If you add another parameter, it will be forwarded to the final URL. For example, if we use `position=10,10&realm=thor` it will be similar as opening: -https://play.decentraland.org/?position=10,10&realm=thor +https://decentraland.org/play/?position=10,10&realm=thor Example: `dcl://DESKTOP-BRANCH=main&position=10,10&realm=thor` diff --git a/electron/main.ts b/electron/main.ts index d2c3969..af33ec8 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -217,7 +217,7 @@ app function initializeCrashReport() { var path = getAppBasePath() - if (!fs.existsSync(path)) fs.mkdir(path, () => {}) + if (!fs.existsSync(path)) fs.mkdir(path, () => { }) app.setPath('crashDumps', path) diff --git a/electron/updater.ts b/electron/updater.ts index a9c612b..bdca7e4 100644 --- a/electron/updater.ts +++ b/electron/updater.ts @@ -33,7 +33,7 @@ const getRemoteVersion = async (launcherPaths: LauncherPaths) => { return main.config.customDesktopVersion } else { // Rollout - const response = await axios.get('https://play.decentraland.org', { + const response = await axios.get('https://decentraland.org/play', { headers: { 'x-debug-rollouts': true }