From f9e4a109333baf8e2db2719fcda6a3ea5c5767a3 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 10 Dec 2021 08:05:45 -0500 Subject: [PATCH] Adjust compile/selfie format verison --- src/js/background.js | 4 ++-- src/js/static-net-filtering.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/js/background.js b/src/js/background.js index c3f80a1b3..6429382b8 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -175,8 +175,8 @@ const µBlock = { // jshint ignore:line // Read-only systemSettings: { - compiledMagic: 42, // Increase when compiled format changes - selfieMagic: 42, // Increase when selfie format changes + compiledMagic: 43, // Increase when compiled format changes + selfieMagic: 43, // Increase when selfie format changes }, // https://github.com/uBlockOrigin/uBlock-issues/issues/759#issuecomment-546654501 diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 48c7bab71..aac7c1ddc 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -3322,8 +3322,8 @@ FilterCompiler.prototype.FILTER_UNSUPPORTED = 2; /******************************************************************************/ const FilterContainer = function() { - this.compilerVersion = '4'; - this.selfieVersion = '4'; + this.compilerVersion = '5'; + this.selfieVersion = '5'; this.MAX_TOKEN_LENGTH = MAX_TOKEN_LENGTH; this.optimizeTaskId = undefined;