|
e5cbbafe
|
2020-02-23T15:12:09
|
|
Indentation fixes and some updates.
|
|
3486d173
|
2020-02-12T01:37:28
|
|
Add vcpkg installation instructions
|
|
13b159f9
|
2018-11-09T10:26:54
|
|
Document updates.
|
|
7f4e55a9
|
2018-11-07T10:07:39
|
|
configure.ac, png_CFLAGS needs to be quoted
Otherwise this error:
./configure: line 13170: test: too many arguments
|
|
953a31e5
|
2018-07-28T01:00:35
|
|
Merged #133. (Thanks to @sdf5)
|
|
43949633
|
2018-07-27T11:51:40
|
|
Change CMAKE_SOURCE_DIR to CMAKE_CURRENT_SOURCE_DIR in CMAKE_MODULE_PATH
|
|
ccbcb77b
|
2018-06-14T18:29:56
|
|
UTF8 mode now supports ANSI256 color.
Thanks to András Veres-Szentkirályi.
|
|
6eae956f
|
2018-06-12T17:05:13
|
|
added ANSI256UTF8 format
ANSI256 uses full blocks (1 pixel -> 2 characters), while ANSIUTF8 uses
3/4 bit color codes, and qrencode missed a combination of the two, which
- uses UTF-8 half blocks (2 pixel -> 1 character) and
- uses 8 bit color codes.
|
|
b0920af9
|
2018-06-07T16:22:24
|
|
Merged #131. (Thanks to @mgorny)
|
|
3a6954e0
|
2018-06-07T08:09:07
|
|
cmake: Always build libdecoder as static library
libdecoder is used only for tests, and implicitly relies
on printBinary() function that is not included in the library. This
causes it to fail to build as a shared library on systems strict about
symbols (Darwin or e.g. Linux with -Wl,-z,defs). Force static library
to avoid those problems.
|
|
8cfd42d7
|
2018-06-07T08:05:25
|
|
cmake: Support pthread in the main library
Improve pthread support for the main library when building via CMake.
Explicitly request pthread when multiple threading options are available
since the code is using pthread directly. Set HAVE_LIBPTHREAD to
trigger the code, link the library and list it in pkg-config file.
|
|
73e9c83b
|
2018-06-07T07:54:03
|
|
cmake: Update paths in generated pkg-config file
Update paths inside the pkg-config file to respect GNUInstallDirs.
Fixes: 07805253ab5d115cb2918b4860a559967ab98bed
|
|
6b344a1e
|
2018-06-06T17:05:24
|
|
Some documentation updates.
|
|
6e18eb2c
|
2018-06-06T17:01:26
|
|
Merged #129.
|
|
9a857559
|
2018-06-06T17:00:56
|
|
Cherry-picked 4.0.2 release news manually.
|
|
860b8fec
|
2018-06-05T18:08:45
|
|
Fix running test_qrspec when building out-of-source
It is a common practice for CMake builds (and less common but still
valid for autotools) to build out-of-source, that is use a separate
directory for built executables than for sources. However, when that is
used, test_qrspec is unable to find "frame" and crashes. Fix it by
passing the source directory as compile-time definition, and therefore
making test_qrspec use the correct path.
|
|
c89ac125
|
2018-06-06T16:51:10
|
|
Cherry-picked 4.0.2 release log manually.
|
|
bdf58142
|
2018-06-06T16:31:42
|
|
Merged #127 and #128.
|
|
5b40b9b7
|
2018-06-06T16:25:25
|
|
Acknowledgments updated.
|
|
fa8b13c5
|
2018-06-06T16:20:44
|
|
Preparing 4.1 branch.
|
|
07805253
|
2018-06-05T17:44:45
|
|
cmake: Use GNUInstallDirs for configurable install directories
Use CMake GNUInstallDirs module to provide variables for configurable
install directories. This is necessary to install libqrencode on amd64
systems where libraries belong in /usr/lib64 rather than /usr/lib.
While at it, make all install directories configurable for user's
convenience.
|
|
838c2e58
|
2018-06-05T17:37:58
|
|
tests: Add missing test_basic.sh to EXTRA_DIST
Add test_basic.sh to EXTRA_DIST to ensure that it's present in release
tarballs. It's missing in 4.0.1 release which breaks test_all.sh.
|
|
7c83deb8
|
2018-06-04T20:13:56
|
|
Bumped version to 4.0.1.
|
|
e1a91d08
|
2018-06-04T19:44:31
|
|
Tabs expanded.
|
|
fb59fd29
|
2018-06-04T18:21:53
|
|
STATIC_IN_RELEASE is now set to "static" when WITH_TESTS is disabled. (closes #126)
|
|
3dd0cd51
|
2018-06-03T00:05:39
|
|
Cherry-picked 62538e.
|
|
201a5e27
|
2018-06-02T21:36:46
|
|
Added "WITHOUT_PNG" option that builds qrencode without PNG support. (closes #125)
|
|
34bba927
|
2018-06-01T18:04:43
|
|
Added some notes of how to use autogen.sh. (closed #122) (Thanks to @thebunnyrules)
|
|
17acddff
|
2017-10-20T12:32:29
|
|
Documentation work.
|
|
2b9af95c
|
2017-10-20T12:32:20
|
|
Short option '-I' for '--inline' disabled.
|
|
22296ecf
|
2017-10-16T11:59:23
|
|
Adds the --inline option, which omits the xml tag for SVG output.
|
|
a50e2db8
|
2017-10-13T13:12:45
|
|
Documentation modified.
|
|
1a0db718
|
2017-10-13T12:11:39
|
|
Merged #108. Thanks to @Ation.
|
|
bbfe139c
|
2017-10-13T02:05:57
|
|
Fix build on windows with Visual Studio
|
|
06494038
|
2017-10-08T02:17:28
|
|
Fixed some warnings. (closing #89 and #102)
|
|
c4e3b9c6
|
2017-10-06T14:01:48
|
|
Fixed some warnings. (closing #89 and #102)
|
|
7a43e4d5
|
2017-10-06T13:46:30
|
|
Some variables' type changed from int to unsigned int.
|
|
f4031267
|
2017-10-06T13:36:54
|
|
Fixed some warnings. (closing #89 and #102)
|
|
b25ff860
|
2017-10-06T01:53:02
|
|
Fixed some warnings.
|
|
f318155d
|
2017-10-06T01:27:50
|
|
Revert "Some variables' type changed from int to unsigned int. (closing #89 and #102)"
This reverts commit 44290eb817f6f5ccb1137372f115d4b7633f0cb3.
|
|
72c039f4
|
2017-10-06T01:23:13
|
|
Fixed some warnings.
|
|
f6e8ba63
|
2017-10-06T00:05:45
|
|
A new testing script introduced.
|
|
cf2b1a81
|
2017-09-21T15:55:51
|
|
Revert 67c89c40.
|
|
da259339
|
2017-09-12T21:07:31
|
|
Documentation fix.
|
|
f653e232
|
2017-09-11T17:16:54
|
|
Symbol data representation of QRcode object has been slightly changed.
|
|
5040f2bc
|
2017-10-05T15:02:21
|
|
Code cleanups.
|
|
dc45e212
|
2017-10-03T00:43:21
|
|
Added a new test function.
|
|
45c5bb70
|
2017-10-03T00:43:10
|
|
Removed unused function.
|
|
a350b010
|
2017-10-03T00:11:30
|
|
Fixed some warnings.
|
|
30a987bc
|
2017-10-02T23:12:23
|
|
Comment format fixes.
|
|
a4ce9a97
|
2017-10-02T22:53:24
|
|
Fixed some warnings.
|
|
44290eb8
|
2017-10-02T22:07:55
|
|
Some variables' type changed from int to unsigned int. (closing #89 and #102)
|
|
f3d7e2fa
|
2017-10-02T21:53:21
|
|
Fixed some warnings.
|
|
0fcd787a
|
2017-10-02T13:34:01
|
|
Format fixes.
|
|
2e0c31d4
|
2017-10-02T13:17:04
|
|
Fixed some warnings.
|
|
63eca205
|
2017-10-02T12:56:24
|
|
Some variables' type changed from int to size_t. (closing #89 and #102)
|
|
96623244
|
2017-10-02T12:46:33
|
|
Reserved macro names are replaced.
|
|
6b9b2148
|
2017-10-02T12:38:12
|
|
Memory alignment improved.
|
|
5c403063
|
2017-09-29T14:02:52
|
|
Some variables' type changed from int to size_t. (see #89 and #102)
|
|
38327c28
|
2017-09-29T13:50:29
|
|
Format fixes.
|
|
07f3c5d4
|
2017-09-21T15:11:23
|
|
Documentation updated.
|
|
839e9b33
|
2017-09-21T14:48:39
|
|
Version 4.0.0 has been released.
|
|
f82122a5
|
2017-09-11T21:40:57
|
|
Fixed the URL to the badge of Travis CI.
|
|
321665a5
|
2017-09-11T16:30:53
|
|
Almost ready to release version 4.0.0.
|
|
b6769119
|
2017-09-11T16:25:19
|
|
Documentation work.
|
|
0ac90bb7
|
2017-09-11T16:14:13
|
|
README generation rule improved.
|
|
817e167d
|
2017-09-11T15:15:47
|
|
SPEC file has been removed. (closes #105)
|
|
60eb011a
|
2017-09-11T15:10:40
|
|
Test script for qrencode command has been added. Dedicated to @c-273 (#102).
|
|
b64fad4d
|
2017-09-11T14:49:15
|
|
Some documentation work.
|
|
67c89c40
|
2017-09-11T14:48:17
|
|
Some documentation work.
|
|
8e4c09e4
|
2017-09-11T14:40:42
|
|
Documentation updates.
|
|
3e629c7b
|
2017-09-11T14:38:53
|
|
data buffer now allocated as a static array.
|
|
077f357c
|
2017-09-08T00:15:11
|
|
Added 'README' to the ignore list.
|
|
0d5d1d09
|
2017-09-07T23:43:12
|
|
Added 'Katsumi Saito' to the section of ACKNOWLEDGMENTS.
|
|
5e244e4d
|
2017-09-07T23:36:41
|
|
Added a new rule to generate README from README.md.
|
|
6af0665b
|
2017-09-07T15:25:50
|
|
Configuration improved.
|
|
c520fac6
|
2017-09-07T14:42:27
|
|
Bumped version to 4.0.0.
|
|
3a35cb1d
|
2017-09-07T14:41:31
|
|
Newly added.
|
|
d3824495
|
2017-09-07T14:40:59
|
|
Added 'CTestTestfile.cmake'.
|
|
5ef47569
|
2017-09-07T13:53:41
|
|
Added test_configure.sh to the list.
|
|
7581de60
|
2017-09-07T13:52:50
|
|
Added some EXTRA_DIST files.
|
|
c3b05cd7
|
2017-09-07T13:47:48
|
|
Added some progress messages.
|
|
6d503504
|
2017-09-07T12:43:21
|
|
Copyright year updated for the next major update.
|
|
85a3f66c
|
2017-09-07T00:09:07
|
|
Copyright year updated.
|
|
69edfbdf
|
2017-09-07T00:08:55
|
|
Documentation updated.
|
|
7d196877
|
2017-09-06T23:48:12
|
|
Updated to the newer version bundled with gettext-0.19.8.1.
|
|
d43d4c07
|
2017-09-06T04:47:11
|
|
Documentation updates.
|
|
b6fc0275
|
2017-09-06T04:37:14
|
|
Documentation updated.
|
|
51f27950
|
2017-09-06T04:36:57
|
|
Copyright year updated.
|
|
c93b2399
|
2017-09-06T04:35:46
|
|
QRcode_clearCache() revived and deprecated.
|
|
1e72d80e
|
2017-09-06T04:35:32
|
|
Copyright year updated.
|
|
6f2c0794
|
2017-09-06T03:08:52
|
|
Documentation update.
|
|
e6fe3f1d
|
2017-09-02T13:22:26
|
|
Replaced AC_PROG_RANLIB with LT_INIT.
|
|
a4fa46b5
|
2017-08-04T18:27:11
|
|
Merged #101. Thanks to @KangLin.
|
|
9908062b
|
2017-08-04T10:07:46
|
|
Fix: Getopt.h is checked only by WITH_TOOLS
|
|
1ef82bd2
|
2017-03-15T15:24:02
|
|
Merged #96. Thanks to @vanillahsu.
|
|
be5a88f8
|
2017-03-04T19:36:29
|
|
1: Add version of shared library.
2: fix libqrencode.pc.
|
|
785c5875
|
2017-03-15T12:12:05
|
|
The URI to the primary site has been updated.
|
|
b6a1c7ce
|
2017-03-15T12:07:05
|
|
ACKNOWLEDGMENTS has been updated.
|
|
bfb798ca
|
2017-02-28T12:02:21
|
|
Fix typos.
|