-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.js
More file actions
39 lines (38 loc) · 1.24 KB
/
Copy pathversion.js
File metadata and controls
39 lines (38 loc) · 1.24 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
// AAB VERSION: 9
const APP_VERSION = '1.4.0';
const CHANGELOG = [
{
version: '1.4.0',
date: '2026-06-06',
changes: ['Fixed up the main screen, updating the logo icon and removing repeated links that are accessible from settings menu']
},
{
version: '1.3.0',
date: '2026-05-30',
changes: ['Updated the UI, adding a bottom navbar for game, history, and settings.']
},
{
version: '1.2.0',
date: '2026-05-17',
changes: [
'Added a help section, displaying account deletion option, version number, and changelog'
]
},
{
version: '1.1.0',
date: '2026-05-07',
changes: [
'Added account deletion url, updated privacy policy, improved overall app appearance',
'Made game saving optional: requires a button'
]
},
{
version: '1.0.0',
date: '2026-04-21',
changes: [
'Created basic app functionality with timer, goals, cards',
'Features: add/subtract time during game, per-half timer, functioning timer on phone close, notes field, login option to save games with history screen'
],
},
];
window.RefClockVersion = { APP_VERSION, CHANGELOG };