-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.js
More file actions
52 lines (51 loc) · 1.65 KB
/
Copy pathversion.js
File metadata and controls
52 lines (51 loc) · 1.65 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
// AAB VERSION: 9
const APP_VERSION = '1.4.0';
const CHANGELOG = [
{
version: '1.5.1',
date: '2026-07-14',
changes: ['Removed display name as a signup field entirely',
'Updated authentication flow to improve user experience',
'Performed a full security audit'
]
},
{
version: '1.4.1',
date: '2026-07-14',
changes: ['Improved app design and fixed functionality of the bottom navbar']
},
{
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 };