Rename internal URL scheme from browser:// to nebula://

Replaces all occurrences of the 'browser://' internal URL scheme with 'nebula://' across main process, plugin manager, and renderer files. This change standardizes the internal page scheme to 'nebula://' for improved clarity and branding.
This commit is contained in:
2026-01-18 13:38:26 +13:00
parent 0eb9ec0c9a
commit 681b087f7a
5 changed files with 46 additions and 34 deletions
+1 -1
View File
@@ -68,7 +68,7 @@
window.parent.postMessage({ type:'navigate', url, opts }, '*');
}
}
document.getElementById('backBtn').onclick = () => history.length > 1 ? history.back() : sendNavigate('browser://home');
document.getElementById('backBtn').onclick = () => history.length > 1 ? history.back() : sendNavigate('nebula://home');
document.getElementById('tryHttps').onclick = () => {
if (!target) return; try {
const u = new URL(target.replace(/^http:/,'https:'));