@camera.ui/camera-ui-rust-motion 0.0.36 → 0.0.38

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/CHANGELOG.md CHANGED
@@ -1,8 +1,3 @@
1
- All notable changes to this project will be documented in this file.
2
-
3
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
-
6
- ## [X.X.X] - ???
1
+ ## [1.0.0] - 01.07.2026
7
2
 
8
3
  - Initial Release
package/README.md CHANGED
@@ -1 +1,5 @@
1
- # @camera.ui/camera-ui-rust-motion
1
+ # Rust Motion
2
+
3
+ Native motion detection for camera.ui, powered by a Rust detector for low CPU usage.
4
+
5
+ `@camera.ui/camera-ui-rust-motion`
package/bundle.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,19 +1,18 @@
1
1
  {
2
2
  "displayName": "Rust Motion",
3
3
  "name": "@camera.ui/camera-ui-rust-motion",
4
- "version": "0.0.36",
5
- "description": "Lightning-fast motion detection written in Rust. Exceptional performance and reliability for continuous monitoring.",
4
+ "version": "0.0.38",
5
+ "description": "Native motion detection for camera.ui, powered by a Rust detector for low CPU usage.",
6
6
  "author": "seydx (https://github.com/cameraui/plugins)",
7
7
  "main": "./dist/index.js",
8
8
  "type": "commonjs",
9
9
  "scripts": {
10
10
  "build": "rimraf dist && tsc",
11
- "bundle": "npm run format && npm run lint:fix && npm run build && cui bundle",
12
- "bundle:dev": "npm run format && npm run lint:fix && npm run build && cross-env MODE=development cui bundle",
11
+ "bundle": "npm run format && npm run lint && npm run build && cui bundle",
12
+ "bundle:dev": "npm run format && npm run lint && npm run build && cross-env MODE=development cui bundle",
13
13
  "format": "prettier --write \"src/\" --ignore-unknown --no-error-on-unmatched-pattern",
14
14
  "install-updates": "npm i --save",
15
- "lint": "eslint .",
16
- "lint:fix": "eslint --fix .",
15
+ "lint": "eslint --fix .",
17
16
  "prepublishOnly": "node -e \"if(!process.env.SAFE_PUBLISH){console.error('Error: Please use @camera.ui/cli to publish the plugin:\\n npm run publish:alpha\\n npm run publish:beta\\n npm run publish:latest\\n');process.exit(1)}\"",
18
17
  "publish:alpha": "npm i --save && npm run bundle && cui publish --alpha",
19
18
  "publish:beta": "npm i --save && npm run bundle && cui publish --beta",
@@ -21,7 +20,7 @@
21
20
  "update": "updates --update ./"
22
21
  },
23
22
  "dependencies": {
24
- "@camera.ui/rust-detector": "~0.0.10"
23
+ "@camera.ui/rust-detector": "~0.0.11"
25
24
  },
26
25
  "bugs": {
27
26
  "url": "https://github.com/cameraui/plugins/issues"