ngx prep ⏭

This commit is contained in:
Jokob-sk
2024-03-24 10:38:02 +11:00
parent 7f3938715c
commit 046022e2ea
6 changed files with 8 additions and 3 deletions

View File

@@ -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

View File

@@ -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 }}

View File

@@ -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).
[![GitHub Committed](https://img.shields.io/github/last-commit/jokob-sk/Pi.Alert?color=40ba12&label=Committed&logo=GitHub&logoColor=fff)](https://github.com/jokob-sk/Pi.Alert) [![GitHub Committed](https://img.shields.io/github/last-commit/jokob-sk/Pi.Alert?color=40ba12&label=Committed&logo=GitHub&logoColor=fff)](https://github.com/jokob-sk/Pi.Alert)
[![Docker Size](https://img.shields.io/docker/image-size/jokobsk/pi.alert?label=Size&logo=Docker&color=0aa8d2&logoColor=fff)](https://hub.docker.com/r/jokobsk/pi.alert) [![Docker Size](https://img.shields.io/docker/image-size/jokobsk/pi.alert?label=Size&logo=Docker&color=0aa8d2&logoColor=fff)](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

View File

@@ -353,7 +353,7 @@ function getDevicesTotals(devicesData) {
setCache("getDevicesTotals", resultJSON); setCache("getDevicesTotals", resultJSON);
} }
console.log(resultJSON); // console.log(resultJSON);
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------

View File

@@ -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")

View File

@@ -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()
} }