Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webrtc-streaming-core

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc-streaming-core - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

14

dist/gui/hid.js

@@ -289,4 +289,14 @@ "use strict";

}
(0, log_1.Log)(log_1.LogLevel.Debug, `current touch ${identifier}: ${curr_touch.clientX} ${curr_touch.clientY}`);
(0, log_1.Log)(log_1.LogLevel.Debug, `prev touch ${identifier}: ${prev_touch.clientX} ${prev_touch.clientY}`);
const diff = {
movementX: Math.round(curr_touch.clientX - prev_touch.clientX),
movementY: Math.round(curr_touch.clientY - prev_touch.clientY)
};
// one finger only
if (identifier == 0) {
let code = keys_model_1.EventCode.MouseMoveRel;
this.SendFunc((new keys_model_2.HIDMsg(code, {
dX: diff.movementX,
dY: diff.movementY,
})).ToString());
}
this.onGoingTouchs.set(identifier, this.copyTouch(curr_touch)); // swap in the new touch record

@@ -293,0 +303,0 @@ }

2

package.json
{
"name": "webrtc-streaming-core",
"version": "1.1.1",
"version": "1.1.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/app.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc