Skip to content

Commit

Permalink
Merge branch 'develop' into loremattei/fix-sync-ffs-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
loremattei committed Nov 24, 2023
2 parents 6530526 + 926526d commit 64717cc
Show file tree
Hide file tree
Showing 74 changed files with 2,403 additions and 993 deletions.
2 changes: 1 addition & 1 deletion .maestro/release_tests/emailprotection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tags:
- scroll
- scroll
- assertVisible: Email Protection
- tapOn: Email Protection, Block email trackers and hide your address
- tapOn: Email Protection
- assertVisible:
id: searchEntry
- assertVisible: https://duckduckgo.com/email/
Expand Down
2 changes: 1 addition & 1 deletion Configuration/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MARKETING_VERSION = 7.96.0
MARKETING_VERSION = 7.97.1
4 changes: 2 additions & 2 deletions Core/AppPrivacyConfigurationDataProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import BrowserServicesKit
final public class AppPrivacyConfigurationDataProvider: EmbeddedDataProvider {

public struct Constants {
public static let embeddedDataETag = "\"39c652b21aa330463726faf240e03445\""
public static let embeddedDataSHA = "b19c28e816008ace47a9e3e58f74eef6558b5cbdcd7d79d098d7d2e56d686075"
public static let embeddedDataETag = "\"b8a321aec612923a53b958fbdbfa541e\""
public static let embeddedDataSHA = "af271d73da0863e678670fb0d9cf4f8269ddb7e584599bfb57d5a370961dbc4b"
}

public var embeddedDataEtag: String {
Expand Down
4 changes: 2 additions & 2 deletions Core/AppTrackerDataSetProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import BrowserServicesKit
final public class AppTrackerDataSetProvider: EmbeddedDataProvider {

public struct Constants {
public static let embeddedDataETag = "\"3b73923ebfd4702c33aea682db0bac11\""
public static let embeddedDataSHA = "16e1e52530db19badfefc9a07d76620f9c608c12dc144f67020da8a9a4ddb0fa"
public static let embeddedDataETag = "\"3a50d09fd78a893f1a284051d1f777de\""
public static let embeddedDataSHA = "2c1995807a61fd9fa311baab01633411282759732f098765f5380bda5e92b9e2"
}

public var embeddedDataEtag: String {
Expand Down
12 changes: 10 additions & 2 deletions Core/PixelEvent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ extension Pixel {
case autofillLoginsSaveLoginModalDisplayed
case autofillLoginsSaveLoginModalConfirmed
case autofillLoginsSaveLoginModalDismissed

case autofillLoginsSaveLoginModalExcludeSiteConfirmed

case autofillLoginsSavePasswordModalDisplayed
case autofillLoginsSavePasswordModalConfirmed
case autofillLoginsSavePasswordModalDismissed
Expand Down Expand Up @@ -238,6 +239,9 @@ extension Pixel {
case autofillLoginsSettingsEnabled
case autofillLoginsSettingsDisabled
case autofillLoginsSettingsAddNewLoginErrorAttemptedToCreateDuplicate
case autofillLoginsSettingsResetExcludedDisplayed
case autofillLoginsSettingsResetExcludedConfirmed
case autofillLoginsSettingsResetExcludedDismissed

case autofillLoginsPasswordGenerationPromptDisplayed
case autofillLoginsPasswordGenerationPromptConfirmed
Expand Down Expand Up @@ -699,7 +703,8 @@ extension Pixel.Event {
case .autofillLoginsSaveLoginModalDisplayed: return "m_autofill_logins_save_login_inline_displayed"
case .autofillLoginsSaveLoginModalConfirmed: return "m_autofill_logins_save_login_inline_confirmed"
case .autofillLoginsSaveLoginModalDismissed: return "m_autofill_logins_save_login_inline_dismissed"

case .autofillLoginsSaveLoginModalExcludeSiteConfirmed: return "m_autofill_logins_save_login_exclude_site_confirmed"

case .autofillLoginsSavePasswordModalDisplayed: return "m_autofill_logins_save_password_inline_displayed"
case .autofillLoginsSavePasswordModalConfirmed: return "m_autofill_logins_save_password_inline_confirmed"
case .autofillLoginsSavePasswordModalDismissed: return "m_autofill_logins_save_password_inline_dismissed"
Expand Down Expand Up @@ -741,6 +746,9 @@ extension Pixel.Event {
case .autofillLoginsSettingsDisabled: return "m_autofill_logins_settings_disabled"
case .autofillLoginsSettingsAddNewLoginErrorAttemptedToCreateDuplicate:
return "m_autofill_logins_settings_add-new-login_error_attempted-to-create-duplicate"
case .autofillLoginsSettingsResetExcludedDisplayed: return "m_autofill_settings_reset_excluded_displayed"
case .autofillLoginsSettingsResetExcludedConfirmed: return "m_autofill_settings_reset_excluded_confirmed"
case .autofillLoginsSettingsResetExcludedDismissed: return "m_autofill_settings_reset_excluded_dismissed"

case .autofillLoginsPasswordGenerationPromptDisplayed: return "m_autofill_logins_password_generation_prompt_displayed"
case .autofillLoginsPasswordGenerationPromptConfirmed: return "m_autofill_logins_password_generation_prompt_confirmed"
Expand Down
2 changes: 1 addition & 1 deletion Core/UserDefaultsPropertyWrapper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public struct UserDefaultsWrapper<T> {
case autofillCredentialsSavePromptShowAtLeastOnce = "com.duckduckgo.ios.autofillCredentialsSavePromptShowAtLeastOnce"
case autofillCredentialsHasBeenEnabledAutomaticallyIfNecessary =
"com.duckduckgo.ios.autofillCredentialsHasBeenEnabledAutomaticallyIfNecessary"

case featureFlaggingDidVerifyInternalUser = "com.duckduckgo.app.featureFlaggingDidVerifyInternalUser"

case voiceSearchEnabled = "com.duckduckgo.app.voiceSearchEnabled"
Expand Down
Loading

0 comments on commit 64717cc

Please sign in to comment.