MakKi (makki_d)
653ac2a3be
Improve FinderPatternFinder.selectBestPatterns ( #1158 )
...
* rewrite FinderPatternFinder.selectBestPatterns
2019-04-18 06:42:52 -07:00
Sean Gilligan
0e8c46e262
core JAR Automatic-Module-Name: com.google.zxing ( #1155 )
...
Add Automatic-Module-Name entry of com.google.zxing
to the core JAR for Java Platform Module System.
See Issue #1154
2019-04-08 07:43:00 -05:00
MakKi (makki_d)
fedfa7a16c
Remove duplicate results when it has structured append header. ( #1147 )
...
* remove duplicate results in processStructuredAppend
* add whitespace
* remove illegal import
2019-03-22 05:51:06 -05:00
Sean Owen
8a53ade692
More sophisticated load protection, plus tests
2019-03-12 13:25:15 -05:00
Sean Owen
bc645c50bb
Small fixes, dep updates, removed warning about Android app, made web app params into annotations
2019-03-09 17:18:31 -06:00
Sean Owen
096cae7fcb
Use nanoTime for elapsed time
2019-02-10 17:46:32 -06:00
Sean Owen
fc5774ff13
Add note about Play store removal
2019-02-10 11:55:58 -06:00
fitchfuloffun
eb6bea6ed3
Fixing checksum error in UPC-E barcodes ( #1130 )
...
* Converting to UPC-A before checking for matching check digits
2019-02-04 08:54:41 -06:00
Sean Owen
5e8c3d490f
Disable checkstyle check
2019-01-25 22:22:12 -06:00
Sean Owen
9617a90616
Minor updates to plugins and from code inspection
2019-01-25 21:20:56 -06:00
Sean Owen
a81dda90ba
Small code improvements from inspections
2019-01-19 20:58:09 -06:00
Davod
d897ad7f72
Corrections ( #1125 )
...
* Update about1d.html
* Update about2d.html
* Update license.html
* Update scanning.html
* Corrections by Amitie10g
2018-12-30 18:30:27 -06:00
Sean Owen
d6d1a223bf
Add nu-book/zxing-cpp
2018-12-17 11:28:49 -06:00
Sean Owen
3a6891d268
Clarify CONTRIBUTING.md
2018-12-07 07:04:48 -06:00
John Hall
1765887315
Avoid book search crash on invalid intent ( #1114 )
2018-12-05 13:05:12 -06:00
Sean Owen
22b8a0a983
Clarify project is in maintenance mode
2018-11-27 12:44:57 -08:00
MakKi (makki_d)
6b3bf9ea40
fix typo ( #1111 )
2018-11-23 05:58:29 -06:00
MakKi (makki_d)
79bdb2c84e
Continue in codeset A when character encoded single number or FNC1-4 in Code128Writer ( #1108 )
...
* Continue in code A when character encodes FNC1-4 in Code128Writer
* FNC1 in codeset A
* Single number also can continue in codeset A
2018-11-15 09:00:01 -06:00
MakKi (makki_d)
e636498b5e
Support Full-ASCII in Code93Writer ( #1104 )
...
* support extended characters in Code93Writer
* remove redundancy
* add test for convertToExtended
* thanks for review
* fix comment, use package-private for testing
2018-11-09 08:05:07 -06:00
MakKi (makki_d)
b31e090239
Optimize code width calculation in Code39Writer ( #1103 )
...
Every code39 character has 9 bars containing 3 wide bars, and separated by a white bar.
(9-3)*1 + 3*2 + 1 = 13
2018-11-04 09:57:58 -06:00
MakKi (makki_d)
58feb44536
fix code93 extended character decoder ( #1101 )
2018-11-02 10:51:39 -05:00
Sean Owen
1f4aaad628
Minor dependency and inspection changes
2018-10-25 07:43:35 -05:00
Pasan Manudul Amarasiri
71f5773d8e
Added a null check for relative points ( #1096 )
2018-10-23 07:36:11 -05:00
MakKi (makki_d)
c13216ce08
Rewrite DataMatrix Detector ( #1080 )
...
* rewrite datamatrix detector
* comments
* remove unused
* modify test
* fix CI errors
2018-10-04 04:24:38 -05:00
Ben John
c7c016a20f
Corrected exception message in EAN8Writer ( #1073 )
...
- according to EAN13Writer, both possibilities should be reflected within the message
2018-09-24 07:54:10 -05:00
Ben John
e6937d25e8
Corrected exception message in UPCEWriter ( #1074 )
...
- according to EAN13Writer, both possibilities should be reflected within the message
2018-09-24 07:53:11 -05:00
Sean Owen
e9b9fa23fd
Make DoS test case possibly less flaky
2018-09-22 11:49:46 -05:00
Ben John
5a282c5e05
Fixed duplicated assertion ( #1072 )
2018-09-21 19:55:15 -05:00
Sean Owen
ea0a9a670f
Barcode Scanner 4.7.8
2018-09-11 08:59:25 -05:00
Sean Owen
36f38c5beb
Many more changes from recent IJ inspections
2018-09-03 15:18:54 -05:00
Sean Owen
431ae9e06e
Catch more exceptions in web app and update site skin
2018-08-30 16:47:18 -05:00
Sean Owen
ab4ebad305
Make sure to stop processing after all error conditions (errorResponse calls)
2018-08-30 15:12:06 -05:00
Sean Owen
4fbcadfd37
And back out Spring framework update down to 4.x
2018-08-30 11:37:50 -05:00
Sean Owen
65992d408c
Back out bnd plugin update
2018-08-30 11:24:10 -05:00
Sean Owen
a010db7fe2
Explicitly specify javadoc encoding, fix a few doc warnings, update plugins again
2018-08-30 11:13:55 -05:00
Sean Owen
0b9b39a74f
Issue #1051 : to avoid letting user input into logs, sanitize input and/or just remove unimportant log statements in Android, web app
2018-08-07 19:28:06 -05:00
Sean Owen
2179c52ee3
Tighten definition of what's accepted as a URI, to exclude some potentially malicious ones
2018-08-05 19:07:19 -05:00
Felix Bergmann
45d89bce80
Directory Bug ( #1046 )
...
The correct pattern to make a directory is: `if (!dir.mkdirs() && !dir.isDirectory()) { error }` mkdirs checks for exists so the exists check is redundant.
2018-07-29 17:07:39 -05:00
Sean Owen
96d974f44d
A few more tests and fix handling of data: URIs in command line decoder
2018-07-24 18:16:34 -05:00
Sean Owen
a0a4d8ff80
A few more tests and fix handling of data: URIs in command line decoder
2018-07-24 17:59:52 -05:00
Sean Owen
9065c4daee
Improve DoS test case to be more robust to timing
2018-07-24 08:20:41 -05:00
Sean Owen
d907537c05
Fix bug in decoding data URIs; Add tests in javase/, zxingorg/
2018-07-23 21:14:47 -05:00
Andreas Niederle
e1b127c13a
fix binary shift cost heuristics ( #1044 )
...
* fix binary shift cost heuristics
* corrected some indents
2018-07-23 08:59:35 -05:00
Koen van Vliet
48bb5fd860
Check if characters are digits for EAN_13, EAN_8, ITF and UPC_EAN_EXTENSION ( #1039 )
...
* Check if characters are digits
* Use regex to check if input is valid. Added tests
* Create checkNumeric method
* Remove unused locals, moved attributes to top of class.
* Simplify testcase
* Reduce repeated code
* Fixed indentation
2018-07-10 13:05:37 -05:00
MakKi (makki_d)
0cf3b9be71
Fix QR-code hanzi segment decoder ( #1033 )
...
* Fix QR-code hanzi segment decoder
* remove unicode character
2018-06-20 13:52:44 -04:00
MakKi (makki_d)
15b09aeda5
remove spacing from head of polynomial string ( #1032 )
2018-06-19 13:53:30 -04:00
kdwoo1217
fc057169cd
Fixed strings.xml Korean ( #1029 )
2018-06-13 20:38:29 -05:00
Sean Owen
50baa8afe3
Downgrade to Spring Framework 4 for Java 7
2018-06-13 09:26:33 -05:00
Sean Owen
087f8a727c
Shorten error response for floods of requests; experiment with testing web components
2018-06-13 09:11:31 -05:00
Sean Owen
d258efbed0
Oops, fix checkstyle
2018-06-02 23:07:13 -05:00