mirror of
https://github.com/Lissy93/dashy.git
synced 2025-09-24 02:08:20 +02:00
Merge branch 'Lissy93:master' into master
This commit is contained in:
commit
042c5c091c
27
.github/workflows/add-comment-from-tag.yml
vendored
27
.github/workflows/add-comment-from-tag.yml
vendored
@ -1,27 +0,0 @@
|
|||||||
# Based on a label applied to an issue, the bot will add a comment with some additional info
|
|
||||||
name: 🎯 Auto-Reply to Labeled Tickets
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types:
|
|
||||||
- labeled
|
|
||||||
- unlabeled
|
|
||||||
pull_request_target:
|
|
||||||
types:
|
|
||||||
- labeled
|
|
||||||
- unlabeled
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
comment:
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Label Commenter
|
|
||||||
uses: peaceiris/actions-label-commenter@v1
|
|
||||||
with:
|
|
||||||
config_file: .github/issue-auto-comments.yml
|
|
||||||
github_token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
21
.github/workflows/close-incomplete-issues.yml
vendored
21
.github/workflows/close-incomplete-issues.yml
vendored
@ -1,21 +0,0 @@
|
|||||||
# Close any issue that does not match any of the issue templates
|
|
||||||
name: 🎯 Close Incomplete Issues
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened, edited]
|
|
||||||
jobs:
|
|
||||||
auto_close_issues:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
- name: Automatically close issues that don't follow the issue template
|
|
||||||
uses: lucasbento/auto-close-issues@v1.0.2
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
closed-issues-label: '🙁 Auto-Closed'
|
|
||||||
issue-close-message: |
|
|
||||||
Hello @${issue.user.login} 👋
|
|
||||||
Unfortunately your issue does not follow the format outlined in the template, and has therefore been auto-closed.
|
|
||||||
To ensure that all relevant info is included, please either update or recreate your issue, and complete the sub-headings provided.
|
|
||||||
Thank you :)
|
|
68
.github/workflows/generate-credits.yml
vendored
68
.github/workflows/generate-credits.yml
vendored
@ -1,68 +0,0 @@
|
|||||||
# Inserts list of contributors and community members into ./docs/credits.md
|
|
||||||
# Also generates an SVG showing all contributors, which is embedded into readme
|
|
||||||
name: 📊 Generate Contributor Credits
|
|
||||||
on:
|
|
||||||
workflow_dispatch: # Manual dispatch
|
|
||||||
schedule:
|
|
||||||
- cron: '0 1 * * 0' # At 01:00 on Sunday.
|
|
||||||
jobs:
|
|
||||||
# Job #1 - Generate an embedded SVG asset, showing all contributors
|
|
||||||
generate-contributors:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: bubkoo/contributors-list@v1
|
|
||||||
with:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
svgPath: docs/assets/CONTRIBUTORS.svg
|
|
||||||
affiliation: all
|
|
||||||
includeBots: false
|
|
||||||
excludeUsers: BeginCI snyk-bot
|
|
||||||
avatarSize: 96
|
|
||||||
userNameHeight: 20
|
|
||||||
svgWidth: 830
|
|
||||||
commitMessage: ':blue_heart: Updates contributor SVG'
|
|
||||||
# Job #2 - Fetches sponsors and inserts into readme and credits page
|
|
||||||
insert-sponsors:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout 🛎️
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Generate Sponsors in Readme 💖
|
|
||||||
uses: JamesIves/github-sponsors-readme-action@1.0.5
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
file: 'README.md'
|
|
||||||
- name: Generate Sponsors in Credits 💖
|
|
||||||
uses: JamesIves/github-sponsors-readme-action@1.0.5
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
file: 'docs/credits.md'
|
|
||||||
# Job #3 - Update the Credits page
|
|
||||||
insert-credits:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Inserts contributors into credits.md
|
|
||||||
steps:
|
|
||||||
- name: Contributer List - Credits Page
|
|
||||||
uses: akhilmhdh/contributors-readme-action@v2.3.6
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
image_size: 80
|
|
||||||
readme_path: docs/credits.md
|
|
||||||
columns_per_row: 6
|
|
||||||
commit_message: ':purple_heart: Updates contributors list'
|
|
||||||
collaborators: all
|
|
||||||
committer_username: liss-bot
|
|
||||||
committer_email: liss-bot@d0h.co
|
|
||||||
- name: Sponsors List - Readme
|
|
||||||
uses: akhilmhdh/contributors-readme-action@v2.2
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
image_size: 80
|
|
||||||
readme_path: README.md
|
|
||||||
columns_per_row: 6
|
|
||||||
commit_message: ':yellow_heart: Updates sponsors table'
|
|
||||||
committer_username: liss-bot
|
|
||||||
committer_email: liss-bot@d0h.co
|
|
||||||
|
|
17
.github/workflows/release-commenter.yml
vendored
17
.github/workflows/release-commenter.yml
vendored
@ -1,17 +0,0 @@
|
|||||||
# Adds a comment to all issues & PRs that were fixed on a new release
|
|
||||||
name: 💡 Update Issue after Release
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: apexskier/github-release-commenter@v1
|
|
||||||
with:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
||||||
label-template: 🛩️ Released {release_tag}
|
|
||||||
comment-template: |
|
|
||||||
**This has now been released in {release_name} ✨**
|
|
||||||
|
|
||||||
If you haven't done so already, please [update your instance](https://github.com/Lissy93/dashy/blob/master/docs/management.md#updating) to `{release_tag}` or later. See {release_link} for full info.
|
|
137
README.md
137
README.md
@ -524,142 +524,11 @@ Thank you so much to everyone who has helped with Dashy so far; every contributi
|
|||||||
#### Sponsors
|
#### Sponsors
|
||||||
|
|
||||||
Huge thanks to the sponsors helping to support Dashy's development!
|
Huge thanks to the sponsors helping to support Dashy's development!
|
||||||
<!-- readme: sponsors -start -->
|
|
||||||
<table>
|

|
||||||
<tr>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/vincentkoc">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/25068?u=fbd5b2d51142daa4bdbc21e21953a3b8b8188a4a&v=4" width="80;" alt="vincentkoc"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Vincent Koc</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/anivar">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/422943?u=cdf8a8b22ffbfc018b7dd9aae8220902394d01e7&v=4" width="80;" alt="anivar"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Anivar Aravind</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/BrianCurliss">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/1222949?v=4" width="80;" alt="BrianCurliss"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Brian Curliss</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/AnandChowdhary">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/2841780?u=747e554b3a7f12eb20b7910e1c87d817844f714f&v=4" width="80;" alt="AnandChowdhary"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Anand Chowdhary</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/bile0026">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/5022496?u=aec96ad173c0ea9baaba93807efa8a848af6595c&v=4" width="80;" alt="bile0026"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Zach Biles</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/UlisesGascon">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/5110813?u=3c41facd8aa26154b9451de237c34b0f78d672a5&v=4" width="80;" alt="UlisesGascon"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Ulises Gascón</b></sub>
|
|
||||||
</a>
|
|
||||||
</td></tr>
|
|
||||||
<tr>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/InDieTasten">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/7047377?u=8d8f8017628b38bc46dcbf3620e194b01d3fb2d1&v=4" width="80;" alt="InDieTasten"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>InDieTasten</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/araguaci">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/7318668?v=4" width="80;" alt="araguaci"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Araguaci</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/bmcgonag">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/7346620?u=2a0f9284f3e12ac1cc15288c254d1ec68a5081e8&v=4" width="80;" alt="bmcgonag"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Brian McGonagill</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/vlad-tim">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/11474041?u=eee43705b54d2ec9f51fc4fcce5ad18dd17c87e4&v=4" width="80;" alt="vlad-tim"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Vlad</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/helixzz">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/12218889?u=d06d0c103dfbdb99450623064f7da3c5a3675fb6&v=4" width="80;" alt="helixzz"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>HeliXZz</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/mryesiller">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/24632172?u=0d20f2d615158f87cd60a3398d3efb026c32f291&v=4" width="80;" alt="mryesiller"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Göksel Yeşiller</b></sub>
|
|
||||||
</a>
|
|
||||||
</td></tr>
|
|
||||||
<tr>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/undefined">
|
|
||||||
<img src="" width="80;" alt="undefined"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Undefined</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/OlliVHH">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/84959562?v=4" width="80;" alt="OlliVHH"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>HamburgerJung</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/frankdez93">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/87549420?v=4" width="80;" alt="frankdez93"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Frankdez93</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/hudsonrock-partnerships">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/163282900?u=5f2667f7fe5d284ac7a2da6b0800ea8970b0fcbf&v=4" width="80;" alt="hudsonrock-partnerships"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Hudsonrock-partnerships</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/gl0bal01">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/173822055?u=4d323807f120b34da9b156bfd168b46a22844764&v=4" width="80;" alt="gl0bal01"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>Gl0bal01 💖 龴ↀ◡ↀ龴</b></sub>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="center">
|
|
||||||
<a href="https://github.com/phishdestroy">
|
|
||||||
<img src="https://avatars.githubusercontent.com/u/208413058?u=d2a7f07fdebe6bdbde4b3141ca3ab958fbf0bae9&v=4" width="80;" alt="phishdestroy"/>
|
|
||||||
<br />
|
|
||||||
<sub><b>PhishDestroy</b></sub>
|
|
||||||
</a>
|
|
||||||
</td></tr>
|
|
||||||
</table>
|
|
||||||
<!-- readme: sponsors -end -->
|
|
||||||
|
|
||||||
#### Contributors
|
#### Contributors
|
||||||
[](./docs/credits.md)
|
[](./docs/credits.md)
|
||||||
|
|
||||||
#### Stats
|
#### Stats
|
||||||
[](https://github.com/Lissy93/dashy/blob/master/docs/credits.md)
|
[](https://github.com/Lissy93/dashy/blob/master/docs/credits.md)
|
||||||
|
@ -286,6 +286,7 @@ appConfig:
|
|||||||
clientId: [registered client id]
|
clientId: [registered client id]
|
||||||
endpoint: [OIDC endpoint]
|
endpoint: [OIDC endpoint]
|
||||||
scope: [The scope(s) to request from the OIDC provider]
|
scope: [The scope(s) to request from the OIDC provider]
|
||||||
|
adminGroup: admin
|
||||||
```
|
```
|
||||||
|
|
||||||
Because Dashy is a SPA, a [public client](https://datatracker.ietf.org/doc/html/rfc6749#section-2.1) registration with PKCE is needed.
|
Because Dashy is a SPA, a [public client](https://datatracker.ietf.org/doc/html/rfc6749#section-2.1) registration with PKCE is needed.
|
||||||
|
@ -204,6 +204,8 @@ For more info, see the **[Authentication Docs](/docs/authentication.md)**
|
|||||||
--- | --- | --- | ---
|
--- | --- | --- | ---
|
||||||
**`clientId`** | `string` | Required | The client id registered in the OIDC server
|
**`clientId`** | `string` | Required | The client id registered in the OIDC server
|
||||||
**`endpoint`** | `string` | Required | The URL of the OIDC server that should be used.
|
**`endpoint`** | `string` | Required | The URL of the OIDC server that should be used.
|
||||||
|
**`adminRole`** | `string` | _Optional_ | The role that will be considered as admin.
|
||||||
|
**`adminGroup`** | `string` | _Optional_ | The group that will be considered as admin.
|
||||||
**`scope`** | `string` | Required | The scope(s) to request from the OIDC provider
|
**`scope`** | `string` | Required | The scope(s) to request from the OIDC provider
|
||||||
|
|
||||||
**[⬆️ Back to Top](#configuring)**
|
**[⬆️ Back to Top](#configuring)**
|
||||||
|
1456
docs/credits.md
1456
docs/credits.md
File diff suppressed because it is too large
Load Diff
146
docs/widgets.md
146
docs/widgets.md
@ -115,7 +115,7 @@ Dashy has support for displaying dynamic content in the form of widgets. There a
|
|||||||
|
|
||||||
A simple, live-updating time and date widget with time-zone support. All fields are optional.
|
A simple, live-updating time and date widget with time-zone support. All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/vjb4RTv/clock.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/clock.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -148,7 +148,7 @@ _No external data requests._
|
|||||||
|
|
||||||
A simple, live-updating local weather component, showing temperature, conditions and more info.
|
A simple, live-updating local weather component, showing temperature, conditions and more info.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/r6MCfsL/weather.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/weather.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ A simple, live-updating local weather component, showing temperature, conditions
|
|||||||
|
|
||||||
Displays the weather (temperature and conditions) for the next few days for a given location. Note that this requires either the free [OpenWeatherMap Student Plan](https://home.openweathermap.org/students), or the Premium Plan.
|
Displays the weather (temperature and conditions) for the next few days for a given location. Note that this requires either the free [OpenWeatherMap Student Plan](https://home.openweathermap.org/students), or the Premium Plan.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/vshwgZB/weather-forecast.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/weather-forecast.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -221,7 +221,7 @@ Displays the weather (temperature and conditions) for the next few days for a gi
|
|||||||
|
|
||||||
Display news and updates from any RSS-enabled service.
|
Display news and updates from any RSS-enabled service.
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/N9mvLh4/rss-feed.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/rss.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -266,7 +266,7 @@ If you'd like to embed a live screenshot, of all or just part of a website, then
|
|||||||
|
|
||||||
Or what about showing a photo of the day? Try `https://source.unsplash.com/random/400x300` or `https://picsum.photos/400/300`
|
Or what about showing a photo of the day? Try `https://source.unsplash.com/random/400x300` or `https://picsum.photos/400/300`
|
||||||
|
|
||||||
<p align="center"><img width="300" src="https://i.ibb.co/P48Y443/image-widget.png" /></p>
|
<p align="center"><img width="300" src="https://storage.googleapis.com/as93-screenshots/dashy/image.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -294,7 +294,7 @@ Unless image fetched from remote source, no external data request is made.
|
|||||||
|
|
||||||
Often find yourself searching "What's my IP", just so you can check your VPN is still connected? This widget displays your public IP address, along with ISP name and approx location. Data can be fetched from either [IpApi.co](https://ipapi.co/), [IP-API.com](https://ip-api.com/), [IpGeolocation.io](https://ipgeolocation.io/) or [IP2Location.io](https://ip2location.io/).
|
Often find yourself searching "What's my IP", just so you can check your VPN is still connected? This widget displays your public IP address, along with ISP name and approx location. Data can be fetched from either [IpApi.co](https://ipapi.co/), [IP-API.com](https://ip-api.com/), [IpGeolocation.io](https://ipgeolocation.io/) or [IP2Location.io](https://ip2location.io/).
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/vc3c8zN/public-ip.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/public-ip.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -334,7 +334,7 @@ Or
|
|||||||
|
|
||||||
Notice certain web pages aren't loading? This widget quickly shows which blacklists your IP address (or host, or email) appears on, using data from [blacklistchecker.com](https://blacklistchecker.com/).
|
Notice certain web pages aren't loading? This widget quickly shows which blacklists your IP address (or host, or email) appears on, using data from [blacklistchecker.com](https://blacklistchecker.com/).
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/hX0fp5Z/ip-blacklist.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/ip-blacklist.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -366,7 +366,7 @@ Notice certain web pages aren't loading? This widget quickly shows which blackli
|
|||||||
|
|
||||||
Keep an eye on the expiry dates of your domain names, using public whois records fetched from [whoapi.com](https://whoapi.com/). Click the domain name to view additional info, like registrar, name servers and date last updated.
|
Keep an eye on the expiry dates of your domain names, using public whois records fetched from [whoapi.com](https://whoapi.com/). Click the domain name to view additional info, like registrar, name servers and date last updated.
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/7XjByG9/domain-monitor.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/domain-monitor.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -404,7 +404,7 @@ Keep an eye on the expiry dates of your domain names, using public whois records
|
|||||||
|
|
||||||
Keep track of price changes of your favorite crypto assets. Data is fetched from [CoinGecko](https://www.coingecko.com/). All fields are optional.
|
Keep track of price changes of your favorite crypto assets. Data is fetched from [CoinGecko](https://www.coingecko.com/). All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/WtS6jQ8/crypto-prices.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/crypto-prices.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -452,7 +452,7 @@ Or
|
|||||||
|
|
||||||
Shows recent price history for a given crypto asset, using price data fetched from [CoinGecko](https://www.coingecko.com/)
|
Shows recent price history for a given crypto asset, using price data fetched from [CoinGecko](https://www.coingecko.com/)
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/jr38m6S/crypto-price-history.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/crypto-price-history.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -487,7 +487,7 @@ Shows recent price history for a given crypto asset, using price data fetched fr
|
|||||||
|
|
||||||
Keep track of your crypto balances and see recent transactions. Data is fetched from [BlockCypher](https://www.blockcypher.com/dev/)
|
Keep track of your crypto balances and see recent transactions. Data is fetched from [BlockCypher](https://www.blockcypher.com/dev/)
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/27HG4nj/wallet-balances.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/crypto-wallet.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -520,7 +520,7 @@ Keep track of your crypto balances and see recent transactions. Data is fetched
|
|||||||
|
|
||||||
Display your coding summary. [Code::Stats](https://codestats.net/) is a free and open source app that aggregates statistics about your programming activity. Dashy supports both the public instance, as well as self-hosted versions.
|
Display your coding summary. [Code::Stats](https://codestats.net/) is a free and open source app that aggregates statistics about your programming activity. Dashy supports both the public instance, as well as self-hosted versions.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/dc0DTBW/code-stats.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/code-stats.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -556,7 +556,7 @@ Display your coding summary. [Code::Stats](https://codestats.net/) is a free and
|
|||||||
|
|
||||||
Shows your Mullvad VPN connection status, as well as server info. Fetched from [am.i.mullvad.net](https://mullvad.net/en/check/)
|
Shows your Mullvad VPN connection status, as well as server info. Fetched from [am.i.mullvad.net](https://mullvad.net/en/check/)
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/3BCb2YV/mullvad-check.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/mullvad.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -584,7 +584,7 @@ _No Options._
|
|||||||
|
|
||||||
This widget display email addresses / aliases from addy.io. Click an email address to copy to clipboard, or use the toggle switch to enable/ disable it. Shows usage stats (bandwidth, used aliases etc), as well as total messages received, blocked and sent. Works with both self-hosted and managed instances of addy.io.
|
This widget display email addresses / aliases from addy.io. Click an email address to copy to clipboard, or use the toggle switch to enable/ disable it. Shows usage stats (bandwidth, used aliases etc), as well as total messages received, blocked and sent. Works with both self-hosted and managed instances of addy.io.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/ZhfyRdV/anonaddy.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/addy.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -627,7 +627,7 @@ This widget display email addresses / aliases from addy.io. Click an email addre
|
|||||||
|
|
||||||
Keep track of recent security advisories and vulnerabilities, with optional filtering by score, exploits, vendor and product. All fields are optional.
|
Keep track of recent security advisories and vulnerabilities, with optional filtering by score, exploits, vendor and product. All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/DYJMpjp/vulnerability-feed.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/cve.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -672,7 +672,7 @@ or
|
|||||||
|
|
||||||
Display current FX rates in your native currency. Hover over a row to view more info, or click to show rates in that currency.
|
Display current FX rates in your native currency. Hover over a row to view more info, or click to show rates in that currency.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/fMdyLTB/exchange-rates.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/currencies.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -712,7 +712,7 @@ Counting down to the next day off work? This widget displays upcoming public hol
|
|||||||
|
|
||||||
Note, config for this widget is case-sensitive (see [#1268](https://github.com/Lissy93/dashy/issues/1268))
|
Note, config for this widget is case-sensitive (see [#1268](https://github.com/Lissy93/dashy/issues/1268))
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/VC6fZqn/public-holidays.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/holidays.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -750,7 +750,7 @@ Note, config for this widget is case-sensitive (see [#1268](https://github.com/L
|
|||||||
|
|
||||||
Keep track of the current COVID-19 status. Optionally also show cases by country, and a time-series chart. Uses live data from various sources, computed by [disease.sh](https://disease.sh/)
|
Keep track of the current COVID-19 status. Optionally also show cases by country, and a time-series chart. Uses live data from various sources, computed by [disease.sh](https://disease.sh/)
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/7XjbyRg/covid-19-status.png?" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/covid.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -797,7 +797,7 @@ Or
|
|||||||
|
|
||||||
Show recent scores and upcoming matches from your favorite sports team. Data is fetched from [TheSportsDB.com](https://www.thesportsdb.com/). From the UI, you can click any other team to view their scores and upcoming games, or click a league name to see all teams.
|
Show recent scores and upcoming matches from your favorite sports team. Data is fetched from [TheSportsDB.com](https://www.thesportsdb.com/). From the UI, you can click any other team to view their scores and upcoming games, or click a league name to see all teams.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/8XhXGkN/sports-scores.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/sports.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -832,7 +832,7 @@ Show recent scores and upcoming matches from your favorite sports team. Data is
|
|||||||
|
|
||||||
Displays the latest news, click to read full article. Date is fetched from various news sources using [Currents API](https://currentsapi.services/en)
|
Displays the latest news, click to read full article. Date is fetched from various news sources using [Currents API](https://currentsapi.services/en)
|
||||||
|
|
||||||
<p align="center"><img width="380" src="https://i.ibb.co/6NDWW0z/news-headlines.png" /></p>
|
<p align="center"><img width="380" src="https://storage.googleapis.com/as93-screenshots/dashy/news.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -869,7 +869,7 @@ Displays the latest news, click to read full article. Date is fetched from vario
|
|||||||
|
|
||||||
Shows real-time tube status of the London Underground. All fields are optional.
|
Shows real-time tube status of the London Underground. All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/LRDhXDn/tfl-status.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/tfl.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -910,7 +910,7 @@ Shows real-time tube status of the London Underground. All fields are optional.
|
|||||||
|
|
||||||
Shows recent price history for a given publicly-traded stock or share
|
Shows recent price history for a given publicly-traded stock or share
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/XZHRb4f/stock-price.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/stocks.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -945,7 +945,7 @@ Shows recent price history for a given publicly-traded stock or share
|
|||||||
|
|
||||||
Renders the current Gas cost of transactions on the Ethereum network (in both GWEI and USD), along with recent historical prices. Useful for spotting a good time to transact. Uses data from [ethgas.watch](https://ethgas.watch/)
|
Renders the current Gas cost of transactions on the Ethereum network (in both GWEI and USD), along with recent historical prices. Useful for spotting a good time to transact. Uses data from [ethgas.watch](https://ethgas.watch/)
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/LhHfQyp/eth-gas-prices.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/eth-gas.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -971,7 +971,7 @@ _No config options._
|
|||||||
|
|
||||||
Renders a programming or generic joke. Data is fetched from the [JokesAPI](https://github.com/Sv443/JokeAPI) by @Sv443. All fields are optional.
|
Renders a programming or generic joke. Data is fetched from the [JokesAPI](https://github.com/Sv443/JokeAPI) by @Sv443. All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/sQJGkyR/joke.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/joke.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1005,7 +1005,7 @@ Renders a programming or generic joke. Data is fetched from the [JokesAPI](https
|
|||||||
|
|
||||||
Have a laugh with the daily comic from [XKCD](https://xkcd.com/). A classic webcomic website covering everything from Linux, math, romance, science and language. All fields are optional.
|
Have a laugh with the daily comic from [XKCD](https://xkcd.com/). A classic webcomic website covering everything from Linux, math, romance, science and language. All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/kqV68hy/xkcd-comic.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/xkcd.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1034,7 +1034,7 @@ Have a laugh with the daily comic from [XKCD](https://xkcd.com/). A classic webc
|
|||||||
|
|
||||||
Displays airport departure and arrival flights, using data from [AeroDataBox](https://www.aerodatabox.com/). Useful if you live near an airport and often wonder where the flight overhead is going to. Hover over a row for more flight data.
|
Displays airport departure and arrival flights, using data from [AeroDataBox](https://www.aerodatabox.com/). Useful if you live near an airport and often wonder where the flight overhead is going to. Hover over a row for more flight data.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/yPMBJSY/flight-data.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/flights.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1070,7 +1070,7 @@ Displays airport departure and arrival flights, using data from [AeroDataBox](ht
|
|||||||
|
|
||||||
Show the NASA Astronomy Picture of the Day. Data is fetched from [APOD](https://apod.nasa.gov/apod/) using [@Lissy93/go-apod](https://github.com/lissy93/go-apod) / hosted at [apod.as93.net](https://apod.as93.net/).
|
Show the NASA Astronomy Picture of the Day. Data is fetched from [APOD](https://apod.nasa.gov/apod/) using [@Lissy93/go-apod](https://github.com/lissy93/go-apod) / hosted at [apod.as93.net](https://apod.as93.net/).
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/ZMkgLFK/apod.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/apod.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1096,7 +1096,7 @@ _No config options._
|
|||||||
|
|
||||||
Displays currently trending projects on GitHub. Optionally specify a language and time-frame. Data is fetched from [Lissy93/gh-trending-no-cors](https://github.com/Lissy93/gh-trending-no-cors) using the GitHub API. All fields are optional.
|
Displays currently trending projects on GitHub. Optionally specify a language and time-frame. Data is fetched from [Lissy93/gh-trending-no-cors](https://github.com/Lissy93/gh-trending-no-cors) using the GitHub API. All fields are optional.
|
||||||
|
|
||||||
<p align="center"><img width="380" src="https://i.ibb.co/BGy7Q3g/github-trending.png" /></p>
|
<p align="center"><img width="380" src="https://storage.googleapis.com/as93-screenshots/dashy/github-trending.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1129,7 +1129,7 @@ Displays currently trending projects on GitHub. Optionally specify a language an
|
|||||||
|
|
||||||
Display stats from your GitHub profile, using embedded cards from [anuraghazra/github-readme-stats](https://github.com/anuraghazra/github-readme-stats)
|
Display stats from your GitHub profile, using embedded cards from [anuraghazra/github-readme-stats](https://github.com/anuraghazra/github-readme-stats)
|
||||||
|
|
||||||
<p align="center"><img width="380" src="https://i.ibb.co/L0K1zNN/github-profile-stats.png" /></p>
|
<p align="center"><img width="380" src="https://storage.googleapis.com/as93-screenshots/dashy/github-stats.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1167,7 +1167,7 @@ Display stats from your GitHub profile, using embedded cards from [anuraghazra/g
|
|||||||
|
|
||||||
Display status of one or more HealthChecks project(s). Works with healthchecks.io and your selfhosted instance.
|
Display status of one or more HealthChecks project(s). Works with healthchecks.io and your selfhosted instance.
|
||||||
|
|
||||||
<p align="center"><img width="380" src="https://i.ibb.co/W5dP6VN/Bildschirm-foto-2023-01-07-um-11-07-11.png" /></p>
|
<p align="center"><img width="380" src="https://storage.googleapis.com/as93-screenshots/dashy/healthchecks.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1504,7 +1504,7 @@ This widget allows searching multiple search engines from dashy.
|
|||||||
|
|
||||||
Show an overview of how you have spent your time for the current day.
|
Show an overview of how you have spent your time for the current day.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/bvx3PQM/rescuetime.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/rescue-time.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1578,7 +1578,7 @@ Show minecraft server status
|
|||||||
_See [MVG Datenschutz](https://www.mvg.de/datenschutz-mvg.html)_
|
_See [MVG Datenschutz](https://www.mvg.de/datenschutz-mvg.html)_
|
||||||
Displays info about the server which Dashy is hosted on. Includes user + host, operating system, uptime and basic memory & load data.
|
Displays info about the server which Dashy is hosted on. Includes user + host, operating system, uptime and basic memory & load data.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/rvDPBDF/system-info.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/system-info.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1602,7 +1602,7 @@ Note that this widget is not available if you are running Dashy in a container o
|
|||||||
|
|
||||||
Cron job monitoring using [Health Checks](https://github.com/healthchecks/healthchecks). Both managed and self-hosted instances are supported.
|
Cron job monitoring using [Health Checks](https://github.com/healthchecks/healthchecks). Both managed and self-hosted instances are supported.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/Ptf2kwm/health-checks.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/cron-monitor.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1633,7 +1633,7 @@ Cron job monitoring using [Health Checks](https://github.com/healthchecks/health
|
|||||||
|
|
||||||
Pull recent CPU usage history from NetData.
|
Pull recent CPU usage history from NetData.
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/ZdyR5nJ/nd-cpu-history.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/cpu-history.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1697,7 +1697,7 @@ Pull recent system RAM usage from NetData, and show as a breakdown of different
|
|||||||
|
|
||||||
Pull recent load usage in 1, 5 and 15 minute intervals, from NetData.
|
Pull recent load usage in 1, 5 and 15 minute intervals, from NetData.
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/qR9C2tJ/nd-load-history.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/load-history.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1729,7 +1729,7 @@ Pull recent load usage in 1, 5 and 15 minute intervals, from NetData.
|
|||||||
|
|
||||||
Displays the number of queries blocked by [Pi-Hole](https://pi-hole.net/).
|
Displays the number of queries blocked by [Pi-Hole](https://pi-hole.net/).
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/zftCLJN/pi-hole-stats.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/pi-hole.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1821,7 +1821,7 @@ Displays the number of queries blocked by [Pi-Hole](https://pi-hole.net/). Use t
|
|||||||
|
|
||||||
Shows top queries that were blocked and allowed by [Pi-Hole](https://pi-hole.net/).
|
Shows top queries that were blocked and allowed by [Pi-Hole](https://pi-hole.net/).
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/pXR0bdQ/pi-hole-queries.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/pi-hole-queries.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1887,7 +1887,7 @@ Shows top queries that were blocked and allowed by [Pi-Hole](https://pi-hole.net
|
|||||||
|
|
||||||
Shows number of recent traffic, using allowed and blocked queries from [Pi-Hole](https://pi-hole.net/)
|
Shows number of recent traffic, using allowed and blocked queries from [Pi-Hole](https://pi-hole.net/)
|
||||||
|
|
||||||
<p align="center"><img width="500" src="https://i.ibb.co/7kdxxwx/pi-hole-recent-queries.png" /></p>
|
<p align="center"><img width="500" src="https://storage.googleapis.com/as93-screenshots/dashy/pi-hole-trafic.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1951,7 +1951,7 @@ Shows number of recent traffic, using allowed and blocked queries from [Pi-Hole]
|
|||||||
|
|
||||||
Displays the current and recent uptime of your running services, via a self-hosted instance of [StatPing](https://github.com/statping/statping)
|
Displays the current and recent uptime of your running services, via a self-hosted instance of [StatPing](https://github.com/statping/statping)
|
||||||
|
|
||||||
<p align="center"><img width="300" src="https://i.ibb.co/Fq7JDjQ/stat-ping.png" /></p>
|
<p align="center"><img width="300" src="https://storage.googleapis.com/as93-screenshots/dashy/statping.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -1999,7 +1999,7 @@ Note, the Group Id is not directly visible in StatPing UI, you can inspect the g
|
|||||||
|
|
||||||
Displays the current downloads/torrents tasks of your Synology NAS
|
Displays the current downloads/torrents tasks of your Synology NAS
|
||||||
|
|
||||||
<p align="center"><img width="500" src="https://i.ibb.co/N2kKWTN/image.png" /></p>
|
<p align="center"><img width="500" src="https://storage.googleapis.com/as93-screenshots/dashy/synology-downloads.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2036,7 +2036,7 @@ Displays the current downloads/torrents tasks of your Synology NAS
|
|||||||
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, and
|
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, and
|
||||||
displays total number of allowed and blocked queries, plus a pie chart showing breakdown by block type.
|
displays total number of allowed and blocked queries, plus a pie chart showing breakdown by block type.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/qgkcxsN/adguard-block-percent-2.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/adguard-stats.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2071,7 +2071,7 @@ displays total number of allowed and blocked queries, plus a pie chart showing b
|
|||||||
|
|
||||||
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, to display the current status of each of your filter lists. Includes filter name, last updated, number of items, and a link to the list.
|
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, to display the current status of each of your filter lists. Includes filter name, last updated, number of items, and a link to the list.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/WsJkf5g/adguard-filters-list.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/adguard-filters.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2108,7 +2108,7 @@ Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overvi
|
|||||||
|
|
||||||
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, and displays the current status (Enabled / Disabled) of AdGuard DNS. Click show more to view detailed info, including upstream DNS provider, active ports, and the status of DNSSEC, EDNS CS, PTR and IPv6.
|
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, and displays the current status (Enabled / Disabled) of AdGuard DNS. Click show more to view detailed info, including upstream DNS provider, active ports, and the status of DNSSEC, EDNS CS, PTR and IPv6.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/G0JngBb/adguard-dns-info.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/adguard-dns.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2145,7 +2145,7 @@ Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overvi
|
|||||||
|
|
||||||
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, and displays a list of the most queried, and most blocked domains.
|
Fetches data from your [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) instance, and displays a list of the most queried, and most blocked domains.
|
||||||
|
|
||||||
<p align="center"><img width="600" src="https://i.ibb.co/qRhYYTk/adguard-top-domains.png" /></p>
|
<p align="center"><img width="600" src="https://storage.googleapis.com/as93-screenshots/dashy/adguard-domains.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2190,7 +2190,7 @@ Shows quota usage when quota is enabled for the user or disk usage when not enab
|
|||||||
|
|
||||||
Known issues: the User API incorrectly reports available disk space as total for admin users when quota is not enabled (which usually is the case for admins).
|
Known issues: the User API incorrectly reports available disk space as total for admin users when quota is not enabled (which usually is the case for admins).
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/F8Fdm3t/nextcloud-user.png" alt="nextcloud-user" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/nextcloud-user.png" alt="nextcloud-user" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2225,7 +2225,7 @@ Known issues: the User API incorrectly reports available disk space as total for
|
|||||||
|
|
||||||
Show user statuses for selected users.
|
Show user statuses for selected users.
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/Lk4DFT5/nextcloud-userstatus.png" alt="nextcloud-userstatus" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/nextcloud-user-status.png" alt="nextcloud-userstatus" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2263,7 +2263,7 @@ Show user statuses for selected users.
|
|||||||
|
|
||||||
Displays your notifications and allows deleting them.
|
Displays your notifications and allows deleting them.
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/yQCS51k/nextcloud-notifications.png" alt="nextcloud-notifications" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/next-cloud-notifications.png" alt="nextcloud-notifications" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2300,7 +2300,7 @@ Displays your notifications and allows deleting them.
|
|||||||
|
|
||||||
Visualises overall memory utilisation and CPU load averages, shows server versions.
|
Visualises overall memory utilisation and CPU load averages, shows server versions.
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/KW4t6nG/nextcloud-system.png" alt="nextcloud-system" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/next-cloud-sysyem.png" alt="nextcloud-system" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2335,7 +2335,7 @@ Visualises overall memory utilisation and CPU load averages, shows server versio
|
|||||||
|
|
||||||
Shows key usage statistics about your Nextcloud server.
|
Shows key usage statistics about your Nextcloud server.
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/pPXPQFB/nextcloud-stats.png" alt="nextcloud-stats" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/nextcloud-stats.png" alt="nextcloud-stats" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2370,7 +2370,7 @@ Shows key usage statistics about your Nextcloud server.
|
|||||||
|
|
||||||
Shows statistics about PHP OPcache performance on your Nextcloud server.
|
Shows statistics about PHP OPcache performance on your Nextcloud server.
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/xf6M4J2/nextcloud-phpopcache.png" alt="nextcloud-phpopcache" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/nextcloud-php.png" alt="nextcloud-phpopcache" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2472,7 +2472,7 @@ This will show the list of VMs, with a title and a linked fotter, hiding VM temp
|
|||||||
|
|
||||||
Shows queue information regarding your self hosted Sabnzbd server.
|
Shows queue information regarding your self hosted Sabnzbd server.
|
||||||
|
|
||||||
<p align="center"><img width="450" src="https://i.ibb.co/5TTSRyM/sabnzbd.png" alt="Sabnzbd" /></p>
|
<p align="center"><img width="450" src="https://storage.googleapis.com/as93-screenshots/dashy/sabnzbd.png" alt="Sabnzbd" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2508,7 +2508,7 @@ Shows queue information regarding your self hosted Sabnzbd server.
|
|||||||
|
|
||||||
Display info from the Gluetun VPN container public IP API. This can show the IP and location data for the exit VPN node.
|
Display info from the Gluetun VPN container public IP API. This can show the IP and location data for the exit VPN node.
|
||||||
|
|
||||||
<p align="center"><img width="380" src="https://i.ibb.co/xjXbZ7Z/Screenshot-from-2022-07-20-21-42-34.png" /></p>
|
<p align="center"><img width="380" src="https://storage.googleapis.com/as93-screenshots/dashy/guletn-vpn.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2541,7 +2541,7 @@ Display info from the Gluetun VPN container public IP API. This can show the IP
|
|||||||
|
|
||||||
Display the last builds from a [Drone CI](https://www.drone.ci) instance. A self-hosted CI system that uses docker.
|
Display the last builds from a [Drone CI](https://www.drone.ci) instance. A self-hosted CI system that uses docker.
|
||||||
|
|
||||||
<p align="center"><img width="380" src="https://i.ibb.co/nQM3BXj/Bildschirm-foto-2023-01-07-um-01-31-45.png" /></p>
|
<p align="center"><img width="380" src="https://storage.googleapis.com/as93-screenshots/dashy/drone-ci.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2643,7 +2643,7 @@ Linkding is a self-hosted bookmarking service, which has a clean interface and i
|
|||||||
|
|
||||||
[Tactical RMM](https://github.com/amidaware/tacticalrmm) is a self-hosted remote monitoring & management tool.
|
[Tactical RMM](https://github.com/amidaware/tacticalrmm) is a self-hosted remote monitoring & management tool.
|
||||||
|
|
||||||
<p align="center"><a href="https://ibb.co/NVHWpD1"><img src="https://i.ibb.co/ng5Qfd3/Capture.png" alt="Capture" border="0"></a></p>
|
<p align="center"><a href="https://ibb.co/NVHWpD1"><img src="https://storage.googleapis.com/as93-screenshots/dashy/tactical-rmm.png" alt="Capture" border="0"></a></p>
|
||||||
|
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
@ -2729,7 +2729,7 @@ Note that if auth is configured, requests must be proxied with `useProxy: true`
|
|||||||
|
|
||||||
#### Screenshot
|
#### Screenshot
|
||||||
|
|
||||||
[](https://ibb.co/pR6dMZT)
|
[](https://ibb.co/pR6dMZT)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -2737,7 +2737,7 @@ Note that if auth is configured, requests must be proxied with `useProxy: true`
|
|||||||
|
|
||||||
Live-updating current CPU usage, as a combined average across all cores
|
Live-updating current CPU usage, as a combined average across all cores
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/qkLgxLp/gl-cpu-usage.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/current-cpu.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2753,7 +2753,7 @@ Live-updating current CPU usage, as a combined average across all cores
|
|||||||
|
|
||||||
Speedometer styled version of the Current CPU Usage widget
|
Speedometer styled version of the Current CPU Usage widget
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/7RHTRNq/gl-cpu-speedometer.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/current-cpu-speedometer.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2769,7 +2769,7 @@ Speedometer styled version of the Current CPU Usage widget
|
|||||||
|
|
||||||
Live-updating CPU usage breakdown per core
|
Live-updating CPU usage breakdown per core
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/512MYhT/gl-cpu-cores.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/cpu-per-core.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2785,7 +2785,7 @@ Live-updating CPU usage breakdown per core
|
|||||||
|
|
||||||
Recent CPU usage history, across all cores, and displayed by user and system
|
Recent CPU usage history, across all cores, and displayed by user and system
|
||||||
|
|
||||||
<p align="center"><img width="500" src="https://i.ibb.co/zs8BDzR/gl-cpu-history.png" /></p>
|
<p align="center"><img width="500" src="https://storage.googleapis.com/as93-screenshots/dashy/cpu-history-chart.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2808,7 +2808,7 @@ Recent CPU usage history, across all cores, and displayed by user and system
|
|||||||
|
|
||||||
Real-time memory usage gauge, with more info visible on click
|
Real-time memory usage gauge, with more info visible on click
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/rynp52J/gl-mem-usage.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/current-mem.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2824,7 +2824,7 @@ Real-time memory usage gauge, with more info visible on click
|
|||||||
|
|
||||||
Speedometer styled version of the Current Memory Usage widget
|
Speedometer styled version of the Current Memory Usage widget
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/wsNW7Xr/gl-mem-speedometer.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/current-mem-speedometer.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2840,7 +2840,7 @@ Speedometer styled version of the Current Memory Usage widget
|
|||||||
|
|
||||||
Recent memory usage chart
|
Recent memory usage chart
|
||||||
|
|
||||||
<p align="center"><img width="500" src="https://i.ibb.co/V3wSgW0/gl-mem-history.png" /></p>
|
<p align="center"><img width="500" src="https://storage.googleapis.com/as93-screenshots/dashy/mem-history-glances.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -2863,7 +2863,7 @@ Recent memory usage chart
|
|||||||
|
|
||||||
List connected disks, showing free / used space and other info (file system, mount point and space available)
|
List connected disks, showing free / used space and other info (file system, mount point and space available)
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/25y94bB/gl-disk-usage.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/diskspace-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2879,7 +2879,7 @@ List connected disks, showing free / used space and other info (file system, mou
|
|||||||
|
|
||||||
Shows real-time read and write speeds and operations per sec for each disk
|
Shows real-time read and write speeds and operations per sec for each disk
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/JdgjCjG/gl-disk-io.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/disk-io-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2895,7 +2895,7 @@ Shows real-time read and write speeds and operations per sec for each disk
|
|||||||
|
|
||||||
Shows the number of processes waiting in the run-queue, averaged across all cores. Displays for past 5, 10 and 15 minutes
|
Shows the number of processes waiting in the run-queue, averaged across all cores. Displays for past 5, 10 and 15 minutes
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/090FfNy/gl-system-load.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/system-load-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2911,7 +2911,7 @@ Shows the number of processes waiting in the run-queue, averaged across all core
|
|||||||
|
|
||||||
Shows recent historical system load, calculated from the number of processes waiting in the run-queue, in 1, 5 and 15 minute intervals, and averaged across all cores. Optionally specify `limit` to set number of results returned, defaults to `500`, max `100000`, but the higher the number the longer the load and render times will be.
|
Shows recent historical system load, calculated from the number of processes waiting in the run-queue, in 1, 5 and 15 minute intervals, and averaged across all cores. Optionally specify `limit` to set number of results returned, defaults to `500`, max `100000`, but the higher the number the longer the load and render times will be.
|
||||||
|
|
||||||
<p align="center"><img width="500" src="https://i.ibb.co/C2rGMLg/system-load-history.png" /></p>
|
<p align="center"><img width="500" src="https://storage.googleapis.com/as93-screenshots/dashy/system-load-history-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2927,7 +2927,7 @@ Shows recent historical system load, calculated from the number of processes wai
|
|||||||
|
|
||||||
Lists visible network interfaces, including real-time upload/ download stats
|
Lists visible network interfaces, including real-time upload/ download stats
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/FnhgHfG/gl-network-interfaces.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/network-interfaces-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2943,7 +2943,7 @@ Lists visible network interfaces, including real-time upload/ download stats
|
|||||||
|
|
||||||
Shows amount of data recently uploaded/ downloaded across all network interfaces. Optionally set the `limit` option to specify number historical of data points to return
|
Shows amount of data recently uploaded/ downloaded across all network interfaces. Optionally set the `limit` option to specify number historical of data points to return
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/12RN6KT/gl-network-traffic.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/network-traffic-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2976,7 +2976,7 @@ Lists recent high resource usage alerts (e.g. CPU, mem, IO, load, temp)
|
|||||||
|
|
||||||
Shows public and private IP address. Note that the ip plugin is not available on all instances of Glances.
|
Shows public and private IP address. Note that the ip plugin is not available on all instances of Glances.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/ZhXBxZr/gl-ip-address.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/ip-addresses-glances.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
@ -2995,7 +2995,7 @@ Displays temperature data from system CPUs.
|
|||||||
Note: This widget uses the [`sensors`](https://github.com/nicolargo/glances/blob/develop/glances/plugins/glances_sensors.py) plugin, which is disabled by default, and may cause [performance issues](https://github.com/nicolargo/glances/issues/1664#issuecomment-632063558).
|
Note: This widget uses the [`sensors`](https://github.com/nicolargo/glances/blob/develop/glances/plugins/glances_sensors.py) plugin, which is disabled by default, and may cause [performance issues](https://github.com/nicolargo/glances/issues/1664#issuecomment-632063558).
|
||||||
You'll need to enable the sensors plugin to use this widget, using: `--enable-plugin sensors` when you start Glances.
|
You'll need to enable the sensors plugin to use this widget, using: `--enable-plugin sensors` when you start Glances.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/xSs4Gqd/gl-cpu-temp.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/cpu-temp-glances.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -3020,7 +3020,7 @@ You'll need to enable the sensors plugin to use this widget, using: `--enable-pl
|
|||||||
|
|
||||||
Embed any webpage into your dashboard as a widget.
|
Embed any webpage into your dashboard as a widget.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/t4VHnh3/iframe-widget.gif" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/iframe.gif" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -3045,7 +3045,7 @@ Many websites and apps provide their own embeddable widgets. These can be used w
|
|||||||
|
|
||||||
⚠️ **NOTE:** Use with extreme caution. Embedding a script from an untrustworthy source may have serious unintended consequences.
|
⚠️ **NOTE:** Use with extreme caution. Embedding a script from an untrustworthy source may have serious unintended consequences.
|
||||||
|
|
||||||
<p align="center"><img width="400" src="https://i.ibb.co/fkwNnxT/embed-widget-2.png" /></p>
|
<p align="center"><img width="400" src="https://storage.googleapis.com/as93-screenshots/dashy/html-embed.png" /></p>
|
||||||
|
|
||||||
#### Options
|
#### Options
|
||||||
|
|
||||||
@ -3112,7 +3112,7 @@ Display data from any service with a Prometheus exporter.
|
|||||||
|
|
||||||
Show live data from an RSS-enabled service. The only required parameter is `rssUrl`, which is the URL to the ATOM feed. See [RSS Widget](#rss-feed) for full list of available options.
|
Show live data from an RSS-enabled service. The only required parameter is `rssUrl`, which is the URL to the ATOM feed. See [RSS Widget](#rss-feed) for full list of available options.
|
||||||
|
|
||||||
<p align="center"><img width="700" src="https://i.ibb.co/1r88pvL/rss-feed-example-1.png" /></p>
|
<p align="center"><img width="700" src="https://storage.googleapis.com/as93-screenshots/dashy/data-feed.png" /></p>
|
||||||
|
|
||||||
#### Example
|
#### Example
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"home": {
|
"home": {
|
||||||
"no-results": "Ingen søgeresultater",
|
"no-results": "Ingen søgeresultater",
|
||||||
"no-data": "Ingen data konfigureret",
|
"no-data": "Ingen data konfigureret",
|
||||||
"no-items-section": "Ingen genstander at vise endnu"
|
"no-items-section": "Ingen genstande at vise endnu"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"search-label": "Søg",
|
"search-label": "Søg",
|
||||||
@ -20,7 +20,7 @@
|
|||||||
"remember-me-hour": "4 timer",
|
"remember-me-hour": "4 timer",
|
||||||
"remember-me-day": "1 dag",
|
"remember-me-day": "1 dag",
|
||||||
"remember-me-week": "1 uge",
|
"remember-me-week": "1 uge",
|
||||||
"remember-me-long-time": "en lang tid",
|
"remember-me-long-time": "lang tid",
|
||||||
"error-missing-username": "Mangler brugernavn",
|
"error-missing-username": "Mangler brugernavn",
|
||||||
"error-missing-password": "Manglende adgangskode",
|
"error-missing-password": "Manglende adgangskode",
|
||||||
"error-incorrect-username": "Bruger ikke fundet",
|
"error-incorrect-username": "Bruger ikke fundet",
|
||||||
@ -54,7 +54,7 @@
|
|||||||
"reset-config-msg-l3": "Er du sikker på at du vil fortsætte?",
|
"reset-config-msg-l3": "Er du sikker på at du vil fortsætte?",
|
||||||
"data-cleared-msg": "Data blev succesfuldt ryddet",
|
"data-cleared-msg": "Data blev succesfuldt ryddet",
|
||||||
"actions-label": "Handlinger",
|
"actions-label": "Handlinger",
|
||||||
"copy-config-label": "Kopiera Config",
|
"copy-config-label": "Kopiere Config",
|
||||||
"data-copied-msg": "Konfigurationen er blevet kopieret til clipboard",
|
"data-copied-msg": "Konfigurationen er blevet kopieret til clipboard",
|
||||||
"reset-config-label": "Nulstil konfiguration",
|
"reset-config-label": "Nulstil konfiguration",
|
||||||
"css-save-btn": "Gem ændringer",
|
"css-save-btn": "Gem ændringer",
|
||||||
@ -95,7 +95,7 @@
|
|||||||
"language-switcher": {
|
"language-switcher": {
|
||||||
"title": "Skift applikationssprog",
|
"title": "Skift applikationssprog",
|
||||||
"dropdown-label": "Valg en sprog",
|
"dropdown-label": "Valg en sprog",
|
||||||
"save-button": "Gemme",
|
"save-button": "Gem",
|
||||||
"success-msg": "Sprog opdateret til"
|
"success-msg": "Sprog opdateret til"
|
||||||
},
|
},
|
||||||
"theme-maker": {
|
"theme-maker": {
|
||||||
@ -104,17 +104,17 @@
|
|||||||
"reset-button": "Nulstil styles for",
|
"reset-button": "Nulstil styles for",
|
||||||
"show-all-button": "Vis alle variabler",
|
"show-all-button": "Vis alle variabler",
|
||||||
"change-fonts-button": "Skift skrifttyper",
|
"change-fonts-button": "Skift skrifttyper",
|
||||||
"save-button": "Gemme",
|
"save-button": "Gem",
|
||||||
"cancel-button": "Ophæve",
|
"cancel-button": "Annuller",
|
||||||
"saved-toast": "{theme} opdateret med succes",
|
"saved-toast": "{theme} opdateret succesfuldt",
|
||||||
"copied-toast": "Temadata for {theme} kopieret til udklipsholder",
|
"copied-toast": "Temadata for {theme} kopieret til udklipsholder",
|
||||||
"reset-toast": "Tilpassede farver for {theme} fjernet"
|
"reset-toast": "Tilpassede farver for {theme} fjernet"
|
||||||
},
|
},
|
||||||
"config-editor": {
|
"config-editor": {
|
||||||
"save-location-label": "Gemme beliggenhed",
|
"save-location-label": "Lokation for gem",
|
||||||
"location-local-label": "Anbringe lokalt",
|
"location-local-label": "Gem lokalt",
|
||||||
"location-disk-label": "Skriv ændringer til konfigurationsfil",
|
"location-disk-label": "Skriv ændringer til konfigurationsfil",
|
||||||
"save-button": "Gemme ændringer",
|
"save-button": "Gem ændringer",
|
||||||
"preview-button": "Forhåndsvisning af ændringer",
|
"preview-button": "Forhåndsvisning af ændringer",
|
||||||
"valid-label": "Konfigurationen er gyldig",
|
"valid-label": "Konfigurationen er gyldig",
|
||||||
"status-success-msg": "Opgave fuldført",
|
"status-success-msg": "Opgave fuldført",
|
||||||
@ -155,7 +155,7 @@
|
|||||||
"password-label-update": "Skriv dit kodeord",
|
"password-label-update": "Skriv dit kodeord",
|
||||||
"backup-button-setup": "Sikkerhedskopiering",
|
"backup-button-setup": "Sikkerhedskopiering",
|
||||||
"backup-button-update": "Opdater sikkerhedskopiering",
|
"backup-button-update": "Opdater sikkerhedskopiering",
|
||||||
"backup-id-label": "Din sikkerhedskopi-ID",
|
"backup-id-label": "Dit sikkerhedskopi-ID",
|
||||||
"backup-id-note": "Dette bruges til at gendanne fra sikkerhedskopier senere. Så gem det sammen med din adgangskode et sikkert sted.",
|
"backup-id-note": "Dette bruges til at gendanne fra sikkerhedskopier senere. Så gem det sammen med din adgangskode et sikkert sted.",
|
||||||
"restore-title": "Gendan en sikkerhedskopi",
|
"restore-title": "Gendan en sikkerhedskopi",
|
||||||
"restore-id-label": "Gendan-ID",
|
"restore-id-label": "Gendan-ID",
|
||||||
@ -165,7 +165,7 @@
|
|||||||
"backup-error-unknown": "Kan ikke behandle anmodningen",
|
"backup-error-unknown": "Kan ikke behandle anmodningen",
|
||||||
"backup-error-password": "Forkert kodeord. Indtast venligst din nuværende adgangskode.",
|
"backup-error-password": "Forkert kodeord. Indtast venligst din nuværende adgangskode.",
|
||||||
"backup-success-msg": "Afsluttet med succes",
|
"backup-success-msg": "Afsluttet med succes",
|
||||||
"restore-success-msg": "Konfiguration gendan med succes"
|
"restore-success-msg": "Konfiguration gendannet med succes"
|
||||||
},
|
},
|
||||||
"menu": {
|
"menu": {
|
||||||
"open-section-title": "Åbn i",
|
"open-section-title": "Åbn i",
|
||||||
@ -174,9 +174,9 @@
|
|||||||
"modal": "Pop-Up Modal",
|
"modal": "Pop-Up Modal",
|
||||||
"workspace": "Arbejdsrumsvisning",
|
"workspace": "Arbejdsrumsvisning",
|
||||||
"options-section-title": "Muligheder",
|
"options-section-title": "Muligheder",
|
||||||
"edit-item": "Redigere",
|
"edit-item": "Rediger",
|
||||||
"move-item": "Kopier eller flyt",
|
"move-item": "Kopier eller flyt",
|
||||||
"remove-item": "Fjerne"
|
"remove-item": "Fjern"
|
||||||
},
|
},
|
||||||
"context-menus": {
|
"context-menus": {
|
||||||
"item": {
|
"item": {
|
||||||
@ -187,14 +187,14 @@
|
|||||||
"workspace": "Arbejdsrumsvisning",
|
"workspace": "Arbejdsrumsvisning",
|
||||||
"clipboard": "Kopier til udklipsholder",
|
"clipboard": "Kopier til udklipsholder",
|
||||||
"options-section-title": "Muligheder",
|
"options-section-title": "Muligheder",
|
||||||
"edit-item": "Redigere",
|
"edit-item": "Rediger",
|
||||||
"move-item": "Kopier eller flyt",
|
"move-item": "Kopier eller flyt",
|
||||||
"remove-item": "Fjerne",
|
"remove-item": "Fjerne",
|
||||||
"copied-toast": "URL er blevet kopieret til udklipsholder"
|
"copied-toast": "URL er blevet kopieret til udklipsholder"
|
||||||
},
|
},
|
||||||
"section": {
|
"section": {
|
||||||
"open-section": "Åbn sektion",
|
"open-section": "Åbn sektion",
|
||||||
"edit-section": "Redigere",
|
"edit-section": "Rediger",
|
||||||
"expand-collapse": "Udvid / Skjul",
|
"expand-collapse": "Udvid / Skjul",
|
||||||
"move-section": "Flytte til",
|
"move-section": "Flytte til",
|
||||||
"remove-section": "Fjerne"
|
"remove-section": "Fjerne"
|
||||||
@ -206,35 +206,35 @@
|
|||||||
"edit-site-data-subheading": "Rediger webstedsdata",
|
"edit-site-data-subheading": "Rediger webstedsdata",
|
||||||
"edit-page-info-btn": "Rediger sideoplysninger",
|
"edit-page-info-btn": "Rediger sideoplysninger",
|
||||||
"edit-page-info-tooltip": "Apptitel, beskrivelse, navigationslinks, sidefodstekst osv.",
|
"edit-page-info-tooltip": "Apptitel, beskrivelse, navigationslinks, sidefodstekst osv.",
|
||||||
"edit-app-config-btn": "Redigere appkonfiguration",
|
"edit-app-config-btn": "Rediger appkonfiguration",
|
||||||
"edit-app-config-tooltip": "Alle andre appkonfigurationsmuligheder",
|
"edit-app-config-tooltip": "Alle andre appkonfigurationsmuligheder",
|
||||||
"edit-pages-btn": "Redigere sider",
|
"edit-pages-btn": "Rediger sider",
|
||||||
"edit-pages-tooltip": "Tilføj eller fjern yderligere visninger",
|
"edit-pages-tooltip": "Tilføj eller fjern yderligere visninger",
|
||||||
"config-save-methods-subheading": "Indstillinger for lagring af konfiguration",
|
"config-save-methods-subheading": "Indstillinger for lagring af konfiguration",
|
||||||
"save-locally-btn": "Gemme lokalt",
|
"save-locally-btn": "Gem lokalt",
|
||||||
"save-locally-tooltip": "Gem konfigurationen lokalt i browserlageret. Dette vil ikke påvirke din konfigurationsfil, men ændringer vil kun blive gemt på denne enhed",
|
"save-locally-tooltip": "Gem konfigurationen lokalt i browserlageret. Dette vil ikke påvirke din konfigurationsfil, men ændringer vil kun blive gemt på denne enhed",
|
||||||
"save-disk-btn": "Gemme til disk",
|
"save-disk-btn": "Gem til disk",
|
||||||
"save-disk-tooltip": "Gem konfigurationen i filen conf.yml på disken. Dette vil sikkerhedskopiere og derefter overskrive din eksisterende konfiguration",
|
"save-disk-tooltip": "Gem konfigurationen i filen conf.yml på disken. Dette vil sikkerhedskopiere og derefter overskrive din eksisterende konfiguration",
|
||||||
"export-config-btn": "Exportere konfiguration",
|
"export-config-btn": "Exporter konfiguration",
|
||||||
"export-config-tooltip": "Se og eksporter ny konfiguration, enten til en fil eller til udklipsholder",
|
"export-config-tooltip": "Se og eksporter ny konfiguration, enten til en fil eller til udklipsholder",
|
||||||
"cloud-backup-btn": "Sikkerhedskopier til cloud",
|
"cloud-backup-btn": "Sikkerhedskopier til cloud",
|
||||||
"cloud-backup-tooltip": "Gem krypteret backup af konfiguration til cloud",
|
"cloud-backup-tooltip": "Gem krypteret backup af konfiguration til cloud",
|
||||||
"edit-raw-config-btn": "Rediger rå konfiguration",
|
"edit-raw-config-btn": "Rediger rå konfiguration",
|
||||||
"edit-raw-config-tooltip": "Se og rediger rå config via JSON-editor",
|
"edit-raw-config-tooltip": "Se og rediger rå config via JSON-editor",
|
||||||
"cancel-changes-btn": "Avbryd redigering",
|
"cancel-changes-btn": "Afbryd redigering",
|
||||||
"cancel-changes-tooltip": "Nulstil aktuelle ændringer, og afslut redigeringstilstand. Dette vil ikke påvirke din gemte konfiguration",
|
"cancel-changes-tooltip": "Nulstil aktuelle ændringer, og afslut redigeringstilstand. Dette vil ikke påvirke din gemte konfiguration",
|
||||||
"edit-mode-name": "Redigeringstilstand",
|
"edit-mode-name": "Redigeringstilstand",
|
||||||
"edit-mode-subtitle": "Du er i redigeringstilstand",
|
"edit-mode-subtitle": "Du er i redigeringstilstand",
|
||||||
"edit-mode-description": "Det betyder, at du kan foretage ændringer i din konfiguration og se resultaterne, men indtil du gemmer, vil ingen af dine ændringer blive bevaret.",
|
"edit-mode-description": "Det betyder, at du kan foretage ændringer i din konfiguration og se resultaterne, men indtil du gemmer, vil ingen af dine ændringer blive bevaret.",
|
||||||
"save-stage-btn": "Gemme",
|
"save-stage-btn": "Gem",
|
||||||
"cancel-stage-btn": "Avbryd",
|
"cancel-stage-btn": "Afbryd",
|
||||||
"save-locally-warning": "Hvis du fortsætter, vil ændringer kun blive gemt i din browser. Du bør eksportere en kopi af din konfiguration til brug på andre maskiner. Vil du fortsætte?"
|
"save-locally-warning": "Hvis du fortsætter, vil ændringer kun blive gemt i din browser. Du bør eksportere en kopi af din konfiguration til brug på andre maskiner. Vil du fortsætte?"
|
||||||
},
|
},
|
||||||
"edit-item": {
|
"edit-item": {
|
||||||
"missing-title-err": "En varetitel er påkrævet"
|
"missing-title-err": "En varetitel er påkrævet"
|
||||||
},
|
},
|
||||||
"edit-section": {
|
"edit-section": {
|
||||||
"edit-section-title": "Redigere sektion",
|
"edit-section-title": "Rediger sektion",
|
||||||
"add-section-title": "Tilføj ny sektion",
|
"add-section-title": "Tilføj ny sektion",
|
||||||
"edit-tooltip": "Klik for at redigere, eller højreklik for at få flere muligheder",
|
"edit-tooltip": "Klik for at redigere, eller højreklik for at få flere muligheder",
|
||||||
"remove-confirm": "Er du sikker på, at du vil fjerne denne sektion? Denne handling kan fortrydes senere."
|
"remove-confirm": "Er du sikker på, at du vil fjerne denne sektion? Denne handling kan fortrydes senere."
|
||||||
@ -273,11 +273,11 @@
|
|||||||
"cpu-chart-title": "CPU-historie",
|
"cpu-chart-title": "CPU-historie",
|
||||||
"mem-chart-title": "Hukommelsesbrug",
|
"mem-chart-title": "Hukommelsesbrug",
|
||||||
"mem-breakdown-title": "Hukommelsesnedbrydning",
|
"mem-breakdown-title": "Hukommelsesnedbrydning",
|
||||||
"load-chart-title": "Systeminlæsning"
|
"load-chart-title": "Systemindlæsning"
|
||||||
},
|
},
|
||||||
"glances": {
|
"glances": {
|
||||||
"disk-space-free": "Ledig",
|
"disk-space-free": "Ledig",
|
||||||
"disk-space-used": "I bruk",
|
"disk-space-used": "I brug",
|
||||||
"disk-mount-point": "Mount Point",
|
"disk-mount-point": "Mount Point",
|
||||||
"disk-file-system": "Filsystem",
|
"disk-file-system": "Filsystem",
|
||||||
"disk-io-read": "Læs",
|
"disk-io-read": "Læs",
|
||||||
@ -329,7 +329,7 @@
|
|||||||
"disk-space": "Diskudrymme",
|
"disk-space": "Diskudrymme",
|
||||||
"dnd": "Forstyr ikke",
|
"dnd": "Forstyr ikke",
|
||||||
"email": "email",
|
"email": "email",
|
||||||
"enabled": "aktivert",
|
"enabled": "aktiveret",
|
||||||
"federated-shares-ucfirst": "Fødereret deler",
|
"federated-shares-ucfirst": "Fødereret deler",
|
||||||
"federated-shares": "fødereret deler",
|
"federated-shares": "fødereret deler",
|
||||||
"files": "fil{plural}",
|
"files": "fil{plural}",
|
||||||
@ -363,7 +363,7 @@
|
|||||||
"other": "andet",
|
"other": "andet",
|
||||||
"overall": "Samlet set",
|
"overall": "Samlet set",
|
||||||
"private-link": "privat link",
|
"private-link": "privat link",
|
||||||
"public-link": "publik link",
|
"public-link": "offentlig link",
|
||||||
"quota-enabled": "Diskkvote er {not} aktiveret for denne bruger",
|
"quota-enabled": "Diskkvote er {not} aktiveret for denne bruger",
|
||||||
"received": "modtaget",
|
"received": "modtaget",
|
||||||
"scripts": "scripts",
|
"scripts": "scripts",
|
||||||
@ -371,7 +371,7 @@
|
|||||||
"started": "Startede",
|
"started": "Startede",
|
||||||
"storages-by-type": "Opbevaring efter type",
|
"storages-by-type": "Opbevaring efter type",
|
||||||
"storages": "Opbevaring{plural}",
|
"storages": "Opbevaring{plural}",
|
||||||
"strings-use": "strings brug",
|
"strings-use": "tråde brug",
|
||||||
"tasks": "Opgaver",
|
"tasks": "Opgaver",
|
||||||
"total-files": "samlede filer",
|
"total-files": "samlede filer",
|
||||||
"total-users": "samlede bruger",
|
"total-users": "samlede bruger",
|
||||||
@ -379,7 +379,7 @@
|
|||||||
"until": "Så længe",
|
"until": "Så længe",
|
||||||
"updates-available-for": "Opdateringer er tilgængelige for",
|
"updates-available-for": "Opdateringer er tilgængelige for",
|
||||||
"updates-available": "opdatering{plural} tilgængelig",
|
"updates-available": "opdatering{plural} tilgængelig",
|
||||||
"used": "brugd",
|
"used": "brugt",
|
||||||
"user": "bruger",
|
"user": "bruger",
|
||||||
"using": "ved brug af",
|
"using": "ved brug af",
|
||||||
"version": "version",
|
"version": "version",
|
||||||
|
@ -31,7 +31,19 @@ const getUsers = () => {
|
|||||||
return []; // Support for old data structure now removed
|
return []; // Support for old data structure now removed
|
||||||
}
|
}
|
||||||
// Otherwise, return the users array, if available
|
// Otherwise, return the users array, if available
|
||||||
return auth.users || [];
|
|
||||||
|
const users = auth.users || [];
|
||||||
|
if (isOidcEnabled()) {
|
||||||
|
if (localStorage[localStorageKeys.USERNAME]) {
|
||||||
|
const user = {
|
||||||
|
user: localStorage[localStorageKeys.USERNAME],
|
||||||
|
type: localStorage[localStorageKeys.ISADMIN] === 'true' ? 'admin' : 'normal',
|
||||||
|
};
|
||||||
|
users.push(user);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return users;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -80,6 +92,17 @@ export const makeBasicAuthHeaders = () => {
|
|||||||
export const isLoggedIn = () => {
|
export const isLoggedIn = () => {
|
||||||
const users = getUsers();
|
const users = getUsers();
|
||||||
const cookieToken = getCookieToken();
|
const cookieToken = getCookieToken();
|
||||||
|
|
||||||
|
if (isOidcEnabled()) {
|
||||||
|
const username = localStorage[localStorageKeys.USERNAME]; // Get username
|
||||||
|
if (!username) return false; // No username
|
||||||
|
return users.some((user) => {
|
||||||
|
if (user.user === username || generateUserToken(user) === cookieToken) {
|
||||||
|
return true;
|
||||||
|
} else return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return users.some((user) => {
|
return users.some((user) => {
|
||||||
if (generateUserToken(user) === cookieToken) {
|
if (generateUserToken(user) === cookieToken) {
|
||||||
localStorage.setItem(localStorageKeys.USERNAME, user.user);
|
localStorage.setItem(localStorageKeys.USERNAME, user.user);
|
||||||
|
@ -566,6 +566,18 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "ClientId from OIDC provider"
|
"description": "ClientId from OIDC provider"
|
||||||
},
|
},
|
||||||
|
"adminRole" : {
|
||||||
|
"title": "Admin Role",
|
||||||
|
"type": "string",
|
||||||
|
"default": false,
|
||||||
|
"description": "The role that will be considered as admin. If not set, no roles will be considered as admin"
|
||||||
|
},
|
||||||
|
"adminGroup" : {
|
||||||
|
"title": "Admin Group",
|
||||||
|
"type": "string",
|
||||||
|
"default": false,
|
||||||
|
"description": "The group that will be considered as admin. If not set, no groups will be considered as admin"
|
||||||
|
},
|
||||||
"scope" : {
|
"scope" : {
|
||||||
"title": "OIDC Scope",
|
"title": "OIDC Scope",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -13,7 +13,13 @@ const getAppConfig = () => {
|
|||||||
class OidcAuth {
|
class OidcAuth {
|
||||||
constructor() {
|
constructor() {
|
||||||
const { auth } = getAppConfig();
|
const { auth } = getAppConfig();
|
||||||
const { clientId, endpoint, scope } = auth.oidc;
|
const {
|
||||||
|
clientId,
|
||||||
|
endpoint,
|
||||||
|
scope,
|
||||||
|
adminGroup,
|
||||||
|
adminRole,
|
||||||
|
} = auth.oidc;
|
||||||
const settings = {
|
const settings = {
|
||||||
userStore: new WebStorageStateStore({ store: window.localStorage }),
|
userStore: new WebStorageStateStore({ store: window.localStorage }),
|
||||||
authority: endpoint,
|
authority: endpoint,
|
||||||
@ -25,6 +31,8 @@ class OidcAuth {
|
|||||||
filterProtocolClaims: true,
|
filterProtocolClaims: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.adminGroup = adminGroup;
|
||||||
|
this.adminRole = adminRole;
|
||||||
this.userManager = new UserManager(settings);
|
this.userManager = new UserManager(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,22 +51,27 @@ class OidcAuth {
|
|||||||
if (user === null) {
|
if (user === null) {
|
||||||
await this.userManager.signinRedirect();
|
await this.userManager.signinRedirect();
|
||||||
} else {
|
} else {
|
||||||
const { roles, groups } = user.profile;
|
const { roles = [], groups = [] } = user.profile;
|
||||||
const info = {
|
const info = {
|
||||||
groups,
|
groups,
|
||||||
roles,
|
roles,
|
||||||
};
|
};
|
||||||
|
const isAdmin = (Array.isArray(groups) && groups.includes(this.adminGroup))
|
||||||
|
|| (Array.isArray(roles) && roles.includes(this.adminRole))
|
||||||
|
|| false;
|
||||||
|
|
||||||
statusMsg(`user: ${user.profile.preferred_username}`, JSON.stringify(info));
|
statusMsg(`user: ${user.profile.preferred_username} admin: ${isAdmin}`, JSON.stringify(info));
|
||||||
|
|
||||||
localStorage.setItem(localStorageKeys.KEYCLOAK_INFO, JSON.stringify(info));
|
localStorage.setItem(localStorageKeys.KEYCLOAK_INFO, JSON.stringify(info));
|
||||||
localStorage.setItem(localStorageKeys.USERNAME, user.profile.preferred_username);
|
localStorage.setItem(localStorageKeys.USERNAME, user.profile.preferred_username);
|
||||||
|
localStorage.setItem(localStorageKeys.ISADMIN, isAdmin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async logout() {
|
async logout() {
|
||||||
localStorage.removeItem(localStorageKeys.USERNAME);
|
localStorage.removeItem(localStorageKeys.USERNAME);
|
||||||
localStorage.removeItem(localStorageKeys.KEYCLOAK_INFO);
|
localStorage.removeItem(localStorageKeys.KEYCLOAK_INFO);
|
||||||
|
localStorage.removeItem(localStorageKeys.ISADMIN);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.userManager.signoutRedirect();
|
await this.userManager.signoutRedirect();
|
||||||
|
@ -137,6 +137,7 @@ module.exports = {
|
|||||||
MOST_USED: 'mostUsed',
|
MOST_USED: 'mostUsed',
|
||||||
LAST_USED: 'lastUsed',
|
LAST_USED: 'lastUsed',
|
||||||
KEYCLOAK_INFO: 'keycloakInfo',
|
KEYCLOAK_INFO: 'keycloakInfo',
|
||||||
|
ISADMIN: 'isAdmin',
|
||||||
DISABLE_CRITICAL_WARNING: 'disableCriticalWarning',
|
DISABLE_CRITICAL_WARNING: 'disableCriticalWarning',
|
||||||
},
|
},
|
||||||
/* Key names for cookie identifiers */
|
/* Key names for cookie identifiers */
|
||||||
@ -336,6 +337,18 @@ module.exports = {
|
|||||||
/^manifest.*\.js$/, // default value
|
/^manifest.*\.js$/, // default value
|
||||||
/\.nojekyll$/,
|
/\.nojekyll$/,
|
||||||
/\.gitignore$/,
|
/\.gitignore$/,
|
||||||
|
/conf\.yml$/, // ignore config for runtimeCaching
|
||||||
|
],
|
||||||
|
// https://developer.chrome.com/docs/workbox/modules/workbox-build#type-RuntimeCaching
|
||||||
|
runtimeCaching: [
|
||||||
|
{
|
||||||
|
urlPattern: /conf\.yml$/,
|
||||||
|
handler: 'NetworkFirst',
|
||||||
|
options: {
|
||||||
|
cacheName: 'config-cache',
|
||||||
|
networkTimeoutSeconds: 3,
|
||||||
|
},
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user