diff --git a/.github/workflows/docker_dev.yml b/.github/workflows/docker_dev.yml index ca163737..07f73df9 100755 --- a/.github/workflows/docker_dev.yml +++ b/.github/workflows/docker_dev.yml @@ -49,6 +49,8 @@ jobs: # list of Docker images to use as base name for tags images: | jokobsk/pi.alert_dev + jokobsk/pialert_ngx-dev + jokobsk/pialert_ngx # generate Docker tags based on the following events/attributes tags: | type=raw,value=latest diff --git a/.github/workflows/docker_prod.yml b/.github/workflows/docker_prod.yml index cdad6b35..02ba9bb4 100755 --- a/.github/workflows/docker_prod.yml +++ b/.github/workflows/docker_prod.yml @@ -49,6 +49,7 @@ jobs: # list of Docker images to use as base name for tags images: | jokobsk/pi.alert + jokobsk/pialert_ngx # generate Docker tags based on the following events/attributes tags: | type=semver,pattern={{version}},value=${{ inputs.version }} diff --git a/README.md b/README.md index 1e0ebab8..22f0a454 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 💻🔍 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) [![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) > - [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) +> - [NetBox](https://netboxlabs.com/) - Network management software (Commercial) ### ⭐ Sponsors diff --git a/front/devices.php b/front/devices.php index 1ce86e41..017a4450 100755 --- a/front/devices.php +++ b/front/devices.php @@ -353,7 +353,7 @@ function getDevicesTotals(devicesData) { setCache("getDevicesTotals", resultJSON); } - console.log(resultJSON); + // console.log(resultJSON); } // ----------------------------------------------------------------------------- diff --git a/front/js/handle_version.js b/front/js/handle_version.js index 5073c7f4..fc4166cf 100755 --- a/front/js/handle_version.js +++ b/front/js/handle_version.js @@ -4,7 +4,7 @@ function versionUpdateUI(){ 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(isNewVersion != "false") diff --git a/front/js/pialert_common.js b/front/js/pialert_common.js index 9eb4271d..1b2a94e6 100755 --- a/front/js/pialert_common.js +++ b/front/js/pialert_common.js @@ -1095,6 +1095,7 @@ var sessionStorageKey = "myScriptExecuted_pialert_common"; // Clearing all the caches function clearCache() { + showSpinner() resetInitializedFlag() window.location.reload() }