Skip to content

v3.1.0

Latest
Compare
Choose a tag to compare
@Felix-Dynamsoft Felix-Dynamsoft released this 01 May 21:17

Release Notes

SDK

[Features]

  • Updated DocumentScanner dependency to v1.2.0
  • Pluggable Scanners!
    • We've implemented a flexible pluggable scanner architecture that lets you integrate any custom scanner with MWC. This powerful new capability opens up endless integration possibilities while maintaining a consistent interface.
    • How it works
      • Implement the MWCScanner interface as shown below
      • On launch(), your scanner must return results that include
        • imageData as true
        • _imageData with a toBlob() function
        • status.code equals to EnumresultStatus.RS_SUCCESS
  export interface MWCScanner {
  initialize(): Promise<any>;
  launch(): Promise<any>;
  dispose(): void;
}
  • MWC Header color changed to separate the component
  • On Document View, Select All and Cancel button has been moved to the header
  • Demo UI/UX design improvement

[Fixes]

  • After deleting a page on Document View, the select mode will be toggled off

Docs

  • Updated version to 3.1.0