Bump version to 2.14.2
This commit is contained in:
parent
43baa9a884
commit
311f6caaa8
36
README
36
README
|
@ -1,12 +1,44 @@
|
||||||
Fontconfig
|
Fontconfig
|
||||||
Font configuration and customization library
|
Font configuration and customization library
|
||||||
Version 2.14.1
|
Version 2.14.2
|
||||||
2022-10-21
|
2023-01-27
|
||||||
|
|
||||||
|
|
||||||
Check INSTALL for compilation and installation instructions.
|
Check INSTALL for compilation and installation instructions.
|
||||||
Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new.
|
Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new.
|
||||||
|
|
||||||
|
2.14.2
|
||||||
|
|
||||||
|
Akira TAGOH (13):
|
||||||
|
Fix the build issue on meson when -g option is added to c_args
|
||||||
|
Store artifacts for meson windows CI
|
||||||
|
Add FC_DESKTOP_NAME property
|
||||||
|
Add --with-default-sub-pixel-rendering option
|
||||||
|
Update po-conf/POTFILES.in
|
||||||
|
Ignore null pointer on Fc*Destroy functions
|
||||||
|
Convert tabs to spaces
|
||||||
|
Convert more tabs to spaces in docs
|
||||||
|
src/meson.build: Store correct paths to fontconfig.pc.
|
||||||
|
Fix a typo in description for HAVE_STDATOMIC_PRIMITIVES
|
||||||
|
Report more detailed logs instead of assertion.
|
||||||
|
Add some missing constant names for weight.
|
||||||
|
Adujst indentation between programlisting in fontconfig-user.sgml
|
||||||
|
|
||||||
|
Christopher Degawa (1):
|
||||||
|
meson: modify gperf test to remove sh dependency
|
||||||
|
|
||||||
|
Jason Francis (1):
|
||||||
|
meson: Update freetype2 git repository to upstream
|
||||||
|
|
||||||
|
Jean Abou Samra (1):
|
||||||
|
Ignore LC_CTYPE if set to "UTF-8"
|
||||||
|
|
||||||
|
Ondrej Balaz (1):
|
||||||
|
Expand ~ in glob
|
||||||
|
|
||||||
|
lilinjie (1):
|
||||||
|
fix typo
|
||||||
|
|
||||||
2.14.1
|
2.14.1
|
||||||
|
|
||||||
Akira TAGOH (6):
|
Akira TAGOH (6):
|
||||||
|
|
|
@ -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 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 Yes, it is a pain to synchronize version numbers. Unfortunately, it's
|
||||||
dnl not possible to extract the version number here from fontconfig.h
|
dnl not possible to extract the version number here from fontconfig.h
|
||||||
AC_INIT([fontconfig], [2.14.1], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
|
AC_INIT([fontconfig], [2.14.2], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
|
||||||
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz])
|
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz])
|
||||||
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ typedef int FcBool;
|
||||||
|
|
||||||
#define FC_MAJOR 2
|
#define FC_MAJOR 2
|
||||||
#define FC_MINOR 14
|
#define FC_MINOR 14
|
||||||
#define FC_REVISION 1
|
#define FC_REVISION 2
|
||||||
|
|
||||||
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('fontconfig', 'c',
|
project('fontconfig', 'c',
|
||||||
version: '2.14.1',
|
version: '2.14.2',
|
||||||
meson_version : '>= 0.57.0',
|
meson_version : '>= 0.57.0',
|
||||||
default_options: [ 'buildtype=debugoptimized'],
|
default_options: [ 'buildtype=debugoptimized'],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue