ngx prep ⏭
This commit is contained in:
2
.github/workflows/docker_dev.yml
vendored
2
.github/workflows/docker_dev.yml
vendored
@@ -49,6 +49,8 @@ jobs:
|
|||||||
# list of Docker images to use as base name for tags
|
# list of Docker images to use as base name for tags
|
||||||
images: |
|
images: |
|
||||||
jokobsk/pi.alert_dev
|
jokobsk/pi.alert_dev
|
||||||
|
jokobsk/pialert_ngx-dev
|
||||||
|
jokobsk/pialert_ngx
|
||||||
# generate Docker tags based on the following events/attributes
|
# generate Docker tags based on the following events/attributes
|
||||||
tags: |
|
tags: |
|
||||||
type=raw,value=latest
|
type=raw,value=latest
|
||||||
|
|||||||
1
.github/workflows/docker_prod.yml
vendored
1
.github/workflows/docker_prod.yml
vendored
@@ -49,6 +49,7 @@ jobs:
|
|||||||
# list of Docker images to use as base name for tags
|
# list of Docker images to use as base name for tags
|
||||||
images: |
|
images: |
|
||||||
jokobsk/pi.alert
|
jokobsk/pi.alert
|
||||||
|
jokobsk/pialert_ngx
|
||||||
# generate Docker tags based on the following events/attributes
|
# generate Docker tags based on the following events/attributes
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}},value=${{ inputs.version }}
|
type=semver,pattern={{version}},value=${{ inputs.version }}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# 💻🔍 Network security scanner & notification framework
|
# 💻🔍 Network security scanner & notification framework
|
||||||
|
|
||||||
Get visibility of what's going on on your WIFI/LAN network. Schedule scans for devices, port changes and get alerts if unknown devices or changes are found. Write your own [Plugins](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins#readme) with auto-generated UI and in-build notification system.
|
Get visibility of what's going on on your WIFI/LAN network. Schedule scans for devices, port changes and get alerts if unknown devices or changes are found. Write your own [Plugins](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins#readme) with auto-generated UI and in-build notification system. Build out and easily maintain your network source of truth (NSoT).
|
||||||
|
|
||||||
[](https://github.com/jokob-sk/Pi.Alert)
|
[](https://github.com/jokob-sk/Pi.Alert)
|
||||||
[](https://hub.docker.com/r/jokobsk/pi.alert)
|
[](https://hub.docker.com/r/jokobsk/pi.alert)
|
||||||
@@ -68,6 +68,7 @@ Get visibility of what's going on on your WIFI/LAN network. Schedule scans for d
|
|||||||
> - Check instructions for [pucherot's original code](https://github.com/pucherot/Pi.Alert/) (unmaintained)
|
> - Check instructions for [pucherot's original code](https://github.com/pucherot/Pi.Alert/) (unmaintained)
|
||||||
> - [WatchYourLAN](https://github.com/aceberg/WatchYourLAN) - Lightweight network IP scanner with web GUI (Open source)
|
> - [WatchYourLAN](https://github.com/aceberg/WatchYourLAN) - Lightweight network IP scanner with web GUI (Open source)
|
||||||
> - [Fing](https://www.fing.com/) - Network scanner app for your Internet security (Commercial, Phone App, Proprietary hardware)
|
> - [Fing](https://www.fing.com/) - Network scanner app for your Internet security (Commercial, Phone App, Proprietary hardware)
|
||||||
|
> - [NetBox](https://netboxlabs.com/) - Network management software (Commercial)
|
||||||
|
|
||||||
### ⭐ Sponsors
|
### ⭐ Sponsors
|
||||||
|
|
||||||
|
|||||||
@@ -353,7 +353,7 @@ function getDevicesTotals(devicesData) {
|
|||||||
setCache("getDevicesTotals", resultJSON);
|
setCache("getDevicesTotals", resultJSON);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(resultJSON);
|
// console.log(resultJSON);
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ function versionUpdateUI(){
|
|||||||
|
|
||||||
isNewVersion = getCookie("isNewVersion")
|
isNewVersion = getCookie("isNewVersion")
|
||||||
|
|
||||||
console.log(isNewVersion)
|
// console.log(isNewVersion)
|
||||||
|
|
||||||
// if the release_timestamp is older by 10 min or more as the build timestamp then there is a new release available
|
// if the release_timestamp is older by 10 min or more as the build timestamp then there is a new release available
|
||||||
if(isNewVersion != "false")
|
if(isNewVersion != "false")
|
||||||
|
|||||||
@@ -1095,6 +1095,7 @@ var sessionStorageKey = "myScriptExecuted_pialert_common";
|
|||||||
// Clearing all the caches
|
// Clearing all the caches
|
||||||
function clearCache()
|
function clearCache()
|
||||||
{
|
{
|
||||||
|
showSpinner()
|
||||||
resetInitializedFlag()
|
resetInitializedFlag()
|
||||||
window.location.reload()
|
window.location.reload()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user