Compare commits
6 Commits
fix-proxy-
...
tab_text
Author | SHA1 | Date | |
---|---|---|---|
![]() |
26b637f201 | ||
![]() |
c1b55a4feb | ||
![]() |
80c66ba2f7 | ||
![]() |
6415ee2996 | ||
![]() |
83b5dcc4b4 | ||
![]() |
26e0228687 |
6
Makefile
6
Makefile
@@ -37,11 +37,11 @@ clean: rc clean-artifacts
|
||||
## EVEN RELEASES are AMO RELEASES
|
||||
## ODD RELEASES are SELFHOSTED RELEASES
|
||||
|
||||
MOZ_VERSION=0.126
|
||||
VERSION=0.125
|
||||
MOZ_VERSION=0.128
|
||||
VERSION=0.127
|
||||
|
||||
## INCREMENT THIS EVERY TIME YOU DO A RELEASE
|
||||
LAST_VERSION=0.123
|
||||
LAST_VERSION=0.125
|
||||
|
||||
YELLOW=F7E59A
|
||||
ORANGE=FFC56D
|
||||
|
@@ -20,7 +20,7 @@
|
||||
"description": "Description of the extension."
|
||||
},
|
||||
"extensionVersion": {
|
||||
"message": "0.108",
|
||||
"message": "1.28",
|
||||
"description": "Version of the extension."
|
||||
},
|
||||
"proxyFailedStatus": {
|
||||
|
@@ -20,7 +20,7 @@
|
||||
"description": "Descripción de la extensión."
|
||||
},
|
||||
"extensionVersion": {
|
||||
"message": "0.108",
|
||||
"message": "1.28",
|
||||
"description": "Versión de la extensión."
|
||||
},
|
||||
"proxyFailedStatus": {
|
||||
|
@@ -190,6 +190,7 @@ let btheme = {
|
||||
colors: {
|
||||
frame: "#363A68",
|
||||
toolbar: "#363A68",
|
||||
tab_text: "#ECF3FF",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -197,6 +198,7 @@ let dtheme = {
|
||||
colors: {
|
||||
frame: "#4456B7",
|
||||
toolbar: "#4456B7",
|
||||
tab_text: "#ECF3FF",
|
||||
},
|
||||
};
|
||||
|
||||
|
3
host.js
3
host.js
@@ -95,7 +95,8 @@ function i2pHostName(url) {
|
||||
|
||||
function i2pHost(url) {
|
||||
let hostname = i2pHostName(url);
|
||||
return hostname.endsWith(".i2p");
|
||||
let postname = hostname.split(":")[0]
|
||||
return postname.endsWith(".i2p");
|
||||
}
|
||||
|
||||
function routerHost(url) {
|
||||
|
3
info.js
3
info.js
@@ -126,6 +126,9 @@ document.addEventListener("click", (clickEvent) => {
|
||||
} else if (clickEvent.target.id === "window-visit-torrent") {
|
||||
console.log("attempting to create torrent tab");
|
||||
goTorrent();
|
||||
} else if (clickEvent.target.id === "torrentui-opener") {
|
||||
console.log("attempting to create torrent tab");
|
||||
goSnark();
|
||||
} else if (clickEvent.target.id === "window-visit-help") {
|
||||
console.log("attempting to create torrent tab");
|
||||
goHelp();
|
||||
|
@@ -2,7 +2,8 @@
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "i2ppb@eyedeekay.github.io",
|
||||
"strict_min_version": "91.1.0"
|
||||
"strict_min_version": "91.1.0",
|
||||
"update_url": "https://thiswillneedtobeaneephttpdbase32address.b32.i2p/updates.json"
|
||||
}
|
||||
},
|
||||
"permissions": [
|
||||
|
@@ -446,10 +446,11 @@ function i2pHostName(url) {
|
||||
|
||||
function i2pHost(url) {
|
||||
let hostname = i2pHostName(url);
|
||||
if (hostname.endsWith(".i2p")) {
|
||||
console.log("(hostname) i2p", hostname);
|
||||
let postname = hostname.split(":")[0];
|
||||
if (postname.endsWith(".i2p")) {
|
||||
console.log("(hostname) i2p", postname);
|
||||
}
|
||||
return hostname.endsWith(".i2p");
|
||||
return postname.endsWith(".i2p");
|
||||
}
|
||||
|
||||
function onContextGotLog(contexts) {
|
||||
|
@@ -121,7 +121,8 @@
|
||||
<div id="torrents-pane">
|
||||
<header>
|
||||
<h1>Torrent Controls</h1>
|
||||
<a class="webui-opener" href="#" target="_blank"><img alt="Open Web UI" src="images/i2plogo.png"></a> <!--<a class="config-opener" href="#">
|
||||
<img alt="Open WebUI" src="icons/i2plogo.png">
|
||||
<a class="webui-opener" id="torrentui-opener" href="#">Open WebUI</a> <!--<a class="config-opener" href="#">
|
||||
<img alt="Settings" src="images/gear.svg"></a>
|
||||
<a class="info-opener" href="https://github.com/myfreeweb/transmitter" target="_blank">
|
||||
<img alt="Extension Info" src="images/info.svg"></a>-->
|
||||
|
Reference in New Issue
Block a user