Update version, remove redundant function/logging
This commit is contained in:
4
Makefile
4
Makefile
@@ -37,8 +37,8 @@ clean: rc clean-artifacts
|
||||
## EVEN RELEASES are AMO RELEASES
|
||||
## ODD RELEASES are SELFHOSTED RELEASES
|
||||
|
||||
MOZ_VERSION=2.5.8
|
||||
VERSION=2.5.9
|
||||
MOZ_VERSION=2.6.0
|
||||
VERSION=2.6.1
|
||||
|
||||
## INCREMENT THIS EVERY TIME YOU DO A RELEASE
|
||||
LAST_VERSION=$(shell grep '"version"' manifest.json | sed 's|"version"||g' | tr -d " :,'" | tr -d '"')
|
||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@@ -1,3 +1,9 @@
|
||||
i2psetproxy.js (2.6.1-1) UNRELEASED; urgency=low
|
||||
|
||||
* Fix bug where all local services were routed to the routerconsole container
|
||||
|
||||
-- idk <hankhill19580@gmail.com> Sun, 18 August 2024 21:20:04 -0400
|
||||
|
||||
i2psetproxy.js (2.5.9-1) UNRELEASED; urgency=low
|
||||
|
||||
* Minor refactoring, simplifications
|
||||
|
6
proxy.js
6
proxy.js
@@ -310,10 +310,6 @@ var handleContextProxyRequest = async function (requestDetails) {
|
||||
return {type: "direct"}
|
||||
};
|
||||
|
||||
function SetupSettings() {
|
||||
console.log("Initialising Settings");
|
||||
}
|
||||
|
||||
function setupProxy() {
|
||||
console.log("Setting up Firefox WebExtension proxy");
|
||||
browser.proxy.onRequest.addListener(handleContextProxyRequest, {
|
||||
@@ -341,7 +337,6 @@ function update() {
|
||||
function updateFromStorage() {
|
||||
console.log("updating settings from storage");
|
||||
chrome.storage.local.get(function () {
|
||||
SetupSettings();
|
||||
update();
|
||||
setupProxy();
|
||||
});
|
||||
@@ -349,7 +344,6 @@ function updateFromStorage() {
|
||||
|
||||
//updateFromStorage();
|
||||
browser.storage.onChanged.addListener(updateFromStorage);
|
||||
SetupSettings();
|
||||
setupProxy();
|
||||
|
||||
var gettingListenerInfo = browser.runtime.getPlatformInfo();
|
||||
|
Reference in New Issue
Block a user