1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Adjust compile/selfie format verison

This commit is contained in:
Raymond Hill 2021-12-10 08:05:45 -05:00
parent 54074af029
commit f9e4a10933
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 4 additions and 4 deletions

View File

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

View File

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