Skip to content

Releases: sarandogou/webrtc-everywhere

2.0.0

28 Aug 15:26
Compare
Choose a tag to compare

Adds support for Screenshare on OSX and Windows
Adds support for OSX X86_64
Fix issue #1, #16, #26, #28, #29, #31 and #32

1.3.1

03 Apr 18:34
Compare
Choose a tag to compare

Fix issue #24, #23, #22, #21, #19, #15, #13, #2

1.2.2

30 Jan 23:37
Compare
Choose a tag to compare

1.2.1

24 Dec 03:20
Compare
Choose a tag to compare
  • 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

06 Aug 22:48
Compare
Choose a tag to compare
  • 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

27 Jul 23:32
Compare
Choose a tag to compare
  • 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;
  • Bug fix:
    • Issue #6: The active element tag flashes when the window is resized or scrolled
    • Issue #7: drawImage() function is toooo slooow
    • Issue #8: Color alignment issue in drawImage()