-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
190 lines (167 loc) · 4.62 KB
/
Copy pathabout.html
File metadata and controls
190 lines (167 loc) · 4.62 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About HitMeUp Reminder</title>
<style>
* {
box-sizing: border-box;
}
:root {
--ink: #17212f;
--muted: #5c6f82;
--panel: #ffffff;
--line: #d8e1ea;
--page: #eef3f7;
--blue: #2563eb;
}
body {
margin: 0;
color: var(--ink);
background: var(--page);
font-family: "Segoe UI", Arial, sans-serif;
line-height: 1.5;
}
.shell {
max-width: 820px;
margin: 0 auto;
padding: 28px;
}
.hero {
display: grid;
grid-template-columns: 88px 1fr;
gap: 16px;
align-items: center;
margin-bottom: 20px;
}
.mascot {
width: 88px;
height: 88px;
object-fit: contain;
filter: drop-shadow(0 4px 8px rgba(23, 33, 47, 0.16));
}
h1 {
margin: 0;
font-size: 30px;
line-height: 1.2;
}
.tagline {
margin: 6px 0 0;
color: var(--muted);
font-size: 16px;
}
.panel {
margin-top: 14px;
padding: 18px;
background: var(--panel);
border: 1px solid var(--line);
border-radius: 8px;
box-shadow: 0 4px 12px rgba(23, 33, 47, 0.08);
}
h2 {
margin: 0 0 10px;
font-size: 18px;
}
p {
margin: 0 0 10px;
color: var(--muted);
}
ul {
margin: 0;
padding-left: 20px;
}
li {
margin: 5px 0;
}
code {
color: var(--blue);
font-family: Consolas, "Courier New", monospace;
}
a {
color: var(--blue);
font-weight: 700;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
.meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 10px;
}
.pill {
padding: 4px 8px;
color: var(--muted);
background: #f6f9fc;
border: 1px solid var(--line);
border-radius: 6px;
font-size: 13px;
font-weight: 700;
}
</style>
</head>
<body>
<main class="shell">
<header class="hero">
<img class="mascot" src="icons/icon-128.png" alt="">
<div>
<h1>HitMeUp Reminder</h1>
<p class="tagline">Set reminders on emails so follow-ups do not get lost.</p>
<div class="meta">
<span class="pill">Version 1.0.4</span>
<span class="pill">Author: Peter Moreno</span>
<span class="pill">Local-first</span>
</div>
</div>
</header>
<section class="panel">
<h2>Overview</h2>
<p>HitMeUp Reminder adds simple, reliable reminders directly inside Thunderbird so important emails do not slip through the cracks.</p>
<p>Set reminders on any message and come back to it at the right time, whether it is a follow-up, response, or task.</p>
</section>
<section class="panel">
<h2>Features</h2>
<ul>
<li>Set reminders from the message-list right-click menu.</li>
<li>Use quick presets: test, 1 hour, 1 day, or custom date/time.</li>
<li>Review Due and Active reminders from the toolbar dropdown.</li>
<li>Search active reminders quickly.</li>
<li>Open, edit, or cancel active reminders from the Active list.</li>
<li>Snooze or dismiss reminders with one click.</li>
<li>Open the original email directly from reminders.</li>
<li>See reminder status at a glance with the toolbar badge.</li>
</ul>
</section>
<section class="panel">
<h2>Email Integration</h2>
<ul>
<li>Optionally mark emails unread when reminders become due.</li>
<li>Optionally move emails back to Inbox when reminders become due.</li>
<li>Apply a red <code>HitMeUp Reminder</code> tag to tracked messages.</li>
<li>Update the existing reminder when the same email is reminded again.</li>
<li>Work safely across multiple accounts.</li>
</ul>
</section>
<section class="panel">
<h2>Privacy</h2>
<ul>
<li>No data is sent externally.</li>
<li>No tracking or analytics are used.</li>
<li>All reminders are stored locally inside Thunderbird.</li>
</ul>
</section>
<section class="panel">
<h2>Updates and Source</h2>
<p>For updates, release downloads, and source code, visit the official GitHub repository.</p>
<p><a href="https://github.com/PetersMinistry/HitMeUp" target="_blank" rel="noopener">github.com/PetersMinistry/HitMeUp</a></p>
</section>
<section class="panel">
<h2>Permissions</h2>
<p>Permissions are used only to support reminder functionality, such as opening emails, updating message state when enabled, applying reminder tags, and displaying notifications.</p>
</section>
</main>
</body>
</html>