mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 22:43:13 +02:00
Merge pull request #8 from AleziaKurdis/overte_more_app
Migrate the more app URL to Overte
This commit is contained in:
commit
a4c341c293
2 changed files with 6 additions and 4 deletions
|
@ -5,6 +5,7 @@
|
|||
//
|
||||
// Created by Keb Helion, February 2020.
|
||||
// Copyright 2020 Vircadia contributors.
|
||||
// Copyright 2022 Overte e.V.
|
||||
//
|
||||
// This script adds a "More Apps" selector to Overte to allow the user to add optional functionalities to the tablet.
|
||||
// This application has been designed to work directly from the Github repository.
|
||||
|
@ -56,7 +57,7 @@
|
|||
var runningScriptJson;
|
||||
for (var j = 0; j < currentlyRunningScripts.length; j++) {
|
||||
runningScriptJson = currentlyRunningScripts[j].url;
|
||||
if (runningScriptJson.indexOf("https://cdn.vircadia.com/community-apps/applications") !== -1) {
|
||||
if (runningScriptJson.indexOf("https://more.overte.org/applications") !== -1) {
|
||||
newMessage += "_" + runningScriptJson;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
//
|
||||
// Created by Keb Helion, February 2020.
|
||||
// Copyright 2020 Vircadia contributors.
|
||||
// Copyright 2022 Overte e.V.
|
||||
//
|
||||
// App maintained in: https://github.com/overte-org/community-apps
|
||||
// App copied to: https://github.com/overte-org/overte
|
||||
|
@ -54,7 +55,7 @@
|
|||
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
||||
var developmentMode = window.location.toString().split("?")[1];
|
||||
var rootPath;
|
||||
var metadataScriptSrc = "https://cdn.vircadia.com/community-apps/applications/metadata.js";
|
||||
var metadataScriptSrc = "https://more.overte.org/applications/metadata.js";
|
||||
|
||||
if (developmentMode === "dev") { // Development mode loads locally, if not, load from repo.
|
||||
console.info("Setting applications to local.")
|
||||
|
@ -64,7 +65,7 @@
|
|||
} else {
|
||||
console.info("Setting applications to remote URL.")
|
||||
console.info("Loading metadata remotely.");
|
||||
rootPath = "https://cdn.vircadia.com/community-apps/applications/";
|
||||
rootPath = "https://more.overte.org/applications/";
|
||||
}
|
||||
|
||||
//Search
|
||||
|
@ -168,7 +169,7 @@
|
|||
</div>
|
||||
<hr>
|
||||
<p class="mainDesc">Want to contribute and add your own app?<br>
|
||||
Read the <a href="https://cdn.vircadia.com/community-apps/web/index.html">guide</a>!</p>
|
||||
Read the <a href="https://overte-org.github.io/community-apps/web/index.html">guide</a>!</p>
|
||||
<script>
|
||||
function monitorEnter(e) {
|
||||
var code = (e.keyCode ? e.keyCode : e.which);
|
||||
|
|
Loading…
Reference in a new issue