Releases: sarandogou/webrtc-everywhere
Releases · sarandogou/webrtc-everywhere
2.0.0
1.3.1
1.2.2
1.2.1
- Fix Issue #15
- Adds support for x64 (Windows)
- Change Windows setup:
- to register the ActiveX under HKCU instead of HKLM
- to install binaries under AppData folder instead of ProgramFiles
- to bundle 32bit and 64bit binaries
It's highly recommended to uninstall any old version before installing this one
release 1.2.0
- Adds DataChannel API with support for Strings, BLOBs and ArrayBuffers (Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array and Float64Array).
- Adds support for DTMFSender API.
- Implements secure prompt in getUserMedia. Once permission is allowed by the user, websites served over htpps are stored in local file encrypted using DES-CBC to avoid opening the prompt again. The encryption keys are defined at build time.
- Bug fix: Issue #3, Issue #10 and Issue #11
release 1.1.0
- Adds new JavaScript function: Webrtc::getScreenShot(). This function converts the RGB32 raw image to bitmap then to base64. The process is instantaneous and the base64 image could be used in JavaScript like this:
var image = new Image();
image.onload = function () {
document.getElementById("mycanvas").getContext("2d").drawImage(image, 0, 0, width, height);
};
image.src = "data:image/png;base64," + base64;