Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ import useI18n from '../hooks/use-i18n';
* @prop {number} moireraw Detected image raw moiré.
* @prop {number} dpi Detected image resolution.
*
* @see https://github.com/Acuant/JavascriptWebSDKV11/tree/11.4.3/SimpleHTMLApp#acuantcamera
* @see https://github.com/Acuant/JavascriptWebSDKV11/tree/11.4.4/SimpleHTMLApp#acuantcamera
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const AcuantContext = createContext({
* @param {AcuantContextProviderProps} props Props object.
*/
function AcuantContextProvider({
sdkSrc = '/acuant/11.4.3/AcuantJavascriptWebSdk.min.js',
sdkSrc = '/acuant/11.4.4/AcuantJavascriptWebSdk.min.js',
credentials = null,
endpoint = null,
children,
Expand Down
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion public/acuant/11.4.3/AcuantJavascriptWebSdk.min.js

This file was deleted.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
1 change: 1 addition & 0 deletions public/acuant/11.4.4/AcuantJavascriptWebSdk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/verify/capture-doc
2 changes: 1 addition & 1 deletion public/verify/capture_doc
2 changes: 1 addition & 1 deletion public/verify/doc_auth
4 changes: 2 additions & 2 deletions spec/requests/acuant_sdk_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
expect(response.status).to eq(200)
expect(response.headers['Content-Type']).to eq('application/javascript')
expect(response.body).to eq(
File.read('public/acuant/11.4.3/AcuantImageProcessingWorker.min.js'),
File.read('public/acuant/11.4.4/AcuantImageProcessingWorker.min.js'),
)
end

Expand All @@ -38,7 +38,7 @@
expect(response.status).to eq(200)
expect(response.headers['Content-Type']).to eq('application/wasm')
expect(response.body.length).to eq(
File.size('public/acuant/11.4.3/AcuantImageProcessingWorker.wasm'),
File.size('public/acuant/11.4.4/AcuantImageProcessingWorker.wasm'),
)
end

Expand Down