Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add automatic update failed message #109

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion live/macos-config/macos-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 4,
"version": 5,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this is necessary to increment in the PR as well.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not strictly necessary, but without it will take clients 24+ hours to check for new messages so it’s best practice 🙂

"messages": [
{
"id": "macos_privacy_pro_app_store_exit_survey_1",
Expand Down Expand Up @@ -94,6 +94,16 @@
}
},
"matchingRules": [9]
},
{
"id": "macos_switch_to_manual_updates",
"content": {
"messageType": "medium",
"titleText": "Automatic Update Failed",
"descriptionText": "To get the latest version of DuckDuckGo \n1\\. Go to **Settings > About** \n2\\. Select **Check for updates but let me choose to install them** \n3\\. Click **Restart To Update**",
"placeholder": "CriticalUpdate"
},
"matchingRules": [10]
}
],
"rules": [
Expand Down Expand Up @@ -238,6 +248,18 @@
]
}
}
},
{
"id": 10,
"attributes": {
"appVersion": {
"min": "1.99.0",
"max": "1.102.0"
},
"installedMacAppStore": {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We only have problems with updates for DMG users

"value": false
}
}
}
]
}
Loading