diff --git a/Makefile b/Makefile index 92d0058..dd1fae4 100644 --- a/Makefile +++ b/Makefile @@ -37,11 +37,11 @@ clean: rc clean-artifacts ## EVEN RELEASES are AMO RELEASES ## ODD RELEASES are SELFHOSTED RELEASES -MOZ_VERSION=0.82 -VERSION=0.81 +MOZ_VERSION=0.84 +VERSION=0.83 ## INCREMENT THIS EVERY TIME YOU DO A RELEASE -LAST_VERSION=0.79 +LAST_VERSION=0.81 YELLOW=F7E59A ORANGE=FFC56D diff --git a/debian/changelog b/debian/changelog index f65c8af..684714b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +i2psetproxy.js (0.83-1) UNRELEASED; urgency=low + + * Add a tab for I2P-Native Dispatch + + -- idk Sat, 10 NOV 2020 22:00:01 -0400 + i2psetproxy.js (0.81-1) UNRELEASED; urgency=low * X-I2P-TorrentLocation header diff --git a/proxy.js b/proxy.js index cc6fc30..d72ec63 100644 --- a/proxy.js +++ b/proxy.js @@ -1,5 +1,6 @@ var titlepref = chrome.i18n.getMessage('titlePreface'); var webpref = chrome.i18n.getMessage('webPreface'); +var ircpref = chrome.i18n.getMessage('ircPreface'); var routerpref = chrome.i18n.getMessage('routerPreface'); var routerprefpriv = chrome.i18n.getMessage('routerPrefacePrivate'); @@ -48,6 +49,9 @@ var handleContextProxyRequest = async function(requestDetails) { host: getHost(), port: getPort(), }; + if (requestDetails.url.includes(':7669')) { + proxy = null; + } } else if (context.name == routerpref) { if (routerHost(requestDetails.url)) { proxy = null; @@ -69,9 +73,6 @@ var handleContextProxyRequest = async function(requestDetails) { }; } } - console.log('(proxy)', context.name); - console.log('Using', proxy.type); - console.log('proxy ', proxy.host + ':' + proxy.port); return proxy; } }