Bump version to 2.13.95
This commit is contained in:
parent
875878efb7
commit
53fa8a3801
68
README
68
README
|
@ -1,12 +1,76 @@
|
|||
Fontconfig
|
||||
Font configuration and customization library
|
||||
Version 2.13.94 (2.14 RC4)
|
||||
2021-06-28
|
||||
Version 2.13.95 (2.14 RC5)
|
||||
2022-02-01
|
||||
|
||||
|
||||
Check INSTALL for compilation and installation instructions.
|
||||
Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new.
|
||||
|
||||
2.13.95 (2.14 RC5)
|
||||
|
||||
Akira TAGOH (18):
|
||||
Do not set different score to non-string values
|
||||
Enable 11-lcdfilter-default.conf by default
|
||||
Bump the cache version to 8
|
||||
Reflect matching results to binding in FcPattern
|
||||
Fix a memory leak when trying to open a non-existing file
|
||||
Fix score estimation for postscriptname
|
||||
Resolves symlinks against <dir prefix="relative">
|
||||
Add the option to not build fontconfig cache during installation
|
||||
conf.d/60-latin.conf: Make Noto default.
|
||||
Fix some testcase fails for 14c265a1
|
||||
Fix the issue fail to obtain the style name
|
||||
Apply the change made by 23e46d1 again
|
||||
Initialize variable
|
||||
Add more description for fc-conflist.1 and FcConfigFileInfoIterInit.3
|
||||
Update CaseFolding.txt to Unicode 14
|
||||
Add an user font directory for Win32 to the default font path
|
||||
Add test/wrapper-script.sh to the archive
|
||||
Fix possible memory leaks in FcPatternObjectAddWithBinding
|
||||
|
||||
Alex Richardson (3):
|
||||
fcint: add casts to allow building with stricter compilers
|
||||
Add support for C11 stdatomic atomics
|
||||
FcCharSetPutLeaf(): Fix missing move of new_leaves contents
|
||||
|
||||
Behdad Esfahbod (1):
|
||||
If a varfont has 'opsz' axis, set FC_SIZE on default instant pattern
|
||||
|
||||
Ben Wagner (6):
|
||||
Add memory order constraints to C11 atomics
|
||||
Free local FcCache lock on contention
|
||||
Extend test thread args lifetime
|
||||
Fix warning about os2->achVendID cannot be NULL
|
||||
Back FcSerialize with open addressing hash table.
|
||||
Actually skip leading spaces in style name
|
||||
|
||||
Francesco Pretto (1):
|
||||
WIN32: Fix pGetSystemWindowsDirectory found initialized during FcConfigParseAndLoadFromMemory
|
||||
|
||||
Mehdi Sabwat (1):
|
||||
fcstat: add support for wasm-emscripten
|
||||
|
||||
Nirbheek Chauhan (1):
|
||||
meson: Remove summary() from version_compare() block
|
||||
|
||||
Pierre Ducroquet (5):
|
||||
Add a configuration to switch to monospace if spacing=100 is requested
|
||||
Reference the new configuration file
|
||||
Remove configuration file from POTFILES
|
||||
It seems this qual doesn't work on integers
|
||||
Always add the family name from spacing=100
|
||||
|
||||
Ryan Gonzalez (1):
|
||||
Ensure config.h is always included before stdlib headers
|
||||
|
||||
Ryan Schmidt (5):
|
||||
Avoid PCRE syntax when using grep
|
||||
Remove Bugzilla references
|
||||
Fix run-test.sh to work with BSD mktemp
|
||||
Restore fcatomic compatibility with Mac OS X 10.4.
|
||||
Fix FC_DEFAULT_FONTS on macOS and with BSD sed
|
||||
|
||||
2.13.94 (2.14 RC4)
|
||||
|
||||
Akira TAGOH (10):
|
||||
|
|
|
@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
|
|||
dnl version. This same version number must appear in fontconfig/fontconfig.h
|
||||
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
|
||||
dnl not possible to extract the version number here from fontconfig.h
|
||||
AC_INIT([fontconfig], [2.13.94], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
|
||||
AC_INIT([fontconfig], [2.13.95], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
|
||||
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz])
|
||||
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ typedef int FcBool;
|
|||
|
||||
#define FC_MAJOR 2
|
||||
#define FC_MINOR 13
|
||||
#define FC_REVISION 94
|
||||
#define FC_REVISION 95
|
||||
|
||||
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('fontconfig', 'c',
|
||||
version: '2.13.94',
|
||||
version: '2.13.95',
|
||||
meson_version : '>= 0.56.0',
|
||||
default_options: [ 'buildtype=debugoptimized'],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue