-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
123 lines (110 loc) · 5.15 KB
/
privacy.html
File metadata and controls
123 lines (110 loc) · 5.15 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AnyTime Privacy Policy</title>
<meta
name="description"
content="Privacy Policy for AnyTime."
>
<link rel="icon" type="image/png" sizes="1024x1024" href="icon.png">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="shell">
<header class="nav">
<a class="brand" href="index.html">
<img class="brand-mark" src="icon.png" alt="">
<span>AnyTime</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false" onclick="this.setAttribute('aria-expanded',this.getAttribute('aria-expanded')==='false'?'true':'false');this.closest('.nav').querySelector('.nav-links').classList.toggle('open')">
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
<span class="nav-toggle-bar"></span>
</button>
<nav class="nav-links" aria-label="Primary">
<a class="nav-link current" href="privacy.html">Privacy</a>
</nav>
</header>
<section class="hero">
<p class="eyebrow">Legal</p>
<h1>Privacy Policy</h1>
<p class="lead">Last updated March 4, 2026.</p>
</section>
<main class="grid">
<section class="card span-12 legal">
<p>
AnyTime is a timezone calculator for iPhone, iPad, and Mac. This policy explains what
information the app handles and how that information is used.
</p>
<h2>Information AnyTime May Process</h2>
<ul>
<li>Timezones, cities, and clocks you add or reorder in the app.</li>
<li>Display preferences such as label style and date formatting.</li>
<li>Text you paste into the app when using paste-based time parsing.</li>
<li>Your approximate location only if you grant location permission.</li>
<li>Calendar event details only if you ask the app to create an event and grant Calendar access.</li>
</ul>
<h2>How AnyTime Uses This Information</h2>
<ul>
<li>To show your saved world clocks and calculate time differences.</li>
<li>To interpret pasted date/time text and update the reference clock.</li>
<li>To identify a nearby timezone for search and matching badges when location access is allowed.</li>
<li>To create a Calendar event only when you explicitly request it from a timezone card.</li>
</ul>
<h2>Data Storage</h2>
<p>
AnyTime stores your saved clocks and preferences locally on your device using Apple system
storage APIs. The developer does not require an account and does not operate a backend for
storing your personal timezone data.
</p>
<h2>Location Data</h2>
<p>
If you allow location access, AnyTime uses Core Location and reverse geocoding to determine
a nearby timezone and city. This is used only for app features such as highlighting a matching
timezone or selecting your nearby city in search.
</p>
<p>
The app does not use location access for advertising or background tracking.
</p>
<h2>Calendar Access</h2>
<p>
If you allow Calendar access, AnyTime can create a calendar event using the title and time
you confirm inside the app. Calendar access is used only for the event you request to create.
</p>
<h2>Network Requests</h2>
<p>
AnyTime may make network requests when looking up city matches that are not already covered
by the built-in timezone catalog. If you do not use those search flows, that lookup is not needed.
</p>
<h2>Data Collection and Tracking</h2>
<p>
AnyTime does not include advertising SDKs, third-party analytics SDKs, or third-party tracking code.
</p>
<h2>Data Sharing</h2>
<p>
The developer does not receive your saved clocks, pasted text, location, or calendar contents
through a developer-operated backend service. Information only leaves the device when needed
for the feature you invoke, such as a city lookup request or calendar save through Apple frameworks.
</p>
<h2>Your Choices</h2>
<ul>
<li>You can deny or revoke location permission in system settings.</li>
<li>You can deny or revoke Calendar access in system settings.</li>
<li>You can remove saved clocks or delete the app at any time.</li>
</ul>
<h2>Contact</h2>
<p>
For privacy questions, contact <a href="mailto:hi@hewig.dev">hi@hewig.dev</a>.
</p>
</section>
</main>
<footer class="footer">
<span>AnyTime privacy policy</span>
<span>Applies to the current iPhone, iPad, and Mac app.</span>
</footer>
</div>
</body>
</html>