-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule libqrencode
updated
43 files
+53 −0 | .github/workflows/cmake-windows.yml | |
+46 −0 | .github/workflows/cmake.yml | |
+21 −0 | .github/workflows/configure.yml | |
+1 −0 | .gitignore | |
+24 −8 | CMakeLists.txt | |
+143 −12 | ChangeLog | |
+28 −0 | NEWS | |
+42 −10 | README.md | |
+1 −1 | bitstream.c | |
+4 −3 | configure.ac | |
+25 −25 | mask.c | |
+4 −4 | mask.h | |
+4 −4 | mmask.c | |
+2 −2 | mqrspec.c | |
+83 −60 | qrenc.c | |
+26 −6 | qrencode.1.in | |
+69 −18 | qrencode.c | |
+7 −7 | qrencode.h | |
+60 −49 | qrinput.c | |
+1 −0 | qrinput.h | |
+2 −2 | qrspec.c | |
+5 −5 | rsecc.c | |
+31 −29 | split.c | |
+14 −3 | tests/CMakeLists.txt | |
+6 −5 | tests/Makefile.am | |
+19 −9 | tests/common.c | |
+2 −1 | tests/common.h | |
+13 −13 | tests/decoder.c | |
+31 −1 | tests/prof_qrencode.c | |
+31 −1 | tests/pthread_qrencode.c | |
+7 −2 | tests/test_bitstream.c | |
+27 −2 | tests/test_estimatebit.c | |
+3 −1 | tests/test_mask.c | |
+3 −1 | tests/test_mmask.c | |
+19 −7 | tests/test_monkey.c | |
+3 −1 | tests/test_mqrspec.c | |
+92 −23 | tests/test_qrencode.c | |
+137 −1 | tests/test_qrinput.c | |
+13 −5 | tests/test_qrspec.c | |
+3 −2 | tests/test_rs.c | |
+3 −2 | tests/test_split.c | |
+3 −2 | tests/test_split_urls.c | |
+27 −8 | tests/view_qrcode.c |