iOS Change history
2.4.2
Fix for mac silicon: Will now work on mac’s M1 using the mac embeded camera with an horizontal flip to make it usable.
2.4.1
QRCode :
- "fixed" some qrcode behavior to fit the common codes. If the encoding is not specified we're now trying to interpret it as UTF-8 first, and then latin1. (With is contradictory regarding the QR Code specifications, but it seems that a lot of the online generator generate UTF-8 content content by default.)
2.4.0
QRCode :
- Thanks to some qrbill printer that don't know how to print the right way, we've now added support for qrcode that are mirrored and/or printed with reversed black/white colors
2.3.0
Due to some refactoring to match the last spec of the qrcode there are a few breaking changes :
- It's now needed to use the
-all_load
in the "other linker flags" in your project, if you intend to use qrcodes. - The QR code returns have now changed. Please refer to the Important notes regarding the Quick response codes chapter.
-(void)SmartScannerFoundResult:( SmartScanner*)smartScan code:(NSString*) aCode ofType:(uint64_t)aType andSubType:(uint64_t)aSubType;
have been removed. and you should use-(void)SmartScan:(SmartScanner*) smartScanner foundResult:(SmartScanResult*)smartScannerResult;