From 8cebd39e4b87c4d1ad9829129423ad082b763987 Mon Sep 17 00:00:00 2001 From: Ethan O'Brien Date: Wed, 14 Sep 2022 13:58:31 -0500 Subject: [PATCH] Update URLs --- data/emu-main.js | 2 +- data/loader.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/emu-main.js b/data/emu-main.js index 170c2cf..d57b181 100644 --- a/data/emu-main.js +++ b/data/emu-main.js @@ -5528,7 +5528,7 @@ window.EJS_main = function(_0xa88a13, _0x17edbf, _0x2c1832) { let _0x14264d = _0x428003('li', {}); _0x14264d.appendChild(_0x428003('a', { 'target': '_blank', - 'href': 'https://github.com/ethanaobrien/emulatorjs' // Modifying this is against the terms of service + 'href': 'https://github.com/EmulatorJS/EmulatorJS' // Modifying this is against the terms of service }, 'EmulatorJS v' .concat(this.version))); _0x2a1dda.appendChild(_0x14264d); _0x2a1dda.setAttribute('menu', ''); diff --git a/data/loader.js b/data/loader.js index 66e2959..2c8c7fa 100644 --- a/data/loader.js +++ b/data/loader.js @@ -2,12 +2,12 @@ let VERSION = 23.9; if ((window.location && ['localhost', '127.0.0.1'].includes(location.hostname)) || 'undefined' != typeof EJS_DEBUG_XX && true === EJS_DEBUG_XX) { - fetch('https://raw.githack.com/ethanaobrien/emulatorjs/main/data/version.json').then(response => { + fetch('https://raw.githack.com/EmulatorJS/EmulatorJS/main/data/version.json').then(response => { if (response.ok) { response.text().then(body => { let version = JSON.parse(body); if (VERSION < version.current_version) { - console.log('Using emulatorjs version ' + VERSION + ' but the newest version is ' + version.current_version + '\nopen https://github.com/ethanaobrien/emulatorjs to update'); + console.log('Using emulatorjs version ' + VERSION + ' but the newest version is ' + version.current_version + '\nopen https://github.com/EmulatorJS/EmulatorJS to update'); } }) }