Update version, remove redundant function/logging

This commit is contained in:
eyedeekay
2024-08-18 21:23:47 -04:00
parent bfe4be952e
commit 8057002c3e
3 changed files with 8 additions and 8 deletions

View File

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

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

View File

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