Skip to content

Commit

Permalink
Merge pull request #13 from BlinkID/build/5.16
Browse files Browse the repository at this point in the history
Build v5.16
  • Loading branch information
vjekoart authored May 12, 2022
2 parents 8238266 + 63da6e7 commit 06cb8a3
Show file tree
Hide file tree
Showing 74 changed files with 1,839 additions and 1,363 deletions.
54 changes: 54 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,59 @@
# Release notes

## 5.16.0

We've added new documents to our list of supported documents:

#### Europe

* Austria - ID Card (front only)
* Germany - ID Card

#### Latin America and the Caribbean

* Brazil - ID Card (beta)
* Colombia - ID Card (front only)
* Ecuador - ID Card

#### Mexico

* Baja California Sur - Driving Licence (beta)
* Ciudad De Mexico - Driving Licence (front only)
* Colima - Driving Licence (front only, beta)
* Michoacan - Driving Licence (beta)
* Nayarit - Driving Licence (beta)
* Quintana Roo Solidaridad - Driving Licence (front only)
* Tlaxcala - Driving Licence
* Veracruz - Driving Licence (beta)

#### Oceania

* Australia - Northern Territory (beta)

#### Asia

* Japan - My Number Card (front only)
* Singapore - Resident ID

#### Northern America

* USA - Missouri - ID Card
* USA - Nevada - Driving Licence
* USA - New York City - ID Card
* USA - Oklahoma - ID Card

#### Back side support added:

* Mexico - Chiapas - Driving License

#### No longer BETA:

* Mexico - Baja California - Driving Licence
* Mexico - Chihuahua - Driving Licence
* Mexico - Coahuila - Driving Licence
* Mexico - Guanajuato - Driving Licence
* Mexico - Mexico - Driving Licence

## 5.15.1

* We've updated Microblink logo and colors
Expand Down
346 changes: 192 additions & 154 deletions client-library/package-lock.json

Large diffs are not rendered by default.

29 changes: 0 additions & 29 deletions client-library/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,35 +104,6 @@ export function httpClient(
} );
}

export function deepCompare( a: any, b: any ): boolean
{
const isObject = ( a: any ): boolean => a !== null && typeof a === "object";

const keys1 = Object.keys( a );
const keys2 = Object.keys( b );

if ( keys1.length !== keys2.length )
{
return false;
}

for ( const key of keys1 )
{
const val1 = a[ key ];
const val2 = b[ key ];
const areObjects = isObject( val1 ) && isObject( val2 );

if (
areObjects && !deepCompare( val1, val2 ) ||
!areObjects && val1 !== val2
) {
return false;
}
}

return true;
}

export function imageDataToBase64( imageData: ImageData ): string
{
const canvas = document.createElement( "canvas" );
Expand Down
4 changes: 2 additions & 2 deletions examples/blinkid-camera/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

if (window.location.hostname === "blinkid.github.io")
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaCmIfg3tky6GweFiTieV7VNe7GBpVhDPHleBZ+sfoOswwO2vJXilvYv9KWJrJXDZM2lZeyOkB5+wzCWZq5+Um5HtIoJcDBTjlg1XYkuQLTVOpAzmSXBFYl02ohVhfCv/THglhjTj3zbY5QtU0wYI/8TTbyH082GGKejyeecqtQz6+3k26+6L16YcuSgKQQ1e69aRK56Sjb8wIr";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvpaFiKNHg4G2awtEGd+imfxvW62DEqVTolHQnorEXKJzgyBWktsepe0hf/PatSjz1NPIGl5NpcBB3/+c6AY9qDvqBXueL4H8keVx9zfYCTMMBSYAXnlrkyHCAfenDxl2mrg7AGH85Yf7QCDiknrUdnI5DigEBgf2kw35LTeqD9Otf+UDso02jhavbG/gJnkDyddU43r1MJpAiQ==";
}

// 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.15.1/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.15.1/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.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.15.1"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.16.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 @@ -36,7 +36,7 @@ function main() {
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

// 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 @@ -31,11 +31,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

if (window.location.hostname === "blinkid.github.io")
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaCmIfg3tky6GweFiTieV7VNe7GBpVhDPHleBZ+sfoOswwO2vJXilvYv9KWJrJXDZM2lZeyOkB5+wzCWZq5+Um5HtIoJcDBTjlg1XYkuQLTVOpAzmSXBFYl02ohVhfCv/THglhjTj3zbY5QtU0wYI/8TTbyH082GGKejyeecqtQz6+3k26+6L16YcuSgKQQ1e69aRK56Sjb8wIr";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvpaFiKNHg4G2awtEGd+imfxvW62DEqVTolHQnorEXKJzgyBWktsepe0hf/PatSjz1NPIGl5NpcBB3/+c6AY9qDvqBXueL4H8keVx9zfYCTMMBSYAXnlrkyHCAfenDxl2mrg7AGH85Yf7QCDiknrUdnI5DigEBgf2kw35LTeqD9Otf+UDso02jhavbG/gJnkDyddU43r1MJpAiQ==";
}

// 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.15.1/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.15.1/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.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.15.1"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.16.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 @@ -32,7 +32,7 @@ function main() {
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

// 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 @@ -31,11 +31,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

if (window.location.hostname === "blinkid.github.io")
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaCmIfg3tky6GweFiTieV7VNe7GBpVhDPHleBZ+sfoOswwO2vJXilvYv9KWJrJXDZM2lZeyOkB5+wzCWZq5+Um5HtIoJcDBTjlg1XYkuQLTVOpAzmSXBFYl02ohVhfCv/THglhjTj3zbY5QtU0wYI/8TTbyH082GGKejyeecqtQz6+3k26+6L16YcuSgKQQ1e69aRK56Sjb8wIr";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvpaFiKNHg4G2awtEGd+imfxvW62DEqVTolHQnorEXKJzgyBWktsepe0hf/PatSjz1NPIGl5NpcBB3/+c6AY9qDvqBXueL4H8keVx9zfYCTMMBSYAXnlrkyHCAfenDxl2mrg7AGH85Yf7QCDiknrUdnI5DigEBgf2kw35LTeqD9Otf+UDso02jhavbG/gJnkDyddU43r1MJpAiQ==";
}

// 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.15.1/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.15.1/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.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.15.1"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.16.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 @@ -32,7 +32,7 @@ function main() {
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

// 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 @@ -36,11 +36,11 @@ function main()
}

// 1. It's possible to obtain a free trial license key on microblink.com
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

if (window.location.hostname === "blinkid.github.io")
{
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvmaCmIfg3tky6GweFiTieV7VNe7GBpVhDPHleBZ+sfoOswwO2vJXilvYv9KWJrJXDZM2lZeyOkB5+wzCWZq5+Um5HtIoJcDBTjlg1XYkuQLTVOpAzmSXBFYl02ohVhfCv/THglhjTj3zbY5QtU0wYI/8TTbyH082GGKejyeecqtQz6+3k26+6L16YcuSgKQQ1e69aRK56Sjb8wIr";
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9heYYlTvZbvpaFiKNHg4G2awtEGd+imfxvW62DEqVTolHQnorEXKJzgyBWktsepe0hf/PatSjz1NPIGl5NpcBB3/+c6AY9qDvqBXueL4H8keVx9zfYCTMMBSYAXnlrkyHCAfenDxl2mrg7AGH85Yf7QCDiknrUdnI5DigEBgf2kw35LTeqD9Otf+UDso02jhavbG/gJnkDyddU43r1MJpAiQ==";
}

// 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.15.1/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.15.1/dist/blinkid-imagecapture-sdk.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.0/client-library/dist/client-library.js"></script>
<script src="https://unpkg.com/@microblink/blinkid-imagecapture-in-browser-sdk@5.16.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.15.1"
"@microblink/blinkid-imagecapture-in-browser-sdk": "~5.16.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 @@ -36,7 +36,7 @@ function main() {
}

// 1. It's possible to obtain a free trial license key on microblink.com
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGFWLZU/ZvIhdnu9LUbYdtrWLaONlSDyZXGOH2A+uFt8dhc3JA6eJ8D9O33GC3bIcP2BSVb/pGWdAIiV7PCwh1MhVd67vvkoMT2LuvpDvPxDa5dwdZ9/EvHGNDch56ouyYyS+sA3RyWlmq4umH7VqlxXuD4n5A9P/2C2QK8WeVEDWUJBxJkv97XkIjkliax4T3+wIFx9FsNxo2Gu0w==";
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPgo/w35CpGGmKoUbwQltserSykjeSEsSCVfWKqfxFvkLjL2HWEI4HOXr5m421vGohboFhYUw++ojPvtmcQFWJJRrk9Q/Wc7snrjjc/u/EJ3VrOYN9yv4dunEAoOlkbG9hsNBadI+i+Y1jfQn1qToIW+7nT0DZ4dHF9tCPFn7BsMNg+1irDkPFJVT6OL39v/hDzuvcUQ8qj5FRE8gsaRB2yI=";

// 2. Create instance of SDK load settings with your license key
const loadSettings = new BlinkIDImageCaptureSDK.WasmSDKLoadSettings(licenseKey);
Expand Down
28 changes: 17 additions & 11 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.2@microblink/stable",
"package": "ConcurrentQueue/4.0.0@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 @@ -18,13 +18,13 @@
"description": "Additions to boost/config for additional compiler-specific codegen tweaking macros"
},
{
"package": "Eigen/3.3.9.1@microblink/stable",
"package": "Eigen/3.4.0@microblink/stable",
"url": "https://github.com/microblink/eigen-git-mirror",
"license": "Mozilla Public License Version 2.0",
"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.4@microblink/stable",
"package": "Err/1.1.5@microblink/stable",
"url": "https://github.com/microblink/err",
"license": "Boost Software License",
"description": "err - yet another take on C++ error handling"
Expand All @@ -42,7 +42,7 @@
"description": "Portable C++ Hashing Library"
},
{
"package": "MMap/0.2.1@microblink/stable",
"package": "MMap/0.3.3@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.3@microblink/stable",
"package": "OpenCV/4.5.5@microblink/stable",
"url": "https://github.com/microblink/opencv",
"license": "MIT",
"description": "Microblink's fork of OpenCV"
Expand All @@ -71,14 +71,20 @@
"license": "BSD 2-Clause \"Simplified\" License",
"description": "Proving pimpls do not require heap, exceptions or runtime polymorphism."
},
{
"package": "Protobuf/3.19.1@microblink/stable",
"url": "https://bitbucket.org/microblink/protobuffork/",
"license": "BSD",
"description": "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data"
},
{
"package": "RapidJSON/1.1.5@microblink/stable",
"url": "https://bitbucket.org/microblink/core-rapidjson",
"license": "BSD",
"description": "A fast JSON parser/generator for C++ with both SAX/DOM style API"
},
{
"package": "Sweater/10.1.1@microblink/stable",
"package": "Sweater/11.0.2@microblink/stable",
"url": "https://github.com/microblink/sweater",
"license": "MIT",
"description": "Humble Outer Dispatch"
Expand All @@ -90,13 +96,13 @@
"description": "UTF-8 with C++ in a Portable Way"
},
{
"package": "XNNPACK/20210616.1@microblink/stable",
"package": "XNNPACK/20220113.0@microblink/stable",
"url": "https://github.com/microblink/XNNPACK",
"license": "BSD",
"description": "XNNPACK library"
},
{
"package": "ZXing/3.0.1@microblink/stable",
"package": "ZXing/3.0.2@microblink/stable",
"url": "https://github.com/microblink/zxing",
"license": "Apache License 2.0",
"description": "ZXing (\"Zebra Crossing\") barcode scanning library for Java, Android"
Expand All @@ -114,13 +120,13 @@
"description": "cpuinfo is a library to detect essential for performance optimization information about host CPU"
},
{
"package": "emsdk_installer/2.0.27@microblink/stable",
"package": "emsdk_installer/3.1.1@microblink/stable",
"url": "https://github.com/microblink/conan-emsdk_installer",
"license": "MIT",
"description": "Emscripten is an Open Source LLVM to JavaScript compiler"
},
{
"package": "icu/69.1.4@microblink/stable",
"package": "icu/69.1.6@microblink/stable",
"url": "https://github.com/microblink/icu",
"license": "Unicode",
"description": "A mature, widely used set of libraries providing Unicode and Globalization support"
Expand All @@ -138,7 +144,7 @@
"description": "An Open, Extensible Image Format with Lossless Compression"
},
{
"package": "range-v3/0.10.0@microblink/stable",
"package": "range-v3/0.10.2@microblink/stable",
"url": "https://github.com/ericniebler/range-v3",
"license": "Boost Software License - Version 1.0 - August 17th, 2003",
"description": "Experimental range library for C++11/14/17"
Expand Down
Loading

0 comments on commit 06cb8a3

Please sign in to comment.