Skip to content

Commit

Permalink
Merge branch 'develop' into sam/vpn-waitlist
Browse files Browse the repository at this point in the history
* develop:
  Updates BSK (#2173)
  Rolls back a BSK change by mistake
  Updates BSK
  Updates BSK
  Document LinkPresentation usage (#2172)
  Autofill "Never Save for this Site" feature (#2104)
  Update embedded files
  Update version number
  • Loading branch information
samsymons committed Nov 17, 2023
2 parents 6eaf832 + efa39b4 commit e9b0e2b
Show file tree
Hide file tree
Showing 58 changed files with 1,788 additions and 564 deletions.
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.0
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 = "\"71b1b5499f333348df4f9bc52b74185f\""
public static let embeddedDataSHA = "a5b30cf79e5efc40fec6fb28491a7484822041d927a6e2d8c9c7ccd3bd236c61"
}

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 e9b0e2b

Please sign in to comment.