Skip to content

Commit

Permalink
Update version, remove redundant function/logging
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Aug 19, 2024
1 parent bfe4be9 commit 8057002
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 '"')
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 0 additions & 6 deletions proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, {
Expand Down Expand Up @@ -341,15 +337,13 @@ function update() {
function updateFromStorage() {
console.log("updating settings from storage");
chrome.storage.local.get(function () {
SetupSettings();
update();
setupProxy();
});
}

//updateFromStorage();
browser.storage.onChanged.addListener(updateFromStorage);
SetupSettings();
setupProxy();

var gettingListenerInfo = browser.runtime.getPlatformInfo();
Expand Down

0 comments on commit 8057002

Please sign in to comment.