feat: Update privacy policy with crash report information

The commit adds a section to the privacy policy page explaining that crash reports can be sent to Mozilla Firefox to improve the stability of the browser. It clarifies that Zen Browser does not collect any crash reports and that they do not contain any personal information. This enhances the transparency and trustworthiness of our browser.
This commit is contained in:
Mauro Balades
2024-08-05 01:17:58 +02:00
parent e328d2379f
commit f020acaf7b
2 changed files with 35 additions and 4 deletions

View File

@@ -20,6 +20,8 @@ Welcome to Zen Browser! Your privacy is our priority. This Privacy Policy outlin
## 1. Information We Do Not Collect
Zen Browser is designed with privacy in mind. We do not collect, store, or share any of your personal data. Heres what that means:
* Crash reports can be sent to Mozilla Firefox. But, we do not collect any crash reports. Crash reports are sent securely to Mozilla Firefox to help improve the stability of the browser. They do not contain any personal information.
## 1.1. No Telemetry
We do not collect any telemetry data. Unlike other browsers that may track usage statistics or crash reports, Zen Browser does not gather any such information.
@@ -40,8 +42,9 @@ Zen Browser stores certain data locally on your device to enhance your browsing
Any customizations, settings, and preferences you make within Zen Browser are stored locally on your device. We do not have access to or control over this data.
# 3. Sync Feature
Zen Browser offers a "Sync" feature, similar to Firefox Sync, which allows you to synchronize your browsing data (such as bookmarks, passwords, and settings) across multiple devices. Here's how we handle your data when you use Sync:
Zen Browser offers a "Sync" feature, this is implemented using Mozilla Firefox's Sync feature. This feature allows you to synchronize your bookmarks, history, passwords, and other data across multiple devices. Heres how it works:
* [Mozilla Firefox Sync](https://www.mozilla.org/en-US/privacy/mozilla-accounts/)
* [This is how we store your passwords](https://support.mozilla.org/en-US/kb/how-firefox-securely-saves-passwords#:~:text=Firefox%20Desktop%20encrypts%20your%20passwords,cryptography%20to%20obscure%20your%20passwords.)
# 4. Data Security
@@ -69,6 +72,8 @@ We may update this Privacy Policy from time to time to reflect changes in our pr
We try to disable all telemetry data collection in Zen Browser. But, we may have missed some. Check the below links for more information.
You can also optionally enable telemetry data collection and other Mozilla Research Studies in Zen Browser. This is disabled by default. You can enable it by going to the settings page.
* Please check [Firefox Privacy Notice](https://www.mozilla.org/en-US/privacy/) for more information.
# 9. Contact Us
@@ -79,9 +84,7 @@ If you have any questions or concerns about this Privacy Policy or Zen Browser,
---
By using Zen Browser, you agree to this Privacy Policy. Remember, with Zen, your privacy is in your hands.
`}
By using Zen Browser, you agree to this Privacy Policy. Remember, with Zen, your privacy is in your hands.`}
</Markdown>
</div>
<Footer />

View File

@@ -374,6 +374,34 @@ export const releaseNotes: ReleaseNote[] = [
},
],
},
{
version: "1.0.0-a.13",
date: "05/08/2024",
extra: "This is a smaller release to fix some bugs and improve some small details.\n\nIm going to try doing more frequent releases from now on, see how it goes.",
features: [
"Allow to remember sidebar width even after collapsing it.",
],
fixes: [
{
description: "Task Manager Icon Missing in Flatpak Version",
issue: 146,
},
{
description: "Condensed Vertical Tabs not working in Compact Mode",
issue: 160,
},
{
description: "Remember sidebar width on toggle",
issue: 149,
},
{
description: "Fixed startup issue with AppImage",
},
{
description: "Fixed typos on the onboarding experience.",
},
],
},
].reverse();
export function releaseNoteIsAlpha(note: ReleaseNote) {