-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchangelog.html
More file actions
470 lines (430 loc) · 23.8 KB
/
changelog.html
File metadata and controls
470 lines (430 loc) · 23.8 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What's New in Drowzy</title>
<style>
:root {
--bg-base: #0f0b1a;
--bg-surface: #1a1528;
--bg-elevated: #241e35;
--bg-overlay: #2e2645;
--color-text: #e8e2f4;
--color-text-secondary: #9b8fad;
--color-text-tertiary: #6b5f7e;
--color-accent: #a78bfa;
--color-accent-hover: #c4b5fd;
--color-accent-dim: rgba(167, 139, 250, 0.15);
--color-green: #6ee7b7;
--color-green-dim: rgba(110, 231, 183, 0.12);
--color-blue: #60a5fa;
--color-blue-dim: rgba(96, 165, 250, 0.12);
--color-amber: #fbbf24;
--color-amber-dim: rgba(251, 191, 36, 0.12);
--border-subtle: rgba(255, 255, 255, 0.06);
--border-default: rgba(255, 255, 255, 0.1);
--border-accent: rgba(167, 139, 250, 0.3);
--radius-sm: 6px;
--radius-md: 10px;
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg-base);
color: var(--color-text);
font-family: var(--font-sans);
line-height: 1.7;
min-height: 100vh;
display: flex;
justify-content: center;
padding: 48px 20px 80px;
}
.container {
max-width: 600px;
width: 100%;
animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.header {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 12px;
}
.header svg {
flex-shrink: 0;
color: var(--color-accent);
}
.header-text {
font-size: 28px;
font-weight: 800;
background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.version-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 12px;
background: var(--color-accent-dim);
border: 1px solid var(--border-accent);
border-radius: 9999px;
font-size: 13px;
font-weight: 600;
color: var(--color-accent);
margin-bottom: 32px;
}
.version-badge .dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--color-green);
}
.section-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--color-text-tertiary);
margin: 28px 0 12px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border-subtle);
font-weight: 600;
}
.section-label:first-of-type {
margin-top: 0;
}
.change-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.change-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 11px 14px;
background: var(--bg-surface);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-md);
transition: border-color 0.2s ease;
}
.change-item:hover {
border-color: var(--border-default);
}
.change-icon {
flex-shrink: 0;
width: 28px;
height: 28px;
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
margin-top: 1px;
}
.change-icon.feature {
background: var(--color-accent-dim);
color: var(--color-accent);
}
.change-icon.fix {
background: var(--color-green-dim);
color: var(--color-green);
}
.change-icon.a11y {
background: var(--color-blue-dim);
color: var(--color-blue);
}
.change-icon.meta {
background: var(--color-amber-dim);
color: var(--color-amber);
}
.change-content {
flex: 1;
min-width: 0;
}
.change-title {
font-size: 14px;
font-weight: 600;
color: var(--color-text);
margin-bottom: 2px;
}
.change-desc {
font-size: 13px;
color: var(--color-text-secondary);
line-height: 1.5;
}
.cta-section {
margin-top: 36px;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 24px;
background: var(--bg-surface);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-md);
text-align: center;
}
.cta-section p {
font-size: 14px;
color: var(--color-text-secondary);
max-width: 400px;
line-height: 1.5;
}
.cta-buttons {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
.cta-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 22px;
border: none;
border-radius: var(--radius-md);
font-family: var(--font-sans);
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.2s ease, transform 60ms ease;
text-decoration: none;
}
.cta-btn:active {
transform: scale(0.97);
}
.cta-btn.primary {
background: var(--color-accent);
color: var(--bg-base);
}
.cta-btn.primary:hover {
background: var(--color-accent-hover);
}
.cta-btn.secondary {
background: var(--bg-elevated);
color: var(--color-text);
border: 1px solid var(--border-default);
}
.cta-btn.secondary:hover {
background: var(--bg-overlay);
}
.cta-btn svg {
flex-shrink: 0;
}
.footer {
margin-top: 24px;
text-align: center;
font-size: 11px;
color: var(--color-text-tertiary);
}
@media (prefers-color-scheme: light) {
:root {
--bg-base: #f8f6fb;
--bg-surface: #ffffff;
--bg-elevated: #f0edf5;
--bg-overlay: #e0dcea;
--color-text: #1a1525;
--color-text-secondary: #5c5470;
--color-text-tertiary: #8a819c;
--color-accent: #7c3aed;
--color-accent-hover: #6d28d9;
--color-accent-dim: rgba(124, 58, 237, 0.1);
--color-green: #059669;
--color-green-dim: rgba(5, 150, 105, 0.1);
--color-blue: #2563eb;
--color-blue-dim: rgba(37, 99, 235, 0.1);
--color-amber: #d97706;
--color-amber-dim: rgba(217, 119, 6, 0.1);
--border-subtle: rgba(0, 0, 0, 0.06);
--border-default: rgba(0, 0, 0, 0.12);
--border-accent: rgba(124, 58, 237, 0.25);
}
}
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; transition-duration: 1ms !important; }
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<svg width="40" height="40" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" fill="currentColor" opacity="0.9"/>
</svg>
<span class="header-text" data-i18n="changelogWhatsNew">What's New</span>
</div>
<div class="version-badge">
<span class="dot"></span>
<span class="version-label"></span>
</div>
<div class="section-label">What's new in 1.3.5</div>
<ul class="change-list">
<li class="change-item">
<div class="change-icon feature">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
</div>
<div class="change-content">
<div class="change-title">Default suspend timer is now 15 minutes (was 30)</div>
<div class="change-desc">After looking at what every other tab suspender does and what users actually complain about, 30 minutes turned out to be on the long end — most popular suspenders default to 10–20 min, and the biggest reason people uninstall a tab suspender is "I didn't notice any memory savings." 15 min is short enough that you'll see Drowzy doing its job within a normal browsing session, but long enough that you're unlikely to be coming back to a tab you were just using. Drowzy's existing protections (active tab, pinned, playing audio, unsaved forms, whitelist) keep the more aggressive timer safe. <strong>If you've already changed your timer, nothing happens to your setting</strong> — only fresh installs pick up the new default.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon fix">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
</div>
<div class="change-content">
<div class="change-title">"Suspend Others" no longer skips tabs with a countdown timer</div>
<div class="change-desc"><strong>Suspend Others</strong> was skipping any tab Chrome still flagged as <code>loading</code> — which on sites like Reddit, Twitter, or YouTube can be most of the time, thanks to background streams. The skip is now scoped to automatic timer-based suspends only; clicking the button (or hitting the shortcut) suspends every non-protected tab regardless.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon fix">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
</div>
<div class="change-content">
<div class="change-title">Welcome page no longer lies about your keyboard shortcuts</div>
<div class="change-desc">When Chrome can't auto-assign a suggested shortcut — because another extension or a system binding already claims the keys — the command stays unbound and shows up as "Not set" in <code>chrome://extensions/shortcuts</code>. The welcome page used to ignore that and confidently tell you to press the suggested shortcut anyway, even though nothing would happen. Now the list only shows shortcuts that actually work; unbound commands are hidden, and the existing <em>"Want different keyboard shortcuts? Customize them here →"</em> link below the list jumps straight to the Chrome shortcuts editor so you can set the missing ones yourself.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon fix">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
</div>
<div class="change-content">
<div class="change-title">"Close duplicates" can no longer close a live tab while keeping an empty one</div>
<div class="change-desc">When you had two copies of the same URL open and one of them had already been suspended into an empty shell, the duplicate-closer could decide to keep the empty shell and close the live tab — leaving you with the wrong one. The pick order now prefers a live (non-suspended) tab over a suspended one when neither copy is pinned or active.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M12 8v4"/><path d="M12 16h.01"/></svg>
</div>
<div class="change-content">
<div class="change-title">Share Stats now respects your language</div>
<div class="change-desc">The Share button in the Stats panel was copying its text in English no matter what language Drowzy was running in. The header, the bullet lines, and the "Using since …" footer now go through translation like the rest of the extension. (English fallback for any locale that hasn't translated the new strings yet.)</div>
</div>
</li>
<li class="change-item">
<div class="change-icon fix">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
</div>
<div class="change-content">
<div class="change-title">Whitelist toggle now works for localhost & IP-only URLs</div>
<div class="change-desc">If your current tab was <code>http://127.0.0.1:3000</code> or <code>http://[::1]</code>, clicking <em>"Never suspend this site"</em> did nothing — the popup quietly rejected anything that wasn't a normal domain or the literal string <code>localhost</code>. The toggle now accepts IPv4 addresses and the IPv6 loopback alongside regular domains, matching what the rest of the extension already allowed.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"/></svg>
</div>
<div class="change-content">
<div class="change-title">Clicking a sleeping tab in the popup now jumps to its window</div>
<div class="change-desc">If a tab you clicked in the popup lived in a Chrome window other than the one currently in front, Drowzy would activate the tab without bringing that window forward — so the tab was "selected" somewhere you couldn't see. The popup now also focuses the destination window so the click actually takes you there.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4"/><path d="M12 18v4"/><path d="m4.93 4.93 2.83 2.83"/><path d="m16.24 16.24 2.83 2.83"/><path d="M2 12h4"/><path d="M18 12h4"/><path d="m4.93 19.07 2.83-2.83"/><path d="m16.24 7.76 2.83-2.83"/></svg>
</div>
<div class="change-content">
<div class="change-title">Whole-gigabyte RAM values no longer render as "2.0 GB"</div>
<div class="change-desc">Stats now read "2 GB" instead of "2.0 GB" when the value is a clean gigabyte. Fractional values like "2.3 GB" are unchanged. Cosmetic — affects the stats strip, the lifetime card, suspend toasts, and the share text.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon a11y">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M8 14s1.5 2 4 2 4-2 4-2"/><line x1="9" x2="9.01" y1="9" y2="9"/><line x1="15" x2="15.01" y1="9" y2="9"/></svg>
</div>
<div class="change-content">
<div class="change-title">Per-tab suspend button is now properly labeled for screen readers</div>
<div class="change-desc">The small pause button on each tab row had a hover tooltip but no <code>aria-label</code>, so screen readers announced it as "button" with no purpose. It now reads as "Suspend this tab" — matching the visible tooltip.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon feature">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"/><circle cx="12" cy="12" r="3"/></svg>
</div>
<div class="change-content">
<div class="change-title">Settings now has a "Keyboard shortcuts" row</div>
<div class="change-desc">A new row in Settings shows the status of your shortcuts ("All set" or "1 of 3 set") and a <em>Customize →</em> link that opens Chrome's shortcuts editor in one click. The welcome page is only shown once, so this was the missing in-app path back to the editor for anyone who hit a key conflict. Heads up: Chrome doesn't let extensions set shortcuts for you — even though we'd love to. The editor is the only place that can.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>
</div>
<div class="change-content">
<div class="change-title">Default Windows shortcuts changed to less-conflicting keys</div>
<div class="change-desc">The Windows defaults for <em>Suspend current</em> and <em>Wake all</em> moved from <kbd>Alt+Shift+Z</kbd> / <kbd>Alt+Shift+W</kbd> to <kbd>Alt+Shift+P</kbd> / <kbd>Alt+Shift+O</kbd>. The old combos turned out to collide with Zoom (<kbd>Alt+Shift+Z</kbd> toggles video) and a handful of common extensions, leaving the commands unbound out of the box. <strong>Existing installs aren't affected</strong> — Chrome won't redo the auto-bind on update, so if your shortcuts already work, nothing changes. If you'd like to switch to the new defaults (or pick your own), use the new <em>Customize</em> link in Settings.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon fix">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
</div>
<div class="change-content">
<div class="change-title">Whitelist is easier to manage</div>
<div class="change-desc">Removing a site is now a clearly-labeled <em>Remove ×</em> pill instead of a tiny icon-only X that was easy to miss. Adding or removing a site shows a toast confirming what happened, and the section heading shows a count — <em>Whitelisted sites (5)</em> — so you can tell at a glance how many you have. Long subdomain names truncate cleanly so the remove button stays inside the row.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"/></svg>
</div>
<div class="change-content">
<div class="change-title">Two small icon swaps for clearer meaning</div>
<div class="change-desc">The <em>Whitelisted</em> badge on a tab now shows a shield (was a star) to match the rest of the whitelist UI — star reads as "bookmark", shield reads as "protected from suspension". The <em>Today</em> stat card swaps the moon for a calendar — moon's the right icon for sleeping tabs, but didn't connect for "today". Both are cosmetic; nothing functional changed.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"/></svg>
</div>
<div class="change-content">
<div class="change-title">Toolbar badge color matches the brand</div>
<div class="change-desc">The little number badge on the toolbar icon (it shows how many tabs are sleeping in the current window) was a slightly-off indigo. Now uses the same purple as the rest of Drowzy, with white text forced for contrast.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon meta">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12a9 9 0 1 1-6.219-8.56"/></svg>
</div>
<div class="change-content">
<div class="change-title">Welcome page CTA points you at a button that actually works instantly</div>
<div class="change-desc">The old "open a few tabs and try it out!" message was misleading at the new 15-minute default — opening tabs and waiting 15 minutes isn't really trying it. The page now tells you to open Drowzy from the toolbar and hit <em>Suspend Others</em> for an instant demo.</div>
</div>
</li>
<li class="change-item">
<div class="change-icon fix">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>
</div>
<div class="change-content">
<div class="change-title">Popup no longer shows a near-useless scrollbar</div>
<div class="change-desc">With three or more visible tabs, content sometimes nudged just past the popup's height and surfaced a ~20-pixel scroll range — visible scrollbar with almost nothing to scroll. The popup now uses a bit more vertical space (580px instead of 520) so that marginal case doesn't trigger.</div>
</div>
</li>
</ul>
<div class="cta-section">
<p data-i18n="changelogCtaText">Drowzy is free and open source. If it's saving you memory, consider leaving a quick review or starring us on GitHub.</p>
<div class="cta-buttons">
<a class="cta-btn primary" href="https://chromewebstore.google.com/detail/drowzy-tab-suspender-memo/oijfnkaakdamnijjgehjpfmclhigmapa/reviews" target="_blank" rel="noopener">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M7 10v12"/><path d="M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2h0a3.13 3.13 0 0 1 3 3.88Z"/></svg>
<span data-i18n="changelogReviewBtn">Leave a Review</span>
</a>
<a class="cta-btn secondary" href="https://github.com/ml3dev/drowzy" target="_blank" rel="noopener">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
<span data-i18n="changelogStarBtn">Star on GitHub</span>
</a>
</div>
</div>
<div class="footer"></div>
</div>
<script src="changelog.js"></script>
</body>
</html>