This repository was archived by the owner on Aug 26, 2025. It is now read-only.
forked from zxingify/zxingify-objc
-
Notifications
You must be signed in to change notification settings - Fork 1
Master #7
Open
markhim
wants to merge
400
commits into
Stocard:long-lines
Choose a base branch
from
zxingify:master
base: long-lines
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Master #7
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fixed maxicode implementation, closes #414
Added alpha correction for pixels which should indicate white area
Ported 0718d8a45fabe1dcd837088a8c66f45414500ba8
Ported 30dc420bab72f044c923ab928a27b4fda72315a8
More ZXing Ports
Ported 75c51f93feb66a96b6604af4804053cbbfb8d2ea
Ported 2d02cb05ea288d14f5691e25628d21349865c5db
…d adjusted test cases Ported 24681e8488d9a73652ecba9a14b8bc2434ebaade
Ported c219e28d5695fddb62abf8ce8184a0e53a314ad2
Ported b8c3d08e199cc3bc687ca505007785f1561224a4
Ported 25776d82d9b50838ca6cab7df220146103216c7b
Ported 6546dc5863ac50a2b1a43925d8ab4fe313a887dd
Fix compilation for Mac Catalyst
Added ability to scan inverted barcodes automatically
Fixes #506
Fix compilation
This commit fixes 2 occurrences of sizeof(array) which have been used to replace the upstream use of the Java Array.length function. It happens that in Objective-C sizeof returns the number of the allocated cells while in Java length returns the actual number of entries. The array here has more allocated than used cells (40 vs 27) which means that the subsequent else clauses are never reached and some symbols like the FNC1 character are interpreted incorrectly. A constant value (27) has been used as a solution like in the following else statement. The alternative to set the array allocation to 27 seems to be dangerous in regard to subsequent changes by unaware developers.
Fix parsing of VINs
Set 'Defines Module' option for 'OS X Framework' target
* Set MACOSX_DEPLOYMENT_TARGET=10.15 to gain access to AVCaptureDeviceDiscoverySession, which replaces deprecated AVCaptureDevice devicesWithMediaType: * Change README to reflect the new minimum OS levels
in README, podspec, and BarcodeScanner sample
Fix Xcode 14.3 which supports only iOS 11.0+
Update ZXVINResultParser.m
Marked as allowed to be used in extensions.
Fix datamatrix 05 and 06 macro in ios port
fix decoding of special characters in TEXT and C40 blocks
Update project.pbxproj
Sample app fixes
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.