Skip to content

Commit

Permalink
missing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinerius committed Jan 4, 2024
1 parent 55cf3da commit 1e4b81f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion electron/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 1e4b81f

Please sign in to comment.