Update URLs.

This commit is contained in:
Kasen IO 2020-04-19 23:51:53 -04:00
parent 3c64d4da2a
commit efa92b9fbf
3 changed files with 9 additions and 9 deletions

View file

@ -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

View file

@ -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;
}
}

View file

@ -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);