summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Build with core netsurf buildsystemHEADrelease/2.4.0-1netsurf/v2.4.0masterVincent Sanders2019-06-2610-264/+69
|
* NEWS for 2.4, updated version numbers (which I forgot in 2.3, grrr)v2.4.0Steven G. Johnson2019-05-106-58/+75
|
* ignore vscodeSteven G. Johnson2019-05-101-0/+1
|
* update for unicode 12.1 (#156)GOTOH Shunsuke2019-05-103-3310/+3314
|
* typoSteven G. Johnson2019-05-081-1/+1
|
* more infoSteven G. Johnson2019-05-081-1/+1
|
* note official releasesSteven G. Johnson2019-05-081-0/+2
|
* more compile infoSteven G. Johnson2019-05-081-10/+16
|
* Document HP-UX build support (#155)Michael Osipov2019-05-071-0/+13
|
* Improve portability of Make (#154)Michael Osipov2019-05-071-1/+3
| | | | Several options passed to $(CC) are not portable, e.g., for HP aCC. Move them to variables.
* [CMake] Add UTF8PROC_NO_INSTALL option (#152)past-due2019-04-171-8/+12
| | | | | | * [CMake] Add UTF8PROC_NO_INSTALL option * change to UTF8PROC_INSTALL
* copyright year updateSteven G. Johnson2019-04-091-1/+1
|
* fontforge is no longer neededSteven G. Johnson2019-04-091-2/+0
|
* Merge branch 'master' of https://github.com/JuliaLang/utf8procv2.3.0Steven G. Johnson2019-03-305-2/+16
|\
| * add utf8proc_unicode_version (#151)Steven G. Johnson2019-03-305-2/+16
| |
* | NEWS for 2.3Steven G. Johnson2019-03-301-42/+64
|/
* give up on Unifont for charwidth data (#150)Steven G. Johnson2019-03-303-5215/+4895
| | | | | | * fix CHARBOUND option for non-characters * give up on unifont for charwidth computation
* Merge branch 'master' of https://github.com/JuliaLang/utf8procSteven G. Johnson2019-03-302-15/+25
|\
| * fix CHARBOUND option for non-characters (#149)Steven G. Johnson2019-03-302-15/+25
| |
* | doc clarification (closing #110)Steven G. Johnson2019-03-301-1/+2
|/
* update for unicode 12 (#148)Steven G. Johnson2019-03-303-6853/+7064
|
* rebased cmake updates (#147)Steven G. Johnson2019-03-301-4/+10
| | | | | | | | | | | | | | | | | | | | | * Use a target property instead of CMAKE_C_FLAGS It is a global property, which is not great when importing utf8proc in other CMake projects. * Use target properties instead of add_definitions It modifies builds settings globally, which is not great when using the library as part of a bigger CMake build * Expose header search path with target_include_directories This makes it possible to use utf8proc in a larger CMake based project with add_subdirectory(utf8proc) target_link_libraries(my_app utf8proc) * more rebase fixes
* use Travis Julia support to get a modern Julia version (#146)Steven G. Johnson2019-03-301-12/+7
| | | use Travis include: to specify Julia version
* fix Julia script for Julia 1.0Steven G. Johnson2018-11-011-21/+50
|
* Pass users' flags (#141)Graham Inggs2018-11-012-11/+12
|
* Generate and install a pkg-config file. (#142)Michael Drake2018-11-013-1/+28
| | | | | | | | | | | | | | | | | | | | | | * Generate and install a pkg-config file. * Use Makefile libdir and includedir for pkg-config. This splits the prefix out from these variables, so that the same variables can be used to construct the pkg-config file. * Update the manifest for installation of pkg-config file. * Revert "Use Makefile libdir and includedir for pkg-config." This reverts commit a4cd6dc64a357dd5b91781045b3ac1c4679af97f. * Use Makefile libdir and includedir for pkg-config. This splits the prefix out from these variables, so that the same variables can be used to construct the pkg-config file.
* link fixSteven G. Johnson2018-07-251-1/+1
|
* badge updatesv2.2.0Steven G. Johnson2018-07-241-3/+2
|
* doc fixes, don't export stdint and limits.h values UINT16_MAX and SSIZE_MAXSteven G. Johnson2018-07-242-9/+11
|
* Merge branch 'master' of https://github.com/JuliaLang/utf8procSteven G. Johnson2018-07-247-9839/+10251
|\
| * update data and algorithms for Unicode 11 (#140)Steven G. Johnson2018-07-247-9839/+10251
| |
* | 2.2 release dateSteven G. Johnson2018-07-241-1/+3
| |
* | update copyright statement for data_generatorSteven G. Johnson2018-07-241-0/+2
| |
* | copyright year updatesSteven G. Johnson2018-07-243-3/+3
| |
* | note Unicode 11 in NEWSSteven G. Johnson2018-07-241-1/+2
|/
* charwidth=1 for soft hyphen and unassigned codepoints (#135)Steven G. Johnson2018-07-245-1963/+1978
| | | | | | | | | | | | | | | | * use width=1 for soft hyphen and for unassigned/PUA codepoints * don't count unassigned codepoints when comparing with system wcwidth * more tests * indentation fixes * NEWS for 135 * remove special-casing for arabic control characters affecting a span of numbers, which are sometimes zero-width and sometimes not * regenerate
* Enhance CMakeLists.txt (#138)Nehal J Wani2018-06-061-0/+13
| | | | | | * Change name of static library if building with msvc * Add install target for cmake
* uppercase mapping ß (U+00df) to ẞ (U+1E9E) (#134)Steven G. Johnson2018-05-025-1276/+1312
| | | | | | | | * uppercase(0x00df) = 0x1e9e * tests for titlecase and u+00df uppercase * NEWS, another test
* NEWS for upcoming 2.2 release, version bumpSteven G. Johnson2018-05-025-9/+27
|
* Case folding fixes (#133)Steven G. Johnson2018-05-026-4180/+4220
| | | | | | | | | | | | | | | | | | | | | * Fixes allowing for “Full” folding and NFKC_CaseFold compliance. * Only include C (Common) and F (Full) foldings from CaseFolding.txt. Removed S (Simple) since F & S are specified to be exclusive. * Extend UTF8PROC_IGNORE to also ignore unassigned codepoints (such as \u2065) which are specified as being discarded by NFKC_CF. * Document the changes to UTF8PROC_IGNORE in header. * Add NFKC_CF helper function with documentation. * restore old IGNORE behavior, add UTF8PROC_STRIPNA, rename to utf8proc_NFKC_Casefold, add a test * success message * test that IGNORE does not strip NA * data update * NFKC_Casefold shouldn't strip NA
* Static library support improvements (#123)past-due2018-04-293-9/+20
| | | | | | | | | | * `#define UTF8PROC_STATIC` to disable DLLEXPORT `#define UTF8PROC_STATIC` to disable DLLEXPORT * [CMake] Automatically define UTF8PROC_STATIC if BUILD_SHARED_LIBS is off * [Makefile] Support additional UTF8PROC_DEFINES, which can be used to specify flags like `-DUTF8PROC_STATIC`
* [CMake] Use target_compile_definitions to avoid affecting global definitions ↵past-due2018-04-271-5/+3
| | | | (#121)
* note Unicode 10 supportSteven G. Johnson2018-04-271-1/+1
|
* update to unicode 10 (#132)Steven G. Johnson2018-04-273-1742/+1829
|
* version bump to 2.1.1 (#131)v2.1.1Steven G. Johnson2018-04-275-9/+22
|
* fix make cleanSteven G. Johnson2018-04-271-1/+1
|
* missing return code, success message in test/misc.cSteven G. Johnson2018-04-271-0/+2
|
* make internal function staticSteven G. Johnson2018-04-271-1/+1
|
* added test for #128Steven G. Johnson2018-04-273-1/+31
|
* possible fix for #128 (#129)Benito van der Zander2018-04-271-3/+3
| | | Does this help? I do not really remember what I wrote back then