mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 21:22:00 +02:00
Update URLs.
This commit is contained in:
parent
3c64d4da2a
commit
efa92b9fbf
3 changed files with 9 additions and 9 deletions
|
@ -2,10 +2,10 @@
|
|||
Applications repository for Vircadia, pulled directly from GitHub. You can add or edit your app in the "More" application by opening a pull request to this repo.
|
||||
|
||||
Direct link to run the "More..." application in the interface:
|
||||
https://kasenvr.github.io/community-apps/more/app-more.js
|
||||
https://cdn.vircadia.com/community-apps/more/app-more.js
|
||||
|
||||
See all the details about adding your app here:
|
||||
https://kasenvr.github.io/community-apps/web/index.html
|
||||
https://cdn.vircadia.com/community-apps/web/index.html
|
||||
|
||||
### Contributors
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
var runningScriptJson;
|
||||
for (var j = 0; j < currentlyRunningScripts.length; j++) {
|
||||
runningScriptJson = currentlyRunningScripts[j].url;
|
||||
if (runningScriptJson.indexOf("https://kasenvr.github.io/community-apps/applications") !== -1) {
|
||||
if (runningScriptJson.indexOf("https://cdn.vircadia.com/community-apps/applications") !== -1) {
|
||||
newMessage += "_" + runningScriptJson;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<script id="metadataScriptTag" type="text/javascript" src="https://kasenvr.github.io/community-apps/applications/metadata.js"></script>
|
||||
<script id="metadataScriptTag" type="text/javascript" src="https://cdn.vircadia.com/community-apps/applications/metadata.js"></script>
|
||||
<script>
|
||||
//Defaults
|
||||
var DEFAULT_PER_PAGE = 3;
|
||||
|
@ -26,16 +26,16 @@
|
|||
var rootPath;
|
||||
var metadataScript = document.getElementById("metadataScriptTag");
|
||||
|
||||
if (currentPath.includes("kasenvr.github.io") || !currentPath.includes("file:/")) { // Loading app from repo or filesystem.
|
||||
if (currentPath.includes("cdn.vircadia.com") || !currentPath.includes("file:/")) { // Loading app from repo or filesystem.
|
||||
rootPath = currentPath.replace("more/more.html", "applications/");
|
||||
if (metadataScript.src !== "../applications/metadata.js") {
|
||||
metadataScript.src = "../applications/metadata.js";
|
||||
console.info("Loading apps and metadata locally.");
|
||||
}
|
||||
} else {
|
||||
rootPath = "https://kasenvr.github.io/community-apps/applications/";
|
||||
if (metadataScript.src !== "https://kasenvr.github.io/community-apps/applications/metadata.js") {
|
||||
metadataScript.src = "https://kasenvr.github.io/community-apps/applications/metadata.js";
|
||||
rootPath = "https://cdn.vircadia.com/community-apps/applications/";
|
||||
if (metadataScript.src !== "https://cdn.vircadia.com/community-apps/applications/metadata.js") {
|
||||
metadataScript.src = "https://cdn.vircadia.com/community-apps/applications/metadata.js";
|
||||
console.info("Loading apps and metadata remotely.");
|
||||
}
|
||||
}
|
||||
|
@ -172,7 +172,7 @@
|
|||
</div>
|
||||
<hr>
|
||||
<p class="mainDesc">Want to contribute and add your own app?<br>
|
||||
Read the <a href="https://kasenvr.github.io/community-apps/web/index.html">guide</a>!</p>
|
||||
Read the <a href="https://cdn.vircadia.com/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