npease
4f7ab0318d
Add favicon
2023-09-19 03:34:50 +00:00
npease
6ea420e34e
Trailing Forward Slash? Fix jpeg
2023-09-19 03:30:46 +00:00
npease
a0fa2b5077
Icon Update
2023-09-19 03:27:30 +00:00
npease
ce25f55742
Merge branch 'main' of https://github.com/LAX18/cf-workers-status-page
2023-09-19 03:21:16 +00:00
npease
35e60cacc3
Add sonarr, fix plex
2023-09-19 03:20:53 +00:00
Nicholas Pease
966fe63acc
Update README.md
2023-09-18 23:18:43 -04:00
npease
e0a84b0909
Add Plex
2023-09-19 03:16:10 +00:00
npease
e23efaa876
Remove Plex
2023-09-05 05:36:21 +00:00
npease
67587753bd
Try Follow Redirect
2023-09-05 05:31:40 +00:00
npease
8c97966070
Add Plex
2023-09-05 05:27:34 +00:00
Nicholas Pease
8045ac5d61
Update index.js
2023-09-04 01:39:57 -04:00
Nicholas Pease
e6f13e2d21
Update wrangler.toml
2023-09-04 01:35:43 -04:00
Nicholas Pease
563b061b30
Update config.yaml
2023-09-04 01:29:38 -04:00
Nicholas Pease
dbc359cf78
Update config.yaml
2023-09-04 01:23:43 -04:00
Nicholas Pease
d8531a0fa2
Update wrangler.toml
2023-09-04 01:17:06 -04:00
Nicholas Pease
b4bc6e191c
Update config.yaml
2023-09-04 01:15:43 -04:00
Nicholas Pease
31d9528e7b
Update config.yaml
2023-09-04 01:14:29 -04:00
Vladimir Lazić
f5b49dcae7
Fixes recent deployment issues
2023-06-30 11:09:36 +01:00
dependabot[bot]
f419b8ad2b
chore(deps): bump nanoid from 3.1.23 to 3.3.4
...
Bumps [nanoid](https://github.com/ai/nanoid ) from 3.1.23 to 3.3.4.
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.1.23...3.3.4 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-08-24 10:51:37 +01:00
dependabot[bot]
8d704ef44c
chore(deps-dev): bump postcss from 8.2.10 to 8.2.13
...
Bumps [postcss](https://github.com/postcss/postcss ) from 8.2.10 to 8.2.13.
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.2.10...8.2.13 )
---
updated-dependencies:
- dependency-name: postcss
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-08-24 10:51:26 +01:00
dependabot[bot]
7f58e2673a
chore(deps): bump eventsource from 1.0.7 to 1.1.1
...
Bumps [eventsource](https://github.com/EventSource/eventsource ) from 1.0.7 to 1.1.1.
- [Release notes](https://github.com/EventSource/eventsource/releases )
- [Changelog](https://github.com/EventSource/eventsource/blob/master/HISTORY.md )
- [Commits](https://github.com/EventSource/eventsource/compare/v1.0.7...v1.1.1 )
---
updated-dependencies:
- dependency-name: eventsource
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-08-24 10:50:21 +01:00
corvofeng
7813ff93ac
Replace all '-' for monitor name.
...
Signed-off-by: corvofeng <corvofeng@gmail.com >
2022-02-15 22:08:15 +00:00
Chris Buckley
596d30389f
Increment failed checks at least once
...
Currently, a failure is only recorded if a monitor transitions from operational
to not in a given day. If the monitor is non-operational at the start of the day,
or remains non-operational for a full day, the failure will not be recorded.
2021-11-18 11:22:15 +00:00
Chris Buckley
1189e708da
Supply fallback text for Slack message
...
This is used as a plain-text summary of the attachment, e.g. in push notifications.
Docs: https://api.slack.com/reference/messaging/attachments#legacy_fields
2021-10-11 14:21:30 +01:00
rexhaugen
de0cfaf504
Update wrangler.toml
...
Add "compatibility_date" for Cloudflare to prevent jq json parse issues.
2021-10-11 14:20:37 +01:00
Chris Buckley
f0b27a8446
Add more data centre locations
...
The full list of locations was generated from the [Cloudflare Status Page](https://www.cloudflarestatus.com/ ):
```bash
{
echo 'export const locations = {';
curl -ks https://www.cloudflarestatus.com/ | grep -- '- (' | while read line; do
code=$(awk -F '[()]' '{print $2}' <<< "$line");
city=$(awk -F '[,-]' '{print $1}' <<< "$line");
echo " $code: '${city//\'/’}',";
done | sort;
echo '}';
} > src/functions/locations.js
```
2021-10-11 14:13:49 +01:00
dependabot[bot]
a8cfe25c9a
chore(deps): bump y18n from 4.0.0 to 4.0.3
...
Bumps [y18n](https://github.com/yargs/y18n ) from 4.0.0 to 4.0.3.
- [Release notes](https://github.com/yargs/y18n/releases )
- [Changelog](https://github.com/yargs/y18n/blob/y18n-v4.0.3/CHANGELOG.md )
- [Commits](https://github.com/yargs/y18n/compare/v4.0.0...y18n-v4.0.3 )
---
updated-dependencies:
- dependency-name: y18n
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-07-23 09:34:13 +02:00
dependabot[bot]
df64cdc113
chore(deps): bump color-string from 1.5.4 to 1.6.0
...
Bumps [color-string](https://github.com/Qix-/color-string ) from 1.5.4 to 1.6.0.
- [Release notes](https://github.com/Qix-/color-string/releases )
- [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Qix-/color-string/compare/1.5.4...1.6.0 )
---
updated-dependencies:
- dependency-name: color-string
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-07-23 09:34:07 +02:00
Marcello Bachechi
d87223f292
Added documentation
2021-07-23 09:19:34 +02:00
Marcello Bachechi
a5a65a7582
Updated config to reflect linkable option
2021-07-23 09:19:34 +02:00
Marcello Bachechi
23673587c2
Update monitorCard.js
2021-07-23 09:19:34 +02:00
Marcello Bachechi
fa9d865cc1
Added documentation on how to get running locally
2021-07-23 09:17:54 +02:00
dependabot[bot]
0fac88d7f8
chore(deps): bump ws from 6.2.1 to 6.2.2
...
Bumps [ws](https://github.com/websockets/ws ) from 6.2.1 to 6.2.2.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/6.2.1...6.2.2 )
---
updated-dependencies:
- dependency-name: ws
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:48:47 +02:00
dependabot[bot]
7a9a2f90ef
chore(deps-dev): bump postcss from 8.1.8 to 8.2.10
...
Bumps [postcss](https://github.com/postcss/postcss ) from 8.1.8 to 8.2.10.
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.1.8...8.2.10 )
---
updated-dependencies:
- dependency-name: postcss
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:48:39 +02:00
dependabot[bot]
c337b55c37
chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9
...
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info ) from 2.8.8 to 2.8.9.
- [Release notes](https://github.com/npm/hosted-git-info/releases )
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md )
- [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9 )
---
updated-dependencies:
- dependency-name: hosted-git-info
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:48:22 +02:00
dependabot[bot]
f0a4974e92
chore(deps): bump elliptic from 6.5.3 to 6.5.4
...
Bumps [elliptic](https://github.com/indutny/elliptic ) from 6.5.3 to 6.5.4.
- [Release notes](https://github.com/indutny/elliptic/releases )
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.3...v6.5.4 )
---
updated-dependencies:
- dependency-name: elliptic
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:48:17 +02:00
dependabot[bot]
cb15831994
chore(deps): bump browserslist from 4.14.7 to 4.16.6
...
Bumps [browserslist](https://github.com/browserslist/browserslist ) from 4.14.7 to 4.16.6.
- [Release notes](https://github.com/browserslist/browserslist/releases )
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md )
- [Commits](https://github.com/browserslist/browserslist/compare/4.14.7...4.16.6 )
---
updated-dependencies:
- dependency-name: browserslist
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:48:04 +02:00
dependabot[bot]
2868f9820c
chore(deps): bump lodash from 4.17.20 to 4.17.21
...
Bumps [lodash](https://github.com/lodash/lodash ) from 4.17.20 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases )
- [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21 )
---
updated-dependencies:
- dependency-name: lodash
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:47:49 +02:00
dependabot[bot]
48d78d117a
chore(deps): bump url-parse from 1.4.7 to 1.5.1
...
Bumps [url-parse](https://github.com/unshiftio/url-parse ) from 1.4.7 to 1.5.1.
- [Release notes](https://github.com/unshiftio/url-parse/releases )
- [Commits](https://github.com/unshiftio/url-parse/compare/1.4.7...1.5.1 )
---
updated-dependencies:
- dependency-name: url-parse
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:47:25 +02:00
dependabot[bot]
c7f642cd8c
chore(deps): bump dns-packet from 1.3.1 to 1.3.4
...
Bumps [dns-packet](https://github.com/mafintosh/dns-packet ) from 1.3.1 to 1.3.4.
- [Release notes](https://github.com/mafintosh/dns-packet/releases )
- [Changelog](https://github.com/mafintosh/dns-packet/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mafintosh/dns-packet/compare/v1.3.1...v1.3.4 )
---
updated-dependencies:
- dependency-name: dns-packet
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:47:16 +02:00
dependabot[bot]
54bdd42fc1
chore(deps): bump ssri from 6.0.1 to 6.0.2
...
Bumps [ssri](https://github.com/npm/ssri ) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/npm/ssri/releases )
- [Changelog](https://github.com/npm/ssri/blob/v6.0.2/CHANGELOG.md )
- [Commits](https://github.com/npm/ssri/compare/v6.0.1...v6.0.2 )
---
updated-dependencies:
- dependency-name: ssri
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2021-06-08 22:47:05 +02:00
Adam Janiš
bbf9def61f
Update README.md
2021-03-07 23:43:12 +01:00
Anthony Graignic
ccec34ff5d
Add Discord notification ( #35 )
...
add discord notification
2021-02-23 13:32:08 +01:00
endriu3314
ee586c9e64
Add focus ring and remove default focus outline
2021-01-29 18:33:26 +01:00
Adam Janiš
8d70a0f992
Create FUNDING.yml
2021-01-23 20:20:18 +01:00
Adam Janiš
6952ed2e8d
feat: show city also in header
v1.2.0
2021-01-19 00:32:31 +01:00
Adam Janiš
6d08f47d1d
feat: collect avg response time by default
2021-01-19 00:22:20 +01:00
Adam Janiš
1439b67c30
Merge pull request #22 from eidam/e/remove-flareact-patch
...
chore: remove custom patch in favor of flareact 0.10.0
2020-11-23 20:39:24 +01:00
Adam Janis
100473fc58
chore: remove custom patch in favor of flareact 0.10.0
2020-11-23 19:21:38 +01:00
Adam Janiš
7baab0475e
Merge pull request #21 from aexvir/aexvir/monitor-ui-links
...
chore: make monitor title link to the monitored url
2020-11-23 16:19:12 +01:00