6 Commits

Author SHA1 Message Date
idk
26b637f201 fix tab text color 2021-12-28 20:22:33 -05:00
idk
c1b55a4feb Merge branch 'innet-updates' into 'master'
Auto-proxy on sites that specify a port

See merge request idk/I2P-in-Private-Browsing-Mode-Firefox!26
2021-12-29 01:15:38 +00:00
idk
80c66ba2f7 Auto-proxy on sites that specify a port 2021-12-28 20:13:12 -05:00
idk
6415ee2996 Merge pull request #116 from eyedeekay/fix-torrent-webui-button
fix Open WebUI button on torrent menu
2021-12-03 04:15:58 +00:00
idk
83b5dcc4b4 fix Open WebUI button on torrent menu 2021-12-02 20:45:42 -05:00
idk
26e0228687 Merge pull request #115 from eyedeekay/fix-proxy-check-reversal
address erroneous text issue #113
2021-12-03 01:23:51 +00:00
9 changed files with 20 additions and 11 deletions

View File

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

View File

@@ -20,7 +20,7 @@
"description": "Description of the extension."
},
"extensionVersion": {
"message": "0.108",
"message": "1.28",
"description": "Version of the extension."
},
"proxyFailedStatus": {

View File

@@ -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": {

View File

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

View File

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

View File

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

View File

@@ -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": [

View File

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

View File

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