-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (99 loc) · 3.96 KB
/
Copy pathindex.html
File metadata and controls
108 lines (99 loc) · 3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Checked Today Privacy Policy</title>
<meta name="description" content="Privacy Policy for Checked Today.">
<style>
:root {
color-scheme: light dark;
--bg: #fbfaf7;
--text: #211d1a;
--muted: #6d625b;
--line: #e5ded7;
--accent: #7a4f2a;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #151312;
--text: #f3eee8;
--muted: #c7bbb1;
--line: #352e29;
--accent: #e2a66c;
}
}
body {
margin: 0;
background: var(--bg);
color: var(--text);
font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
main {
width: min(720px, calc(100% - 40px));
margin: 0 auto;
padding: 56px 0 72px;
}
h1 {
margin: 0 0 8px;
font-size: clamp(2rem, 5vw, 3.25rem);
line-height: 1.05;
letter-spacing: 0;
}
h2 {
margin: 36px 0 8px;
font-size: 1.2rem;
line-height: 1.3;
}
p, ul {
margin: 12px 0 0;
}
ul {
padding-left: 1.25rem;
}
.date {
color: var(--muted);
margin-bottom: 32px;
}
.note {
border-top: 1px solid var(--line);
margin-top: 40px;
padding-top: 20px;
color: var(--muted);
font-size: 0.95rem;
}
a {
color: var(--accent);
}
</style>
</head>
<body>
<main>
<h1>Checked Today Privacy Policy</h1>
<p class="date">Effective date: July 1, 2026</p>
<p>Checked Today is a local-first reminder and memory checklist app. It stores reminder names, schedules, progress, and completion logs on your device so the app can show your current reminder state, widgets, and notifications.</p>
<h2>Data Checked Today stores on your device</h2>
<p>Checked Today may store the following app data locally:</p>
<ul>
<li>Reminder names and optional reminder details you create.</li>
<li>Reminder schedules, reset times, notification settings, colors, and icons.</li>
<li>Progress and completion logs, including dates and times.</li>
</ul>
<h2>Data collection and sharing</h2>
<p>Checked Today does not require an account. Checked Today does not collect analytics, crash reports, advertising identifiers, contacts, location, health records from platform health APIs, or reminder content on a developer-operated server.</p>
<p>Checked Today does not sell personal data. Checked Today does not share your reminder content with the developer or third parties.</p>
<h2>Notifications and widgets</h2>
<p>Checked Today uses Android notification and widget features to show reminders you create. These features run from data stored locally on your device.</p>
<h2>App updates</h2>
<p>Checked Today can ask Google Play whether a newer app version is available. Google Play may process device metadata, the installed app version, and installed app modules to answer that request under Google's terms. Reminder names, schedules, progress, and completion logs are not included in update checks.</p>
<h2>Purchases</h2>
<p>Checked Today is free-only for this release and does not offer in-app purchases.</p>
<h2>Backup, retention, and deletion</h2>
<p>Checked Today disables Android app-data backup and device-transfer extraction for local reminder data. Deleting the app removes local reminder data from the device.</p>
<h2>Contact</h2>
<p>For privacy questions or support, contact us through the <a href="https://github.com/NathanZane/checked-today-legal/issues">public legal/support issue tracker</a>.</p>
<p>If an app store listing provides an additional developer contact email, you can use that contact method as well.</p>
<p class="note">This page applies to Checked Today. It should be kept consistent with the app's Data safety disclosures and store listing.</p>
</main>
</body>
</html>