Skip to content

Commit

Permalink
Release 10.2.11 (#1478)
Browse files Browse the repository at this point in the history
* Reorder condition for fix tree shaking by the platform
  • Loading branch information
smalluban authored Feb 16, 2024
1 parent c14758c commit 2f2e4fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion extension-manifest-v3/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ghostery/extension-manifest-v3",
"private": true,
"version": "10.2.10",
"version": "10.2.11",
"type": "module",
"scripts": {
"postinstall": "npm run download-engines && npm run download-whotracksme-bloomfilter",
Expand Down
3 changes: 2 additions & 1 deletion extension-manifest-v3/src/background/stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ observe('terms', async (terms) => {
async function refreshIcon(tabId) {
const options = await store.resolve(Options);

if (options.terms && __PLATFORM__ === 'opera') {
if (__PLATFORM__ === 'opera' && options.terms) {
shouldSetDangerBadgeForTabId(tabId).then((danger) => {
setBadgeColor(danger ? '#f13436' /* danger-500 */ : undefined);
});
Expand Down Expand Up @@ -245,6 +245,7 @@ function setupTabStats(tabId, request) {
if (request.isHttp || request.isHttps) {
tabStats.set(tabId, {
domain: request.domain || request.hostname,
url: request.url,
trackers: [],
});
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 142;
CURRENT_PROJECT_VERSION = 144;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand All @@ -905,7 +905,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 10.2.10;
MARKETING_VERSION = 10.2.11;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -948,7 +948,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 142;
CURRENT_PROJECT_VERSION = 144;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
Expand All @@ -961,7 +961,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 10.2.10;
MARKETING_VERSION = 10.2.11;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SWIFT_COMPILATION_MODE = wholemodule;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2f2e4fa

Please sign in to comment.