Skip to content

Commit

Permalink
Merge pull request #9 from BlinkID/jenkins/stable-build
Browse files Browse the repository at this point in the history
Automatically built release by Jenkins
  • Loading branch information
vjekoart authored Oct 4, 2021
2 parents 6e0e438 + a899885 commit e0abfec
Show file tree
Hide file tree
Showing 101 changed files with 5,509 additions and 2,431 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Release notes

## 5.14.0

### Improvements

* We've improved the accuracy of barcode scanning on identity documents

### Changes to MRTDRecognizer

* We've added `MRTD_TYPE_BORDER_CROSSING_CARD` type to MRTD enum

### Platform-related SDK changes

* We've added a camera management UI module for the selection of connected cameras
* We've added `VideoRecognizer.changeCameraDevice` method that can be used to change the active camera device during the scanning session
* We've improved accessibility of the UI component by changing background contrasts and increasing default font sizes

### Bug fixes

* We've optimised memory usage of the SDK by fixing a problem where every refresh of the UI component would result in a new instance of web worker

## 5.13.0

### New additions to our supported document list
Expand Down
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,23 @@ For example, in `package.json` you should have something like `"@microblink/blin
cameraFeed,
recognizerRunner
);
// There is more than one way to handle recognition
// Using the recognize() method will provide you with the default behavior,
// such as built-in error handling, timeout and video feed pausing.
const processResult = await videoRecognizer.recognize();
// Using the startRecognition() method allows you to pass your own onScanningDone callback,
// giving you the option to create custom behavior.
const processResult = await videoRecognizer.startRecognition(
async ( recognitionState ) =>
{
videoRecognizer.pauseRecognition();
return recognitionState;
}
);
// To obtain recognition results see next step
}
catch ( error )
Expand All @@ -252,7 +268,7 @@ For example, in `package.json` you should have something like `"@microblink/blin
}
```

6. If `processResult` returned from `VideoRecognizer's` method `recognize` is not `BlinkIDImageCaptureSDK.RecognizerResultState.Empty`, then at least one recognizer given to the `RecognizerRunner` above contains a recognition result. You can extract the result from each recognizer using its `getResult` method:
6. If `processResult` returned from `VideoRecognizer's` method `recognize` or `startRecognition` is not `BlinkIDImageCaptureSDK.RecognizerResultState.Empty`, then at least one recognizer given to the `RecognizerRunner` above contains a recognition result. You can extract the result from each recognizer using its `getResult` method:

```typescript
if ( processResult !== BlinkIDImageCaptureSDK.RecognizerResultState.Empty )
Expand Down
292 changes: 146 additions & 146 deletions client-library/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/blinkid-camera/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

if ( window.location.hostname === "blinkid.github.io" )
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaACK9LsOPr2Dus6G8yiiYYl5VQwUApVeP999MMDDDO5rn2MaO8V+8T49z3hjPjRAjrZoTNaT0aQxP+eiYnG4hKWeWdhAO6eciw8G3RPZLibIy9qXZpSpmh7IkJaKtMeUkuWYTRIMc6c6LIdjFd/rfMeTrvF2WEIksMW1v5eD0XphdjoYGM8RLV/fGtftidb2+7RfIdhLEjOZfM9w==";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaGyKtLQks1inX9LpYE8wI2jFaCiL8plqSE9Fb5+jgzGLhYWH53IlLSx6CvKy8gxG5w1R7BpZMaJdup3M6htIaa+wLELlTbr8FPWQNDQuKh7Qr+M9qkMAJFdzRatyvTz7CaS5rEE4gOSXLVk/DaIYt1WSHb9tzfyoo4h1g8hDh38ZiwpaW/vJyZi6pEDF1ESLjX5q+LZUU4qOuYUOTUUQ==";
}

// 2. Create instance of SDK load settings with your license key
Expand Down
4 changes: 2 additions & 2 deletions examples/blinkid-camera/javascript/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1 id="msg">Loading...</h1>
</body>

<!-- Keep in mind that Unpkg CDN is used for demonstration, it's not intended to be used in production! -->
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="app.js"></script>
</html>
2 changes: 1 addition & 1 deletion examples/blinkid-camera/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"typescript": "^3.9.5"
},
"dependencies": {
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.13.0"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.14.0"
}
}
2 changes: 1 addition & 1 deletion examples/blinkid-camera/typescript/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

// 2. Create instance of SDK load settings with your license key
const loadSettings = new BlinkIDImageCaptureSDK.WasmSDKLoadSettings( licenseKey );
Expand Down
4 changes: 2 additions & 2 deletions examples/blinkid-file/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

if ( window.location.hostname === "blinkid.github.io" )
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaACK9LsOPr2Dus6G8yiiYYl5VQwUApVeP999MMDDDO5rn2MaO8V+8T49z3hjPjRAjrZoTNaT0aQxP+eiYnG4hKWeWdhAO6eciw8G3RPZLibIy9qXZpSpmh7IkJaKtMeUkuWYTRIMc6c6LIdjFd/rfMeTrvF2WEIksMW1v5eD0XphdjoYGM8RLV/fGtftidb2+7RfIdhLEjOZfM9w==";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaGyKtLQks1inX9LpYE8wI2jFaCiL8plqSE9Fb5+jgzGLhYWH53IlLSx6CvKy8gxG5w1R7BpZMaJdup3M6htIaa+wLELlTbr8FPWQNDQuKh7Qr+M9qkMAJFdzRatyvTz7CaS5rEE4gOSXLVk/DaIYt1WSHb9tzfyoo4h1g8hDh38ZiwpaW/vJyZi6pEDF1ESLjX5q+LZUU4qOuYUOTUUQ==";
}

// 2. Create instance of SDK load settings with your license key
Expand Down
4 changes: 2 additions & 2 deletions examples/blinkid-file/javascript/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1>Processing...</h1>
</body>

<!-- Keep in mind that Unpkg CDN is used for demonstration, it's not intended to be used in production! -->
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="app.js"></script>
</html>
2 changes: 1 addition & 1 deletion examples/blinkid-file/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"typescript": "^3.9.5"
},
"dependencies": {
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.13.0"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.14.0"
}
}
2 changes: 1 addition & 1 deletion examples/blinkid-file/typescript/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

// 2. Create instance of SDK load settings with your license key
const loadSettings = new BlinkIDImageCaptureSDK.WasmSDKLoadSettings( licenseKey );
Expand Down
4 changes: 2 additions & 2 deletions examples/combined-file/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

if ( window.location.hostname === "blinkid.github.io" )
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaACK9LsOPr2Dus6G8yiiYYl5VQwUApVeP999MMDDDO5rn2MaO8V+8T49z3hjPjRAjrZoTNaT0aQxP+eiYnG4hKWeWdhAO6eciw8G3RPZLibIy9qXZpSpmh7IkJaKtMeUkuWYTRIMc6c6LIdjFd/rfMeTrvF2WEIksMW1v5eD0XphdjoYGM8RLV/fGtftidb2+7RfIdhLEjOZfM9w==";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaGyKtLQks1inX9LpYE8wI2jFaCiL8plqSE9Fb5+jgzGLhYWH53IlLSx6CvKy8gxG5w1R7BpZMaJdup3M6htIaa+wLELlTbr8FPWQNDQuKh7Qr+M9qkMAJFdzRatyvTz7CaS5rEE4gOSXLVk/DaIYt1WSHb9tzfyoo4h1g8hDh38ZiwpaW/vJyZi6pEDF1ESLjX5q+LZUU4qOuYUOTUUQ==";
}

// 2. Create instance of SDK load settings with your license key
Expand Down
4 changes: 2 additions & 2 deletions examples/combined-file/javascript/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h1>Processing...</h1>
</body>

<!-- Keep in mind that Unpkg CDN is used for demonstration, it's not intended to be used in production! -->
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="app.js"></script>
</html>
2 changes: 1 addition & 1 deletion examples/combined-file/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"typescript": "^3.9.5"
},
"dependencies": {
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.13.0"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.14.0"
}
}
2 changes: 1 addition & 1 deletion examples/combined-file/typescript/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

// 2. Create instance of SDK load settings with your license key
const loadSettings = new BlinkIDImageCaptureSDK.WasmSDKLoadSettings( licenseKey );
Expand Down
4 changes: 2 additions & 2 deletions examples/combined/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

if ( window.location.hostname === "blinkid.github.io" )
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaACK9LsOPr2Dus6G8yiiYYl5VQwUApVeP999MMDDDO5rn2MaO8V+8T49z3hjPjRAjrZoTNaT0aQxP+eiYnG4hKWeWdhAO6eciw8G3RPZLibIy9qXZpSpmh7IkJaKtMeUkuWYTRIMc6c6LIdjFd/rfMeTrvF2WEIksMW1v5eD0XphdjoYGM8RLV/fGtftidb2+7RfIdhLEjOZfM9w==";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaGyKtLQks1inX9LpYE8wI2jFaCiL8plqSE9Fb5+jgzGLhYWH53IlLSx6CvKy8gxG5w1R7BpZMaJdup3M6htIaa+wLELlTbr8FPWQNDQuKh7Qr+M9qkMAJFdzRatyvTz7CaS5rEE4gOSXLVk/DaIYt1WSHb9tzfyoo4h1g8hDh38ZiwpaW/vJyZi6pEDF1ESLjX5q+LZUU4qOuYUOTUUQ==";
}

// 2. Create instance of SDK load settings with your license key
Expand Down
4 changes: 2 additions & 2 deletions examples/combined/javascript/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1 id="msg">Loading...</h1>
</body>

<!-- Keep in mind that Unpkg CDN is used for demonstration, it's not intended to be used in production! -->
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.13.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.14.0/dist/blinkid-imagecapture-sdk.js"></script>
<script src="app.js"></script>
</html>
2 changes: 1 addition & 1 deletion examples/combined/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"typescript": "^3.9.5"
},
"dependencies": {
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.13.0"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.14.0"
}
}
2 changes: 1 addition & 1 deletion examples/combined/typescript/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLwUXza1htObpRih8QOvGrTQkcxdS4jAQV5d17d4zNLUVZRwTIjjr0gaYz+v4H++9CE49zVdEv18K9TNNU8BEnCYW6bthX1CABGUpVVJLoR8PlRPBNDhFI2KlQj/zPXu955Wc+b+Cvm8IPJOLO0FuMmtn4RL7bSPDeJs62WRv6G00bgY0Ha8jKkoWOki/5+4KKP1g0Vp4YMOG7tc=";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWKcUTzWfFms+1HtOJBLOa0Z9jQdHUQo1EWP1afmump3DAd/zRkoNODh6Y9FtA1eYVaya36wQmmWpLEliFyV9va44nCIrCRqyoUzeQolAjPINbKGqHklMsfYekNYLDA2i+7zfxUF8Ac3eQ3FiDhrN3d1l+36UjfUfU9e6omHNFxdqysdOxvgVw9bNH8fjbKRmI1CJHbJmb1AWmi2YGwk0=";

// 2. Create instance of SDK load settings with your license key
const loadSettings = new BlinkIDImageCaptureSDK.WasmSDKLoadSettings( licenseKey );
Expand Down
20 changes: 10 additions & 10 deletions oss-dependencies/c++-advanced.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Free peer-reviewed portable C++ source libraries."
},
{
"package": "ConcurrentQueue/3.0.1@microblink/stable",
"package": "ConcurrentQueue/3.0.2@microblink/stable",
"url": "https://github.com/microblink/concurrentqueue",
"license": "Dual licensed under Simplified BSD License and Boost Software License - Version 1.0",
"description": "A fast multi-producer, multi-consumer lock-free concurrent queue for C++11"
Expand All @@ -24,13 +24,13 @@
"description": "Eigen is a C++ template library for linear algebra: vectors, matrices, and related algorithms. It is versatile, fast, elegant and works on many platforms (OS/Compilers)."
},
{
"package": "Err/1.1.2@microblink/stable",
"package": "Err/1.1.4@microblink/stable",
"url": "https://github.com/microblink/err",
"license": "Boost Software License",
"description": "err - yet another take on C++ error handling"
},
{
"package": "Functionoid/3.0.4@microblink/stable",
"package": "Functionoid/3.0.5@microblink/stable",
"url": "https://github.com/microblink/functionoid",
"license": "Boost Software License, Version 1.0",
"description": "a complete C++17 rewrite of boost/std::function"
Expand All @@ -42,7 +42,7 @@
"description": "Portable C++ Hashing Library"
},
{
"package": "MMap/0.2.0@microblink/stable",
"package": "MMap/0.2.1@microblink/stable",
"url": "https://github.com/microblink/mmap",
"license": "Boost Software License",
"description": "portable, lightweight, powerful, near-zero-overhead memory mapping and virtual memory management"
Expand All @@ -60,7 +60,7 @@
"description": "Obfuscation library based on C++11/14 and metaprogramming"
},
{
"package": "OpenCV/4.5.2.3@microblink/stable",
"package": "OpenCV/4.5.3@microblink/stable",
"url": "https://github.com/microblink/opencv",
"license": "MIT",
"description": "Microblink's fork of OpenCV"
Expand All @@ -78,7 +78,7 @@
"description": "A fast JSON parser/generator for C++ with both SAX/DOM style API"
},
{
"package": "Sweater/9.1.5@microblink/stable",
"package": "Sweater/10.1.0@microblink/stable",
"url": "https://github.com/microblink/sweater",
"license": "MIT",
"description": "Humble Outer Dispatch"
Expand All @@ -90,7 +90,7 @@
"description": "UTF-8 with C++ in a Portable Way"
},
{
"package": "XNNPACK/20210616.0@microblink/stable",
"package": "XNNPACK/20210616.1@microblink/stable",
"url": "https://github.com/microblink/XNNPACK",
"license": "BSD",
"description": "XNNPACK library"
Expand All @@ -108,13 +108,13 @@
"description": "A massively spiffy yet delicately unobtrusive compression library."
},
{
"package": "cpuinfo/3.0.3@microblink/stable",
"package": "cpuinfo/3.0.4@microblink/stable",
"url": "https://github.com/microblink/cpuinfo",
"license": "BSD 2-Clause \"Simplified\" License",
"description": "cpuinfo is a library to detect essential for performance optimization information about host CPU"
},
{
"package": "emsdk_installer/2.0.23@microblink/stable",
"package": "emsdk_installer/2.0.27@microblink/stable",
"url": "https://github.com/microblink/conan-emsdk_installer",
"license": "MIT",
"description": "Emscripten is an Open Source LLVM to JavaScript compiler"
Expand All @@ -126,7 +126,7 @@
"description": "A mature, widely used set of libraries providing Unicode and Globalization support"
},
{
"package": "libjpeg-turbo/2.0.6.1@microblink/stable",
"package": "libjpeg-turbo/2.1.1@microblink/stable",
"url": "https://github.com/microblink/libjpeg-turbo",
"license": "BSD-3-Clause, Zlib",
"description": "SIMD-accelerated libjpeg-compatible JPEG codec library"
Expand Down
Loading

0 comments on commit e0abfec

Please sign in to comment.