From 983ec0704c59d6687a77d73ef73638b5f777a93c Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 19 May 2024 07:37:57 +0200 Subject: [PATCH 1/8] Fix privacy policy --- content/page/privacy-policy.en.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/page/privacy-policy.en.md b/content/page/privacy-policy.en.md index dff0f2b..31094f9 100644 --- a/content/page/privacy-policy.en.md +++ b/content/page/privacy-policy.en.md @@ -16,7 +16,11 @@ The application requires the following permissions: * *QUERY_ALL_PACKAGES*: This permission allows the application to see all installed applications on your device. * *POST_NOTIFICATIONS*: This permission allows the application to post notifications. **This permission is only used on Android 13 and above.** -The application transmits the list of installed applications on the device. This list is not kept by the εxodus server. +We use PackageManager API to get application IDs, and we get app ID about from all apps installed (applications installed by the user and enabled on the device). + +The application transmits the list of applications IDs on the device to the εxodus server. This list is not kept by the server. + +The only usage of applications IDs is to our API return only reports about applications installed on the device. On the εxodus API server, we keep some information for 16 days, for abuse prevention: IP address, date, time, requested URL and user-agent. From e4472adb5f5b194e3ee1d10cdc24acb240197853 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 19 May 2024 21:11:42 +0200 Subject: [PATCH 2/8] Improve wording --- content/page/privacy-policy.en.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/page/privacy-policy.en.md b/content/page/privacy-policy.en.md index 31094f9..1a3aab0 100644 --- a/content/page/privacy-policy.en.md +++ b/content/page/privacy-policy.en.md @@ -16,11 +16,11 @@ The application requires the following permissions: * *QUERY_ALL_PACKAGES*: This permission allows the application to see all installed applications on your device. * *POST_NOTIFICATIONS*: This permission allows the application to post notifications. **This permission is only used on Android 13 and above.** -We use PackageManager API to get application IDs, and we get app ID about from all apps installed (applications installed by the user and enabled on the device). +We use PackageManager API to get applications handle (ID of app) from all apps installed (applications installed by the user and enabled on the device). -The application transmits the list of applications IDs on the device to the εxodus server. This list is not kept by the server. +The application transmits the list of applications handle on the device to the εxodus server. This list is not kept by the server. -The only usage of applications IDs is to our API return only reports about applications installed on the device. +The only usage of applications handle is to our API returns only reports about applications installed on the device user. On the εxodus API server, we keep some information for 16 days, for abuse prevention: IP address, date, time, requested URL and user-agent. From e1bd5fc89470adecf28dad698c4f0c0bf243e3d4 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 26 May 2024 21:33:02 +0200 Subject: [PATCH 3/8] Update french pp --- content/page/privacy-policy.fr.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/page/privacy-policy.fr.md b/content/page/privacy-policy.fr.md index 5c02fb6..9009821 100644 --- a/content/page/privacy-policy.fr.md +++ b/content/page/privacy-policy.fr.md @@ -16,7 +16,11 @@ L'application nécessite les autorisations suivantes: * *QUERY_ALL_PACKAGES* : Cette autorisation permet à l'application de connaitre les applications installées sur l'appareil. * *POST_NOTIFICATIONS* : Cette permission permet à l'application de pouvoir publier des notifications. **Cette autorisation est nécessaire uniquement sur Android 13 et supérieures.** -L'application transmet la liste des applications installées sur l'appareil. Cette liste n'est pas conservée par le serveur εxodus. +Nous utilisons l'API PackageManager pour obtenir l'identifiant de toutes les applications installées (applications installées par l'utilisateur et activées). + +L'application transmet la liste des identifiants des applications installées sur l'appareil au serveur εxodus. Cette liste n'est pas conservée par le serveur εxodus. + +Nous utilisons uniquement l'identifiant de chaque application pour renvoyer au téléphone uniquement les rapports concernant les applications installées sur l'appareil. Sur le serveur d'API εxodus, nous conservons quelques informations durant 16 jours, pour prévenir tout abus : adresse IP, date, heure, l'URL demandée et le user-agent. From 0c1340377a159c5c32ad23996b9f51eabec4b137 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 26 May 2024 22:24:11 +0200 Subject: [PATCH 4/8] Fix english pp --- content/page/privacy-policy.en.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/page/privacy-policy.en.md b/content/page/privacy-policy.en.md index 1a3aab0..f6bafa6 100644 --- a/content/page/privacy-policy.en.md +++ b/content/page/privacy-policy.en.md @@ -16,11 +16,10 @@ The application requires the following permissions: * *QUERY_ALL_PACKAGES*: This permission allows the application to see all installed applications on your device. * *POST_NOTIFICATIONS*: This permission allows the application to post notifications. **This permission is only used on Android 13 and above.** -We use PackageManager API to get applications handle (ID of app) from all apps installed (applications installed by the user and enabled on the device). +We use PackageManager API to get applications handle (ID of app) from all apps installed (applications installed by the user and not disabled by the user). The application transmits the list of applications handle on the device to the εxodus server. This list is not kept by the server. - -The only usage of applications handle is to our API returns only reports about applications installed on the device user. +These application handles are used for the API to return only reports related to what can be found on the device. On the εxodus API server, we keep some information for 16 days, for abuse prevention: IP address, date, time, requested URL and user-agent. From 2fcca1f701f445e856d278830ec6919b3f014153 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 26 May 2024 22:25:38 +0200 Subject: [PATCH 5/8] Fix french pp --- content/page/privacy-policy.fr.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/page/privacy-policy.fr.md b/content/page/privacy-policy.fr.md index 9009821..df18aee 100644 --- a/content/page/privacy-policy.fr.md +++ b/content/page/privacy-policy.fr.md @@ -16,11 +16,10 @@ L'application nécessite les autorisations suivantes: * *QUERY_ALL_PACKAGES* : Cette autorisation permet à l'application de connaitre les applications installées sur l'appareil. * *POST_NOTIFICATIONS* : Cette permission permet à l'application de pouvoir publier des notifications. **Cette autorisation est nécessaire uniquement sur Android 13 et supérieures.** -Nous utilisons l'API PackageManager pour obtenir l'identifiant de toutes les applications installées (applications installées par l'utilisateur et activées). +Nous utilisons l'API PackageManager pour obtenir l'identifiant de toutes les applications installées (applications installées par l'utilisateur et non désactivées par ce dernier). L'application transmet la liste des identifiants des applications installées sur l'appareil au serveur εxodus. Cette liste n'est pas conservée par le serveur εxodus. - -Nous utilisons uniquement l'identifiant de chaque application pour renvoyer au téléphone uniquement les rapports concernant les applications installées sur l'appareil. +Celle-ci est nécessaire afin de ne renvoyer a l'appareil que les rapports des applications installées sur ce dernier. Sur le serveur d'API εxodus, nous conservons quelques informations durant 16 jours, pour prévenir tout abus : adresse IP, date, heure, l'URL demandée et le user-agent. From 21aedb02596c31c89d642aaf767b1a3aec585c22 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 26 May 2024 22:31:07 +0200 Subject: [PATCH 6/8] Update content/page/privacy-policy.en.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clément L. --- content/page/privacy-policy.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/page/privacy-policy.en.md b/content/page/privacy-policy.en.md index f6bafa6..f729c44 100644 --- a/content/page/privacy-policy.en.md +++ b/content/page/privacy-policy.en.md @@ -16,7 +16,7 @@ The application requires the following permissions: * *QUERY_ALL_PACKAGES*: This permission allows the application to see all installed applications on your device. * *POST_NOTIFICATIONS*: This permission allows the application to post notifications. **This permission is only used on Android 13 and above.** -We use PackageManager API to get applications handle (ID of app) from all apps installed (applications installed by the user and not disabled by the user). +We use PackageManager API to get applications handle (ID of app) from every apps installed and not disabled by the user. The application transmits the list of applications handle on the device to the εxodus server. This list is not kept by the server. These application handles are used for the API to return only reports related to what can be found on the device. From eb195ab7db879b32e744d792243e1464481f9ca2 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 26 May 2024 22:31:13 +0200 Subject: [PATCH 7/8] Update content/page/privacy-policy.fr.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clément L. --- content/page/privacy-policy.fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/page/privacy-policy.fr.md b/content/page/privacy-policy.fr.md index df18aee..dcd14ac 100644 --- a/content/page/privacy-policy.fr.md +++ b/content/page/privacy-policy.fr.md @@ -19,7 +19,7 @@ L'application nécessite les autorisations suivantes: Nous utilisons l'API PackageManager pour obtenir l'identifiant de toutes les applications installées (applications installées par l'utilisateur et non désactivées par ce dernier). L'application transmet la liste des identifiants des applications installées sur l'appareil au serveur εxodus. Cette liste n'est pas conservée par le serveur εxodus. -Celle-ci est nécessaire afin de ne renvoyer a l'appareil que les rapports des applications installées sur ce dernier. +Celle-ci est nécessaire afin de ne renvoyer à l'appareil que les rapports des applications installées sur ce dernier et n'étant pas désactivées. Sur le serveur d'API εxodus, nous conservons quelques informations durant 16 jours, pour prévenir tout abus : adresse IP, date, heure, l'URL demandée et le user-agent. From 22d0c375e59f330443f2bf5561e33dcf5bef2bdf Mon Sep 17 00:00:00 2001 From: Jean-Baptiste <87148630+Jean-BaptisteC@users.noreply.github.com> Date: Sun, 26 May 2024 22:40:51 +0200 Subject: [PATCH 8/8] Update content/page/privacy-policy.fr.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clément L. --- content/page/privacy-policy.fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/page/privacy-policy.fr.md b/content/page/privacy-policy.fr.md index dcd14ac..1a9dafa 100644 --- a/content/page/privacy-policy.fr.md +++ b/content/page/privacy-policy.fr.md @@ -16,7 +16,7 @@ L'application nécessite les autorisations suivantes: * *QUERY_ALL_PACKAGES* : Cette autorisation permet à l'application de connaitre les applications installées sur l'appareil. * *POST_NOTIFICATIONS* : Cette permission permet à l'application de pouvoir publier des notifications. **Cette autorisation est nécessaire uniquement sur Android 13 et supérieures.** -Nous utilisons l'API PackageManager pour obtenir l'identifiant de toutes les applications installées (applications installées par l'utilisateur et non désactivées par ce dernier). +Nous utilisons l'API PackageManager pour obtenir l'identifiant de toutes les applications installées et n'ayant pas été désactivées. L'application transmet la liste des identifiants des applications installées sur l'appareil au serveur εxodus. Cette liste n'est pas conservée par le serveur εxodus. Celle-ci est nécessaire afin de ne renvoyer à l'appareil que les rapports des applications installées sur ce dernier et n'étant pas désactivées.