Skip to content

Commit

Permalink
3.1.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
willmorgan committed Dec 9, 2020
1 parent c12b525 commit 2db286f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added the `csp_nonce` option. See [Content Security Policy](https://github.com/iProov/web/wiki/Content-Security-Policy).
- External dependencies are now loaded with `<link rel=preload>` for non-blocking parallel loading.
- Our feature detector now runs the latest Tensorflow release which includes support for WebAssembly threads and SIMD.
- New `streamed` event to accommodate the original documented functionality.

## Fixed

Expand All @@ -44,13 +45,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Tweaks to UI to bring the UI experience inline with native SDKs.
- Improved our encoder for better speed and the latest bugfixes.
- Bandwidth usage reduced
- The `streamed` event now emits at the correct time, which may break integrations that rely upon it.
- To upgrade, replace `streamed` with `streaming` which takes its place.

## Removed

- Bundled Web Component support. Polyfills are now loaded on an as-needed basis.
- Automatic transpilation for the following outdated browsers:
- Blackberry < 10
- Edge < 84
- Firefox < 80
- Edge < 85
- Firefox < 82
- IE < 11
- IE Mobile (all)
- iOS Safari < 13.4
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# iProov Biometrics Web SDK v3.1.0-beta.4
# iProov Biometrics Web SDK v3.1.0-beta.5

## 📖 Table of contents

Expand Down Expand Up @@ -396,6 +396,7 @@ The available events are detailed below with any extra properties that are suppl
| **progress** | _percentage, message_ | iProov has published a progress update for the authentication |
| **ready** | None | iProov has initialised successfully and has camera permission |
| **started** | None | User has started iProov by launching into fullscreen |
| **streaming** | None | User has started streaming. The client remains in fullscreen. |
| **streamed** | None | User has finished streaming and the client has exited fullscreen |
| **unsupported** | _feedback, reason_ | Browser does not support using iProov |

Expand Down Expand Up @@ -468,6 +469,7 @@ iProovMe.addEventListener("ready", iProovEvent)
iProovMe.addEventListener("started", iProovEvent)
iProovMe.addEventListener("cancelled", iProovEvent)
iProovMe.addEventListener("interrupted", iProovEvent)
iProovMe.addEventListener("streaming", iProovEvent)
iProovMe.addEventListener("streamed", iProovEvent)
iProovMe.addEventListener("progress", iProovEvent)
iProovMe.addEventListener("passed", iProovEvent)
Expand Down
2 changes: 1 addition & 1 deletion examples/html.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
component.addEventListener('ready', iProovEvent);
component.addEventListener('started', iProovEvent);
component.addEventListener('aborted', iProovEvent);
component.addEventListener('streamed', iProovEvent);
component.addEventListener('streaming', iProovEvent);
component.addEventListener('progress', iProovEvent);
component.addEventListener('passed', iProovEvent);
component.addEventListener('failed', iProovEvent);
Expand Down
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function injectIproov(data){
$('.loading').removeClass('show');
});

$(component).on('ready permission started aborted streamed progress passed failed error unsupported', iProovEvent);
$(component).on('ready permission started aborted streaming progress passed failed error unsupported', iProovEvent);
}

function iProovProgress(event) {
Expand Down

0 comments on commit 2db286f

Please sign in to comment.