-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add privacy policy - Add Help menu item for viewing privacy policy - Update MSI format - Add prompt for privacy policy for first time users - Convert markdown privacy policy to html for packaging
- Loading branch information
Showing
11 changed files
with
173 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Privacy Policy for cometrics | ||
## Date: Aug 2022 | ||
|
||
The developer of cometrics is mindful of the security and protection of user data and patient data. This Privacy Policy document explains the types of information that are collected and recorded by cometrics and in which situations the developers will have access to generated data. | ||
|
||
By using cometrics, you hereby consent to this Privacy Policy and agree to its terms and conditions. | ||
|
||
## Information cometrics collects | ||
|
||
Cometrics automatically collects computer resource usage, file names, and errors encountered into standard log files that are stored on the computer that cometrics is installed on. Only users of that computer with appropriate privileges can view these records. | ||
|
||
Cometrics, as part of its functionality, will log and record keystroke information, behavioral data, physiological data, control parameters for external devices, session dates and times, and, possibly, personally identifiable information about a patient that falls under HIPAA restrictions. Cometrics saves this data in the location specified by the user in the creation of their project. This may or may not be a shared computer network or server system that other users have access to. This data can only be accessed by users with permissions to access the data folders on the computer system it is stored on. Cometrics does not send this data to any person or computer system other than the computer system pointed to by the user. | ||
|
||
Cometrics does not log or transmit any usage data, user data, or patient data to any server or computer system that is under the control of the developer or visible to any other third party. | ||
|
||
## How is data collected | ||
|
||
Feedback data is sent and stored on https://github.com in our public code repository located at https://github.com/Munroe-Meyer-Institute-VR-Laboratory/cometrics. This data is public and includes the feedback text, feedback type, and feedback title that is provided using the built-in submission user interface in cometrics. | ||
|
||
## Why is this data collected | ||
|
||
This feedback data is collected and stored publicly on our public code repository to improve the functionality of cometrics and provide semi-anonymized feedback with minimal user friction. This data allows the developer and maintainer of cometrics to isolate, identify, and resolve problems that are affecting the user base. | ||
|
||
## Who can see this collected data | ||
|
||
This data is public and accessible by any individual with an internet capable computing device. | ||
|
||
## When is this data collected | ||
|
||
This data is only collected by voluntarily submitting feedback through the built-in feedback function within cometrics. | ||
|
||
## Where is this data stored | ||
|
||
Submitted feedback can be found and monitored here https://github.com/Munroe-Meyer-Institute-VR-Laboratory/cometrics/issues. | ||
|
||
## Third parties | ||
|
||
No data is sold, shared, or controlled by third parties. | ||
|
||
## When will data be deleted | ||
|
||
Data will be deleted if it is determined that the feedback contains personally identifiable information as it relates to patient data, private usernames, or private logins. If a request is made to remove feedback, it will be deleted within a month. Requests can be made to [email protected]. | ||
|
||
## CCPA Privacy Rights (Do Not Sell My Personal Information) | ||
|
||
Under the CCPA, among other rights, California consumers have the right to: | ||
|
||
Request that a business that collects a consumer's personal data disclose the categories and specific pieces of personal data that a business has collected about consumers. | ||
|
||
Request that a business delete any personal data about the consumer that a business has collected. | ||
|
||
Request that a business that sells a consumer's personal data, not sell the consumer's personal data. | ||
|
||
If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us. | ||
|
||
## GDPR Data Protection Rights | ||
|
||
We would like to make sure you are fully aware of all of your data protection rights. Every user is entitled to the following: | ||
|
||
The right to access – You have the right to request copies of your personal data. We may charge you a small fee for this service. | ||
|
||
The right to rectification – You have the right to request that we correct any information you believe is inaccurate. You also have the right to request that we complete the information you believe is incomplete. | ||
|
||
The right to erasure – You have the right to request that we erase your personal data, under certain conditions. | ||
|
||
The right to restrict processing – You have the right to request that we restrict the processing of your personal data, under certain conditions. | ||
|
||
The right to object to processing – You have the right to object to our processing of your personal data, under certain conditions. | ||
|
||
The right to data portability – You have the right to request that we transfer the data that we have collected to another organization, or directly to you, under certain conditions. | ||
|
||
If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us. | ||
|
||
## Children's Information | ||
|
||
Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity. | ||
|
||
Cometrics does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
import sys | ||
import markdown | ||
from cx_Freeze import setup, Executable | ||
|
||
# Dependencies are automatically detected, but it might need fine tuning. | ||
from ui_params import cometrics_version | ||
|
||
with open('PRIVACY_POLICY.md', 'r') as f: | ||
text = f.read() | ||
html = markdown.markdown(text) | ||
with open('reference/PRIVACY_POLICY.html', 'w') as f: | ||
f.write(html) | ||
|
||
base = None | ||
if sys.platform == "win32": | ||
base = "Win32GUI" | ||
|
@@ -52,7 +59,7 @@ | |
build_exe_options = dict( | ||
packages=["os", "sys", "tkinter", 'logger_util', 'scipy'], | ||
includes=['pynput', 'pynput.keyboard._win32', 'pynput.mouse._win32', 'logger_util', 'scipy._lib.deprecation'], | ||
excludes=[], | ||
excludes=['markdown'], | ||
include_files=['external_bin', 'images', 'reference', 'config.yml', 'LICENSE', | ||
(r'venv\Lib\site-packages\imageio', r'lib\imageio')], | ||
) | ||
|
@@ -61,7 +68,12 @@ | |
'add_to_path': False, | ||
'initial_target_dir': r'[ProgramFilesFolder]\%s\%s' % ("cometrics", cometrics_version), | ||
'data': msi_data, | ||
'upgrade_code': '{9DD1C082-2D1D-4AC5-9150-22CA5DF3D780}' | ||
'upgrade_code': '{9DD1C082-2D1D-4AC5-9150-22CA5DF3D780}', | ||
"summary_data": { | ||
"author": "Walker Arce", | ||
"comments": "Copyright (C) 2022", | ||
}, | ||
"install_icon": r'images\icon.ico', | ||
} | ||
|
||
executable = [Executable("cometrics.py", | ||
|
@@ -75,7 +87,11 @@ | |
|
||
setup(name="cometrics", | ||
version=cometrics_version, | ||
author_email="[email protected]", | ||
url="https://github.com/Munroe-Meyer-Institute-VR-Laboratory/cometrics/issues", | ||
author="Walker Arce", | ||
description=f'cometrics v{cometrics_version}', | ||
options={"bdist_msi": bdist_msi_options, | ||
"build_exe": build_exe_options}, | ||
executables=executable) | ||
executables=executable | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<h1>Privacy Policy for cometrics</h1> | ||
<h2>Date: Aug 2022</h2> | ||
<p>The developer of cometrics is mindful of the security and protection of user data and patient data. This Privacy Policy document explains the types of information that are collected and recorded by cometrics and in which situations the developers will have access to generated data.</p> | ||
<p>By using cometrics, you hereby consent to this Privacy Policy and agree to its terms and conditions.</p> | ||
<h2>Information cometrics collects</h2> | ||
<p>Cometrics automatically collects computer resource usage, file names, and errors encountered into standard log files that are stored on the computer that cometrics is installed on. Only users of that computer with appropriate privileges can view these records.</p> | ||
<p>Cometrics, as part of its functionality, will log and record keystroke information, behavioral data, physiological data, control parameters for external devices, session dates and times, and, possibly, personally identifiable information about a patient that falls under HIPAA restrictions. Cometrics saves this data in the location specified by the user in the creation of their project. This may or may not be a shared computer network or server system that other users have access to. This data can only be accessed by users with permissions to access the data folders on the computer system it is stored on. Cometrics does not send this data to any person or computer system other than the computer system pointed to by the user. </p> | ||
<p>Cometrics does not log or transmit any usage data, user data, or patient data to any server or computer system that is under the control of the developer or visible to any other third party. </p> | ||
<h2>How is data collected</h2> | ||
<p>Feedback data is sent and stored on https://github.com in our public code repository located at https://github.com/Munroe-Meyer-Institute-VR-Laboratory/cometrics. This data is public and includes the feedback text, feedback type, and feedback title that is provided using the built-in submission user interface in cometrics.</p> | ||
<h2>Why is this data collected</h2> | ||
<p>This feedback data is collected and stored publicly on our public code repository to improve the functionality of cometrics and provide semi-anonymized feedback with minimal user friction. This data allows the developer and maintainer of cometrics to isolate, identify, and resolve problems that are affecting the user base. </p> | ||
<h2>Who can see this collected data</h2> | ||
<p>This data is public and accessible by any individual with an internet capable computing device.</p> | ||
<h2>When is this data collected</h2> | ||
<p>This data is only collected by voluntarily submitting feedback through the built-in feedback function within cometrics.</p> | ||
<h2>Where is this data stored</h2> | ||
<p>Submitted feedback can be found and monitored here https://github.com/Munroe-Meyer-Institute-VR-Laboratory/cometrics/issues.</p> | ||
<h2>Third parties</h2> | ||
<p>No data is sold, shared, or controlled by third parties. </p> | ||
<h2>When will data be deleted</h2> | ||
<p>Data will be deleted if it is determined that the feedback contains personally identifiable information as it relates to patient data, private usernames, or private logins. If a request is made to remove feedback, it will be deleted within a month. Requests can be made to [email protected].</p> | ||
<h2>CCPA Privacy Rights (Do Not Sell My Personal Information)</h2> | ||
<p>Under the CCPA, among other rights, California consumers have the right to:</p> | ||
<p>Request that a business that collects a consumer's personal data disclose the categories and specific pieces of personal data that a business has collected about consumers.</p> | ||
<p>Request that a business delete any personal data about the consumer that a business has collected.</p> | ||
<p>Request that a business that sells a consumer's personal data, not sell the consumer's personal data.</p> | ||
<p>If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us.</p> | ||
<h2>GDPR Data Protection Rights</h2> | ||
<p>We would like to make sure you are fully aware of all of your data protection rights. Every user is entitled to the following:</p> | ||
<p>The right to access – You have the right to request copies of your personal data. We may charge you a small fee for this service.</p> | ||
<p>The right to rectification – You have the right to request that we correct any information you believe is inaccurate. You also have the right to request that we complete the information you believe is incomplete.</p> | ||
<p>The right to erasure – You have the right to request that we erase your personal data, under certain conditions.</p> | ||
<p>The right to restrict processing – You have the right to request that we restrict the processing of your personal data, under certain conditions.</p> | ||
<p>The right to object to processing – You have the right to object to our processing of your personal data, under certain conditions.</p> | ||
<p>The right to data portability – You have the right to request that we transfer the data that we have collected to another organization, or directly to you, under certain conditions.</p> | ||
<p>If you make a request, we have one month to respond to you. If you would like to exercise any of these rights, please contact us.</p> | ||
<h2>Children's Information</h2> | ||
<p>Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.</p> | ||
<p>Cometrics does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+3.98 MB
user_guide/Cometrics User Guide_v8.docx → user_guide/Cometrics User Guide_v9.docx
Binary file not shown.
Binary file not shown.