Replace "Explore" by "Places" application.

This adds "Places" application as a default application.
This removes the "Explore" application from default application. 

However, the "Explore" application is still available in "Edit > Running Scripts..." 
under "communityScripts" directory, for people that would like to create "beacons". 

Note that the beacon's placenames are listed in the "Places" application, 
but the feature to create new ones has been left behind because that solution had serious flaws.
This commit is contained in:
Alezia Kurdis 2022-01-22 22:54:52 -05:00 committed by GitHub
parent 7db3017490
commit 53d1824d3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
//
// Copyright 2014 High Fidelity, Inc.
// Copyright 2020 Vircadia contributors.
// Copyright 2022 Overte contributors.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
@ -38,14 +39,14 @@ var DEFAULT_SCRIPTS_COMBINED = [
"system/checkForUpdates.js",
"system/onEscape.js",
"system/onFirstRun.js",
"system/appreciate/appreciate_app.js"
"system/appreciate/appreciate_app.js",
"system/places/places.js"
];
var DEFAULT_SCRIPTS_SEPARATE = [
"system/controllers/controllerScripts.js",
"communityScripts/notificationCore/notificationCore.js",
"simplifiedUI/ui/simplifiedNametag/simplifiedNametag.js",
{"stable": "system/more/app-more.js", "beta": "https://cdn.vircadia.com/community-apps/more/app-more.js"},
{"stable": "communityScripts/explore/explore.js", "beta": "https://metaverse.vircadia.com/interim/d-goto/app/explore.js"},
{"stable": "communityScripts/chat/FloofChat.js", "beta": "https://content.fluffy.ws/scripts/chat/FloofChat.js"}
//"system/chat.js"
];