-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.js
64 lines (64 loc) · 2.06 KB
/
release.js
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
const releases = [
{
version: "1.0.1",
date: "2021 / 09 / 08",
notes: [
"Fixed an issue with Chrome's update (v92) limiting the number of screenshots taken to 2 per second"
],
},
{
version: "1.0",
date: "2021 / 07 / 02",
notes: [
"Official release to the Chrome Web Store",
"Added an option to upload images to the cloud",
"Added an option to generate a PDF file instead of ZIP",
"Added an option to remember Home tab parameters",
"Moved the preset zoom controls to a new option tab",
"Made some adjustments to the UI",
"More fixes and tweaks",
],
},
{
version: "0.4",
date: "2021 / 06 / 21",
notes: [
"Added an option to adjust the zoom level for each preset",
"Fixed a bug with the screenshot hotkey",
"Made some changes to the UI",
"Fixed a bug where the zoom doesn't sync with the preset configuration",
"Added an option to drag and reorder presets",
"Removed unnecessary permissions",
],
},
{
version: "0.3",
date: "2021 / 06 / 18",
notes: [
"Added several new options: capture delay, default format, image quality",
"Added an option to change the default zip file name",
"Added an option to prompt a \"save as\" dialog",
"Added an option to restore the default presets",
"Introduced custom hotkeys",
"Made a release notes and credits page",
],
},
{
version: "0.2",
date: "2021 / 06 / 15",
notes: [
"Added preset controls",
"Fixed the form inputs",
"More styling and UI improvement",
"Added an options page",
"Prevented the user from adding an empty preset",
],
},
{
version: "0.1",
date: "2021 / 06 / 13",
notes: [
"First release of Multishot",
],
}
]