@allanoricil/nrg-sentinel 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +49 -0
- package/README.md +748 -0
- package/bin/node-red.js +8 -0
- package/flow-diff.js +7 -0
- package/package.json +38 -0
- package/plugin.html +1184 -0
- package/plugin.js +7 -0
- package/preload.js +7 -0
- package/review-ui.html +795 -0
- package/safe-deployment-queue.js +7 -0
- package/service-worker.js +7 -0
- package/sw-register.js +7 -0
- package/vendor/flow-renderer.min.js +1 -0
- package/vendor/vue.prod.js +13 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# NRG Sentinel — Commercial License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AllanOricil. All rights reserved.
|
|
4
|
+
|
|
5
|
+
## Dual Licensing
|
|
6
|
+
|
|
7
|
+
NRG Sentinel is available under two licenses:
|
|
8
|
+
|
|
9
|
+
### 1. Open Source (AGPL-3.0)
|
|
10
|
+
|
|
11
|
+
The source code of NRG Sentinel is licensed under the **GNU Affero General Public License v3.0
|
|
12
|
+
or later** (AGPL-3.0-or-later). If you use NRG Sentinel in a product or service distributed to
|
|
13
|
+
others, or offered as a hosted/SaaS service, you must release the complete corresponding source
|
|
14
|
+
code of that product/service under the AGPL-3.0 as well.
|
|
15
|
+
|
|
16
|
+
Full AGPL-3.0 text: https://www.gnu.org/licenses/agpl-3.0.html
|
|
17
|
+
|
|
18
|
+
### 2. Commercial License (this file)
|
|
19
|
+
|
|
20
|
+
This **compiled and distributed build** of NRG Sentinel is provided under a **commercial license**.
|
|
21
|
+
A valid license key is required for use beyond the 14-day trial period.
|
|
22
|
+
|
|
23
|
+
**What is permitted:**
|
|
24
|
+
|
|
25
|
+
- Install and use NRG Sentinel in your Node-RED deployments
|
|
26
|
+
- Use in production environments with a valid license key
|
|
27
|
+
- Receive updates and support according to your subscription plan
|
|
28
|
+
|
|
29
|
+
**What is NOT permitted without a commercial license:**
|
|
30
|
+
|
|
31
|
+
- Use in production beyond the 14-day trial without a valid license key
|
|
32
|
+
- Redistribute, resell, or sublicense this software
|
|
33
|
+
- Remove or modify license enforcement mechanisms
|
|
34
|
+
- Use in a product or service offered to third parties without purchasing a commercial license
|
|
35
|
+
(unless you comply with the AGPL-3.0 by open-sourcing your product)
|
|
36
|
+
|
|
37
|
+
## Obtaining a Commercial License
|
|
38
|
+
|
|
39
|
+
Purchase at: **https://github.com/AllanOricil/nrg-sentinel-public**
|
|
40
|
+
|
|
41
|
+
For enterprise licensing, volume discounts, or OEM inquiries, contact: allanoricil@proton.me
|
|
42
|
+
|
|
43
|
+
## Disclaimer
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
|
|
46
|
+
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
47
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
48
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
49
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|