Skip to content

Commit 6d2e37d

Browse files
committed
🔖 Bumped 2.0.9 updated changelog
1 parent 6ed5cd5 commit 6d2e37d

File tree

3 files changed

+43
-5
lines changed

3 files changed

+43
-5
lines changed

.github/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## ✨ 2.0.9 Adds Multi-Page Support [PR #663](https://github.com/Lissy93/dashy/pull/663)
4+
- Fix KeyCloak API URL (#564)
5+
- Fix guest has config access (#590)
6+
- Fix collapsible content in multi-page support (#626)
7+
- Fix layout and item size buttons ( #629)
8+
- Refactor make request in RSS widget (#632)
9+
- Fix material-design-icons header in schema (#640)
10+
- Add option to hide seconds in clock widget (#644)
11+
- Fix pageInfo not being read in router (#645)
12+
- Fix startingView not honored (#646)
13+
- Fix Status Check default (#651)
14+
- Add option to hide image in SportsScores Widget (#654)
15+
- Add Adventure-basic theme (#655)
16+
- Write docs for sub-items (#657)
17+
- Add Font-Awesome displaying as square to troubleshooting guide (#659)
18+
- Show expand / collapse in context menu (#660)
19+
- Only deploy new release when relevant files have changed
20+
321
## ✨ 2.0.8 Adds Multi-Page Support [PR #617](https://github.com/Lissy93/dashy/pull/617)
422
- Adds support for multiple pages per-dashboard
523
- Adds new attribute at root of main config file: `pages`

.github/LATEST_CHANGELOG.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
## ✨ 2.0.8 Adds Multi-Page Support [PR #617](https://github.com/Lissy93/dashy/pull/617)
2-
- Adds support for multiple pages per-dashboard
3-
- Adds new attribute at root of main config file: `pages`
4-
- Updates router and nav-bar to automatically create paths for both local and remote configs
1+
## ✨ 2.0.9 Adds Multi-Page Support [PR #663](https://github.com/Lissy93/dashy/pull/663)
2+
- Fix KeyCloak API URL (#564)
3+
- Fix guest has config access (#590)
4+
- Fix collapsible content in multi-page support (#626)
5+
- Fix layout and item size buttons ( #629)
6+
- Refactor make request in RSS widget (#632)
7+
- Fix material-design-icons header in schema (#640)
8+
- Add option to hide seconds in clock widget (#644)
9+
- Fix pageInfo not being read in router (#645)
10+
- Fix startingView not honored (#646)
11+
- Fix Status Check default (#651)
12+
- Add option to hide image in SportsScores Widget (#654)
13+
- Add Adventure-basic theme (#655)
14+
- Write docs for sub-items (#657)
15+
- Add Font-Awesome displaying as square to troubleshooting guide (#659)
16+
- Show expand / collapse in context menu (#660)
17+
- Only deploy new release when relevant files have changed

package.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Dashy",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"license": "MIT",
55
"main": "server",
66
"author": "Alicia Sykes <[email protected]> (https://aliciasykes.com)",
@@ -47,6 +47,7 @@
4747
},
4848
"devDependencies": {
4949
"@architect/sandbox": "^4.5.2",
50+
"@babel/preset-env": "^7.17.10",
5051
"@vue/cli-plugin-babel": "^4.5.15",
5152
"@vue/cli-plugin-eslint": "^4.5.15",
5253
"@vue/cli-plugin-pwa": "^4.5.15",
@@ -87,6 +88,12 @@
8788
"parser": "babel-eslint"
8889
}
8990
},
91+
"babel": {
92+
"presets": [
93+
"@vue/app",
94+
"@babel/preset-env"
95+
]
96+
},
9097
"postcss": {
9198
"plugins": {
9299
"autoprefixer": {}

0 commit comments

Comments
 (0)