Skip to content

Commit

Permalink
Merge tag '7.147.1' into michal/include-hotfix-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
miasma13 committed Dec 4, 2024
2 parents a5dab98 + b55028c commit 835dcc2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DuckDuckGo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11313,7 +11313,7 @@
repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit";
requirement = {
kind = exactVersion;
version = 216.0.1;
version = "216.0.1-1";
};
};
9F8FE9472BAE50E50071E372 /* XCRemoteSwiftPackageReference "lottie-spm" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/DuckDuckGo/BrowserServicesKit",
"state" : {
"revision" : "59f8fb2f850f8a0482c604d07396e01e8de59d21",
"version" : "216.0.1"
"revision" : "3517357ecd9d5e9ef7ef2f229c0ebc6460f309e6",
"version" : "216.0.1-1"
}
},
{
Expand Down
5 changes: 4 additions & 1 deletion DuckDuckGo/AppDependencyProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ final class AppDependencyProvider: DependencyProvider {
}
}

let subscriptionManager = DefaultSubscriptionManager(storePurchaseManager: DefaultStorePurchaseManager(subscriptionFeatureMappingCache: subscriptionFeatureMappingCache),
let storePurchaseManager = DefaultStorePurchaseManager(subscriptionFeatureMappingCache: subscriptionFeatureMappingCache,
subscriptionFeatureFlagger: subscriptionFeatureFlagger)

let subscriptionManager = DefaultSubscriptionManager(storePurchaseManager: storePurchaseManager,
accountManager: accountManager,
subscriptionEndpointService: subscriptionService,
authEndpointService: authService,
Expand Down
2 changes: 1 addition & 1 deletion DuckDuckGo/TextZoomEditorModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ class TextZoomEditorModel: ObservableObject {
NotificationCenter.default.post(
name: AppUserDefaults.Notifications.textZoomChange,
object: nil)
DailyPixel.fire(pixel: .textZoomChangedOnPageDaily)
}

func onDismiss() {
guard initialValue.rawValue != TextZoomLevel.allCases[value].rawValue else { return }
DailyPixel.fire(pixel: .textZoomChangedOnPageDaily)
Pixel.fire(.textZoomChangedOnPage, withAdditionalParameters: [
PixelParameters.textZoomInitial: String(initialValue.rawValue),
PixelParameters.textZoomUpdated: String(TextZoomLevel.allCases[value].rawValue),
Expand Down

0 comments on commit 835dcc2

Please sign in to comment.