iobroker.agent-dvr 0.0.1 → 0.0.2

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/README.md CHANGED
@@ -100,41 +100,19 @@ Additional command line options for the release script are explained in the
100
100
  To get your adapter released in ioBroker, please refer to the documentation
101
101
  of [ioBroker.repositories](https://github.com/ioBroker/ioBroker.repositories#requirements-for-adapter-to-get-added-to-the-latest-repository).
102
102
 
103
- ### Test the adapter manually on a local ioBroker installation
104
- In order to install the adapter locally without publishing, the following steps are recommended:
105
- 1. Create a GitHub repository for your adapter if you haven't already
106
- 1. Push your code to the GitHub repository
107
- 1. Use the ioBroker Admin interface or command line to install the adapter from GitHub:
108
- * **Via Admin UI**: Go to the "Adapters" tab, click on "Custom Install" (GitHub icon), and enter your repository URL:
109
- ```
110
- https://github.com/ipod86/ioBroker.agent-dvr
111
- ```
112
- You can also install from a specific branch by adding `#branchname` at the end:
113
- ```
114
- https://github.com/ipod86/ioBroker.agent-dvr#dev
115
- ```
116
- * **Via Command Line**: Install using the `iob` command:
117
- ```bash
118
- iob url https://github.com/ipod86/ioBroker.agent-dvr
119
- ```
120
- Or from a specific branch:
121
- ```bash
122
- iob url https://github.com/ipod86/ioBroker.agent-dvr#dev
123
- ```
124
-
125
- For later updates:
126
- 1. Push your changes to GitHub
127
- 1. Repeat the installation steps above (via Admin UI or `iob url` command) to update the adapter
128
-
129
103
  ## Changelog
130
104
  <!--
131
105
  Placeholder for the next version (at the beginning of the line):
132
106
  ### **WORK IN PROGRESS**
133
107
  -->
108
+ ### 0.0.2 (2026-06-27)
109
+ * (ipod86) setup npm trusted publishing and fix repochecker findings
134
110
 
135
- ### **WORK IN PROGRESS**
111
+ ### 0.0.1 (2026-06-27)
136
112
  * (ipod86) initial release
137
113
 
114
+ [Older changelog entries in CHANGELOG_OLD.md](CHANGELOG_OLD.md)
115
+
138
116
  ## License
139
117
  MIT License
140
118
 
@@ -3,7 +3,7 @@
3
3
  "type": "tabs",
4
4
  "items": {
5
5
  "tabConnection": {
6
- "type": "tab",
6
+ "type": "panel",
7
7
  "label": "tabConnection",
8
8
  "items": {
9
9
  "ip": {
@@ -48,7 +48,7 @@
48
48
  }
49
49
  },
50
50
  "tabFeatures": {
51
- "type": "tab",
51
+ "type": "panel",
52
52
  "label": "tabFeatures",
53
53
  "items": {
54
54
  "enableSystemControls": {
@@ -92,7 +92,7 @@
92
92
  }
93
93
  },
94
94
  "tabWidget": {
95
- "type": "tab",
95
+ "type": "panel",
96
96
  "label": "tabWidget",
97
97
  "items": {
98
98
  "enableWidget": {
@@ -164,7 +164,7 @@
164
164
  }
165
165
  },
166
166
  "tabAdvanced": {
167
- "type": "tab",
167
+ "type": "panel",
168
168
  "label": "tabAdvanced",
169
169
  "items": {
170
170
  "maxDepth": {
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "agent-dvr",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "news": {
6
+ "0.0.2": {
7
+ "en": "setup npm trusted publishing and fix repochecker findings",
8
+ "de": "npm Trusted Publishing eingerichtet und Repochecker-Findings behoben",
9
+ "ru": "настройка npm Trusted Publishing и исправление находок репочекера",
10
+ "pt": "configuração de publicação confiável npm e correção de resultados do repochecker",
11
+ "nl": "npm trusted publishing instellen en repochecker-bevindingen corrigeren",
12
+ "fr": "configuration de la publication de confiance npm et correction des résultats du repochecker",
13
+ "it": "configurazione della pubblicazione attendibile npm e correzione dei risultati del repochecker",
14
+ "es": "configuración de publicación de confianza npm y corrección de hallazgos del repochecker",
15
+ "pl": "konfiguracja zaufanego publikowania npm i poprawki wyników repocheckera",
16
+ "uk": "налаштування довіреної публікації npm та виправлення знахідок репочекера",
17
+ "zh-cn": "设置 npm 可信发布并修复 repochecker 问题"
18
+ },
6
19
  "0.0.1": {
7
20
  "en": "initial release",
8
21
  "de": "Erstveröffentlichung",
@@ -44,7 +57,7 @@
44
57
  "zh-cn": "将 ioBroker 连接到 AgentDVR:自动发现摄像头,将所有设备值镜像为数据点,在新录像时提供实时触发,并生成具有可选搜索和标签过滤功能的响应式 HTML 图库。"
45
58
  },
46
59
  "authors": ["ipod86 <david@graef.email>"],
47
- "keywords": ["ioBroker", "Agentdvr", "ispy", "ptz"],
60
+ "keywords": ["Agentdvr", "ispy", "ptz"],
48
61
  "licenseInformation": {
49
62
  "type": "free",
50
63
  "license": "MIT"
@@ -71,10 +84,12 @@
71
84
  ],
72
85
  "globalDependencies": [
73
86
  {
74
- "admin": ">=7.0.23"
87
+ "admin": ">=7.6.20"
75
88
  }
76
89
  ]
77
90
  },
91
+ "protectedNative": ["pass"],
92
+ "encryptedNative": ["pass"],
78
93
  "native": {
79
94
  "ip": "192.168.1.100",
80
95
  "port": 8090,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.agent-dvr",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Connects ioBroker to AgentDVR: auto-discovers cameras, mirrors all device values as data points, delivers real-time triggers on new recordings, and generates a responsive HTML gallery with optional search and tag filtering.",
5
5
  "author": {
6
6
  "name": "ipod86",
@@ -33,7 +33,7 @@
33
33
  "@iobroker/adapter-dev": "^1.5.0",
34
34
  "@iobroker/eslint-config": "^2.3.4",
35
35
  "@iobroker/testing": "^5.2.2",
36
- "@tsconfig/node22": "^22.0.0",
36
+ "@tsconfig/node22": "^22.0.5",
37
37
  "@types/iobroker": "npm:@iobroker/types@^7.2.2",
38
38
  "@types/node": "^22.0.0",
39
39
  "rimraf": "^6.1.3",