]> git.wh0rd.org - fontconfig.git/log
fontconfig.git
13 years agoBug 20113 - Uighur (ug) orthography incomplete
Behdad Esfahbod [Mon, 14 Mar 2011 20:28:53 +0000 (17:28 -0300)] 
Bug 20113 - Uighur (ug) orthography incomplete

13 years agoDocumentation fixes
Brad Hards [Fri, 11 Mar 2011 22:43:42 +0000 (19:43 -0300)] 
Documentation fixes

13 years agoRemove --enable-maintainer-mode from autogen.sh
Behdad Esfahbod [Fri, 11 Mar 2011 22:40:38 +0000 (19:40 -0300)] 
Remove --enable-maintainer-mode from autogen.sh

13 years agoUpdate CaseFolding.txt to Unicode 6.0
Behdad Esfahbod [Fri, 21 Jan 2011 21:34:52 +0000 (16:34 -0500)] 
Update CaseFolding.txt to Unicode 6.0

13 years agoRemove AM_MAINTAINER_MODE
Behdad Esfahbod [Tue, 4 Jan 2011 03:18:38 +0000 (22:18 -0500)] 
Remove AM_MAINTAINER_MODE

That macro is simply broken.

This was also brought up in:
Bug 32679 - fontconfig-2.8.0 does not cross compile

13 years agoFix assertion failure on le32d4
Behdad Esfahbod [Sun, 2 Jan 2011 20:25:29 +0000 (13:25 -0700)] 
Fix assertion failure on le32d4

Reported by Jon TURNEY.

13 years agoDoc nit
Behdad Esfahbod [Tue, 28 Dec 2010 08:58:16 +0000 (02:58 -0600)] 
Doc nit

13 years agoSkip <range> elements with begin > end
Behdad Esfahbod [Tue, 28 Dec 2010 08:55:31 +0000 (02:55 -0600)] 
Skip <range> elements with begin > end

13 years agoAdd <range> support for <blank> into the DTD
Behdad Esfahbod [Tue, 28 Dec 2010 08:52:06 +0000 (02:52 -0600)] 
Add <range> support for <blank> into the DTD

13 years agoAllow editing charset and lang in target="scan"
Behdad Esfahbod [Tue, 28 Dec 2010 08:50:16 +0000 (02:50 -0600)] 
Allow editing charset and lang in target="scan"

Merge commit 'fa269cf812ee304534b0e4c44662202496008db0'

Fixes:
Bug 31969 - Can't modify charset in target="scan"
Bug 23758 - Can't modify lang in target="scan"

13 years agoBump version
Behdad Esfahbod [Tue, 28 Dec 2010 07:28:39 +0000 (01:28 -0600)] 
Bump version

13 years agoMake fc-arch stuff cross-compiling-safe
Behdad Esfahbod [Tue, 28 Dec 2010 06:59:19 +0000 (00:59 -0600)] 
Make fc-arch stuff cross-compiling-safe

Fixes:
Bug 32679 - fontconfig-2.8.0 does not cross compile
Bug 25462 - Cross-compilation doesn't work

13 years agoMake most generated-files cross-compiling-safe
Behdad Esfahbod [Mon, 27 Dec 2010 19:20:47 +0000 (13:20 -0600)] 
Make most generated-files cross-compiling-safe

By simply including a copy in the tarball.

Remains fc-arch which is trickier.

13 years agoadd some documents
Akira TAGOH [Thu, 9 Dec 2010 02:57:24 +0000 (11:57 +0900)] 
add some documents

13 years agoAdd editing langset feature.
Akira TAGOH [Mon, 6 Dec 2010 03:38:18 +0000 (12:38 +0900)] 
Add editing langset feature.

The syntax to add any langset to the langset table looks like:

<match target="scan">
    <test name="family">
        <string>Buggy Sans</string>
    </test>
    <edit name="lang" mode="assign">
        <plus>
            <name>lang</name>
            <langset>
                <string>zh-cn</string>
                <string>zh-tw</string>
            </langset>
        </plus>
    </edit>
</match>

To remove any langset from the langset table:

<match target="scan">
    <test name="family">
        <string>Buggy Sans</string>
    </test>
    <edit name="lang" mode="assign">
        <minus>
            <name>lang</name>
            <langset>
                <string>ja</string>
            </langset>
        </minus>
    </edit>
</match>

13 years agoAdd the range support in blank element
Akira TAGOH [Mon, 6 Dec 2010 03:18:23 +0000 (12:18 +0900)] 
Add the range support in blank element

13 years agoadd some document for range and charset.
Akira TAGOH [Thu, 9 Dec 2010 02:32:26 +0000 (11:32 +0900)] 
add some document for range and charset.

13 years agoAdd charset editing feature.
Akira TAGOH [Mon, 6 Dec 2010 03:10:17 +0000 (12:10 +0900)] 
Add charset editing feature.

The syntax to add any characters to the charset table looks like:

<match target="scan">
    <test name="family">
        <string>Buggy Sans</string>
    </test>
    <edit name="charset" mode="assign">
        <plus>
            <name>charset</name>
            <charset>
                <int>0x3220</int>    <!-- PARENTHESIZED IDEOGRAPH ONE -->
            </charset>
        </plus>
    </edit>
</match>

To remove any characters from the charset table:

<match target="scan">
    <test name="family">
        <string>Buggy Sans</string>
    </test>
    <edit name="charset" mode="assign">
        <minus>
            <name>charset</name>
            <charset>
                <int>0x06CC</int>    <!-- ARABIC LETTER FARSI YEH -->
                <int>0x06D2</int>    <!-- ARABIC LETTER YEH BARREE -->
                <int>0x06D3</int>    <!-- ARABIC LETTER YEH BARREE WITH HAMZA ABOVE -->
            </charset>
        </minus>
    </edit>
</match>

You could also use the range element for convenience:

...
            <charset>
                <int>0x06CC</int>    <!-- ARABIC LETTER FARSI YEH -->
                <range>
                    <int>0x06D2</int>    <!-- ARABIC LETTER YEH BARREE -->
                    <int>0x06D3</int>    <!-- ARABIC LETTER YEH BARREE WITH HAMZA ABOVE -->
                </range>
            </charset>
...

13 years agoBug 28958 - lang=en matches other langs
Behdad Esfahbod [Tue, 7 Dec 2010 23:48:56 +0000 (18:48 -0500)] 
Bug 28958 - lang=en matches other langs

Patch from Akira TAGOH.

13 years agoFix returned value
Behdad Esfahbod [Thu, 2 Dec 2010 13:13:59 +0000 (08:13 -0500)] 
Fix returned value

13 years agoCleanup copyright notices to replace "Keith Packard" with "the author(s)"
Behdad Esfahbod [Wed, 10 Nov 2010 21:45:42 +0000 (16:45 -0500)] 
Cleanup copyright notices to replace "Keith Packard" with "the author(s)"

13 years agoAdd more copyright owners
Behdad Esfahbod [Wed, 10 Nov 2010 20:27:10 +0000 (15:27 -0500)] 
Add more copyright owners

13 years agofontconfig.pc.in: Add sysconfdir, localstatedir, and PACKAGE
Jeremy Huddleston [Wed, 3 Nov 2010 08:08:12 +0000 (01:08 -0700)] 
fontconfig.pc.in: Add sysconfdir, localstatedir, and PACKAGE

In the default case, cachedir and confdir will evaluate to something
referencing these other variables (which wouldn't otherwise be defined
in the pkg-config file.

Fixes a regression introduced by 81b542b50f82f8a0ad9f38f7d913fe5433631166

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Tested-by: Jon TURNEY <jon.turney@dronecode.org.uk>
13 years agofontconfig.pc: Add variables for confdir and cachedir
Jeremy Huddleston [Wed, 6 Oct 2010 18:21:29 +0000 (11:21 -0700)] 
fontconfig.pc: Add variables for confdir and cachedir

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
13 years agoBug 24729 - [ne_NP] Fix ortho file
Behdad Esfahbod [Tue, 21 Sep 2010 17:18:05 +0000 (13:18 -0400)] 
Bug 24729 - [ne_NP] Fix ortho file

Exclude three characters (U+090C..090E) from Nepalese.

13 years ago[fc-lang] Support excluding characters
Behdad Esfahbod [Tue, 21 Sep 2010 17:14:55 +0000 (13:14 -0400)] 
[fc-lang] Support excluding characters

By prefixing a line by a hyphen/minus sign.  Useful when including
other orth files.

13 years agoAdd new public API: FcCharSetDelChar()
Behdad Esfahbod [Tue, 21 Sep 2010 17:14:41 +0000 (13:14 -0400)] 
Add new public API: FcCharSetDelChar()

13 years agoBug 29995 - fc-cat does not invoke FcFini()
Behdad Esfahbod [Fri, 3 Sep 2010 12:11:00 +0000 (08:11 -0400)] 
Bug 29995 - fc-cat does not invoke FcFini()

13 years agoAdd comments
Behdad Esfahbod [Wed, 18 Aug 2010 15:31:31 +0000 (11:31 -0400)] 
Add comments

13 years agoBug 29338 - fc-pattern.sgml, open para tag
Behdad Esfahbod [Thu, 5 Aug 2010 19:58:09 +0000 (15:58 -0400)] 
Bug 29338 - fc-pattern.sgml, open para tag

13 years agoFix compiler warnings
Alan Coopersmith [Thu, 3 Jun 2010 02:38:19 +0000 (22:38 -0400)] 
Fix compiler warnings

14 years agoAdd fc-pattern cmdline tool
Behdad Esfahbod [Wed, 21 Apr 2010 03:18:00 +0000 (23:18 -0400)] 
Add fc-pattern cmdline tool

14 years agoFix comment
Behdad Esfahbod [Mon, 12 Apr 2010 16:49:53 +0000 (12:49 -0400)] 
Fix comment

14 years agoRemove all training whitespaces
Behdad Esfahbod [Mon, 12 Apr 2010 16:18:50 +0000 (12:18 -0400)] 
Remove all training whitespaces

14 years agoMore whitespace
Behdad Esfahbod [Mon, 12 Apr 2010 16:10:05 +0000 (12:10 -0400)] 
More whitespace

14 years agoWhitespace
Behdad Esfahbod [Mon, 12 Apr 2010 15:52:09 +0000 (11:52 -0400)] 
Whitespace

14 years agoAccept TT_PLATFORM_MICROSOFT, TT_MS_ID_SYMBOL_CS from name table
Behdad Esfahbod [Wed, 7 Apr 2010 16:47:37 +0000 (12:47 -0400)] 
Accept TT_PLATFORM_MICROSOFT, TT_MS_ID_SYMBOL_CS from name table

The OT spec says:

"When building a Unicode font for Windows, the platform ID should be 3 and the
encoding ID should be 1. When building a symbol font for Windows, the platform
ID should be 3 and the encoding ID should be 0."

We were ignoring the SYMBOL_CS entry before.  It's UTF-16/UCS-2 like the
UNICODE_CS.

Also, always use UTF-16BE instead of UCS-2BE.  The conversion was doing
UTF-16BE anyway.

14 years agoDon't include unistd.h in fontconfig.h
Behdad Esfahbod [Wed, 3 Mar 2010 18:26:55 +0000 (13:26 -0500)] 
Don't include unistd.h in fontconfig.h

Bug 26783 patch: unistd.h not exist on ms windows

14 years agoBug 25152 Don't sleep(2) if all caches were uptodate
Behdad Esfahbod [Fri, 26 Feb 2010 06:47:56 +0000 (01:47 -0500)] 
Bug 25152 Don't sleep(2) if all caches were uptodate

14 years agoBug 26157 Solaris/Sun C 5.8: compilation of 2.8.0 and 2.7.3 fails
Behdad Esfahbod [Thu, 25 Feb 2010 22:11:14 +0000 (17:11 -0500)] 
Bug 26157 Solaris/Sun C 5.8: compilation of 2.8.0 and 2.7.3 fails

14 years agoBug 18886 installation crashes if fontconfig already installed
Behdad Esfahbod [Thu, 25 Feb 2010 20:10:41 +0000 (15:10 -0500)] 
Bug 18886 installation crashes if fontconfig already installed

Run the uninstalled fc-cache, not the installed one.

14 years agoMore doc typo fixes
Behdad Esfahbod [Mon, 15 Feb 2010 01:27:22 +0000 (20:27 -0500)] 
More doc typo fixes

14 years agoFix doc typo
Behdad Esfahbod [Mon, 15 Feb 2010 01:20:00 +0000 (20:20 -0500)] 
Fix doc typo

14 years agoAdd note about autogen.sh to INSTALL
Behdad Esfahbod [Tue, 26 Jan 2010 17:45:09 +0000 (12:45 -0500)] 
Add note about autogen.sh to INSTALL

14 years agoUpdate INSTALL
Behdad Esfahbod [Tue, 26 Jan 2010 17:43:51 +0000 (12:43 -0500)] 
Update INSTALL

14 years agoBug 25508 configure assumes bash > 2.0 is on system
Behdad Esfahbod [Wed, 9 Dec 2009 02:15:15 +0000 (21:15 -0500)] 
Bug 25508 configure assumes bash > 2.0 is on system

Remove dolt.  With libtool2, there's not much need for dolt.

14 years ago[doc] Fix typo
Behdad Esfahbod [Mon, 30 Nov 2009 21:09:55 +0000 (16:09 -0500)] 
[doc] Fix typo

14 years ago[fc-cache] Document -r argument in man page
Behdad Esfahbod [Fri, 20 Nov 2009 23:44:04 +0000 (18:44 -0500)] 
[fc-cache] Document -r argument in man page

14 years agoBump version to 2.8.0 2.8.0
Behdad Esfahbod [Wed, 18 Nov 2009 23:45:19 +0000 (18:45 -0500)] 
Bump version to 2.8.0

14 years agoBump libtool revision in preparation for release
Behdad Esfahbod [Wed, 18 Nov 2009 23:45:06 +0000 (18:45 -0500)] 
Bump libtool revision in preparation for release

14 years agoImprove zip "distribution"
Tor Lillqvist [Wed, 18 Nov 2009 19:56:16 +0000 (21:56 +0200)] 
Improve zip "distribution"

Don't put entries for directories in the zip file. Fetch manpages from
correct place.

14 years agoUse correct autoconf variable
Tor Lillqvist [Wed, 18 Nov 2009 19:54:39 +0000 (21:54 +0200)] 
Use correct autoconf variable

Use LIBT_CURRENT_MINUS_AGE instead of the undefined
lt_current_minus_age for the name of the DLL when generating the MS
style import library.

14 years ago[fc-arch] Rename architecture names to better reflect what they are
Behdad Esfahbod [Wed, 18 Nov 2009 19:39:34 +0000 (14:39 -0500)] 
[fc-arch] Rename architecture names to better reflect what they are

We only care about three properties in the arch:

  - endianness
  - pointer size
  - for 32-bit archs, whether double is aligned on 4 or 8 bytes

This leads to the following 6 archs (old name -> new name):

x86    -> le32d4
mipsel -> le32d8
x86-64 -> le64
m68k   -> be32d4
ppc    -> be32d8
ppc64  -> be64

14 years ago[fc-arch] Beautify the arch template
Behdad Esfahbod [Wed, 18 Nov 2009 19:08:00 +0000 (14:08 -0500)] 
[fc-arch] Beautify the arch template

14 years ago[fc-case] Update CaseFolding.txt to Unicode 5.2.0
Behdad Esfahbod [Wed, 18 Nov 2009 14:40:11 +0000 (09:40 -0500)] 
[fc-case] Update CaseFolding.txt to Unicode 5.2.0

14 years ago[fc-glyphname] Remove Adobe glyphlist
Behdad Esfahbod [Wed, 18 Nov 2009 14:36:23 +0000 (09:36 -0500)] 
[fc-glyphname] Remove Adobe glyphlist

It was unused.

14 years agoClean up Makefile's a bit
Behdad Esfahbod [Wed, 18 Nov 2009 14:35:40 +0000 (09:35 -0500)] 
Clean up Makefile's a bit

14 years ago[fc-glyphname] Rename internal arrays to prefix with _fc_
Behdad Esfahbod [Wed, 18 Nov 2009 14:26:24 +0000 (09:26 -0500)] 
[fc-glyphname] Rename internal arrays to prefix with _fc_

Although they were static, I was still surprised that gdb was seeing
our variable "glyphs".  Not helpful.

14 years ago[src] Create fcglyphname.h automatically
Behdad Esfahbod [Wed, 18 Nov 2009 14:26:01 +0000 (09:26 -0500)] 
[src] Create fcglyphname.h automatically

14 years ago[fc-glyphname] Cleanup Makefile.am
Behdad Esfahbod [Wed, 18 Nov 2009 14:25:42 +0000 (09:25 -0500)] 
[fc-glyphname] Cleanup Makefile.am

14 years agoRemove bogus comment
Behdad Esfahbod [Wed, 18 Nov 2009 14:10:05 +0000 (09:10 -0500)] 
Remove bogus comment

Last night in between my dreams I also noticed that we support Unicode
values up to 0x01000000 and not 0x00100000 which I thought before.
This covers the entire Unicode range.

14 years agoMake sure fclang.h and fcarch.h are built
Behdad Esfahbod [Tue, 17 Nov 2009 17:10:01 +0000 (12:10 -0500)] 
Make sure fclang.h and fcarch.h are built

14 years ago[lang] Fix serializing LangSet from older versions
Behdad Esfahbod [Mon, 16 Nov 2009 23:29:26 +0000 (18:29 -0500)] 
[lang] Fix serializing LangSet from older versions

14 years ago[arch] Try to ensure proper FcLangSet alignment in arch
Behdad Esfahbod [Mon, 16 Nov 2009 22:38:40 +0000 (17:38 -0500)] 
[arch] Try to ensure proper FcLangSet alignment in arch

14 years ago[xml] Remove unused code
Behdad Esfahbod [Mon, 16 Nov 2009 22:00:50 +0000 (17:00 -0500)] 
[xml] Remove unused code

14 years ago[int] Remove more unused macros
Behdad Esfahbod [Mon, 16 Nov 2009 21:57:53 +0000 (16:57 -0500)] 
[int] Remove more unused macros

14 years agoEnable automake silent rules
Behdad Esfahbod [Mon, 16 Nov 2009 20:48:20 +0000 (15:48 -0500)] 
Enable automake silent rules

14 years ago[int] Remove fc_value_* macros that did nothing other than renaming
Behdad Esfahbod [Mon, 16 Nov 2009 20:46:46 +0000 (15:46 -0500)] 
[int] Remove fc_value_* macros that did nothing other than renaming

14 years ago[int] Remove fc_storage_type() in favor of direct access to v->type
Behdad Esfahbod [Mon, 16 Nov 2009 20:43:08 +0000 (15:43 -0500)] 
[int] Remove fc_storage_type() in favor of direct access to v->type

14 years agoRemove unused macros
Behdad Esfahbod [Mon, 16 Nov 2009 20:41:58 +0000 (15:41 -0500)] 
Remove unused macros

14 years agoBump cache version up from 2 to 3 and fix FcLangSet caching/crash
Behdad Esfahbod [Mon, 16 Nov 2009 20:39:16 +0000 (15:39 -0500)] 
Bump cache version up from 2 to 3 and fix FcLangSet caching/crash

Protect cache against future expansions of FcLangSet (adding new
orth files).  Previously, doing so could change the size of
that struct.  Indeed, that happened between 2.6.0 and 2.7.3, causing
crashes.  Unfortunately, sizeof(FcLangSet) was not checked in fcarch.c.

This changes FcLangSet code to be able to cope with struct size changes.
And change cache format, hence bumping from 2 to 3.

14 years ago[int] Define MIN/MAX/ABS macros
Behdad Esfahbod [Mon, 16 Nov 2009 21:57:10 +0000 (16:57 -0500)] 
[int] Define MIN/MAX/ABS macros

14 years ago[fc-arch] Add FcAlign to arch signature
Behdad Esfahbod [Mon, 16 Nov 2009 20:17:56 +0000 (15:17 -0500)] 
[fc-arch] Add FcAlign to arch signature

14 years agoMove FcAlign to fcint.h
Behdad Esfahbod [Mon, 16 Nov 2009 20:12:52 +0000 (15:12 -0500)] 
Move FcAlign to fcint.h

14 years agoClarify default confdir and cachedir better.
Behdad Esfahbod [Mon, 9 Nov 2009 18:17:17 +0000 (13:17 -0500)] 
Clarify default confdir and cachedir better.

Also remove --with-docdir.  It can be set by setting docdir variable.

14 years agoBump version to 2.7.3 2.7.3
Behdad Esfahbod [Tue, 8 Sep 2009 15:45:26 +0000 (11:45 -0400)] 
Bump version to 2.7.3

14 years agoBump libtool version in preparation for release
Behdad Esfahbod [Tue, 8 Sep 2009 15:44:59 +0000 (11:44 -0400)] 
Bump libtool version in preparation for release

14 years agoUse default config in FcFileScan() and FcDirScan()
Behdad Esfahbod [Mon, 7 Sep 2009 02:10:22 +0000 (22:10 -0400)] 
Use default config in FcFileScan() and FcDirScan()

Before a NULL config was passed down adn essentially FcFileScan was
equivalent to FcFreeTypeQuery.  Now fc-scan tool correctly applies
the configuration to the scanned patterns.

14 years agoUpdated Arabic, Persian, and Urdu orthographies
Roozbeh Pournader [Thu, 3 Sep 2009 03:03:42 +0000 (20:03 -0700)] 
Updated Arabic, Persian, and Urdu orthographies

- Arabic (ar), Persian (fa), and Urdu (ur) now use generic forms (bug #23004)
- Persian (fa) orthography updated to latest standards and orthographies
- Persian dialects Dari/Eastern Farsi (prs) and Western Farsi (pes) added

14 years agoCorrect Ewe (ee) orthography to use U+025B (bug #20711)
Roozbeh Pournader [Thu, 3 Sep 2009 01:54:24 +0000 (18:54 -0700)] 
Correct Ewe (ee) orthography to use U+025B (bug #20711)

14 years agoBump version to 2.7.2 2.7.2
Behdad Esfahbod [Mon, 31 Aug 2009 21:32:36 +0000 (17:32 -0400)] 
Bump version to 2.7.2

14 years agoBump libtool version for release
Behdad Esfahbod [Mon, 31 Aug 2009 21:32:13 +0000 (17:32 -0400)] 
Bump libtool version for release

14 years agoRevert "Fix FcNameUnparseLangSet()" and redo it
Behdad Esfahbod [Wed, 26 Aug 2009 00:40:30 +0000 (20:40 -0400)] 
Revert "Fix FcNameUnparseLangSet()" and redo it

This reverts commit 5c6d1ff23bda4386984a1d6e4c024958f8f5547c and
fixes that bug using the new reverse-map I added in the previous
commit.

14 years agoBug 23419 - "contains" expression seems not working on the fontconfig rule
Behdad Esfahbod [Wed, 26 Aug 2009 00:39:20 +0000 (20:39 -0400)] 
Bug 23419 - "contains" expression seems not working on the fontconfig rule

Fix bug in FcLangSetContains(), similar to
5c6d1ff23bda4386984a1d6e4c024958f8f5547c

14 years agoBug 22037 - No Fonts installed on a default install on Windows Server 2003
Behdad Esfahbod [Fri, 21 Aug 2009 17:41:41 +0000 (13:41 -0400)] 
Bug 22037 - No Fonts installed on a default install on Windows Server 2003

Make it easy to install on older Windows

14 years agoUse multi-byte codepage aware string function on Windows
Tor Lillqvist [Thu, 13 Aug 2009 21:16:18 +0000 (00:16 +0300)] 
Use multi-byte codepage aware string function on Windows

The East Asian double-byte codepages have characters with backslash as
the second byte, so we must use _mbsrchr() instead of strrchr() when
looking at pathnames in the system codepage.

14 years agoFix heap corruption on Windows in FcEndElement()
Tor Lillqvist [Thu, 13 Aug 2009 21:08:17 +0000 (00:08 +0300)] 
Fix heap corruption on Windows in FcEndElement()

Must not call FcStrFree() on a value returned by
FcStrBufDoneStatic(). In the Windows code don't bother with dynamic
allocation, just use a local buffer.

14 years agoFix MinGW compilation
Tor Lillqvist [Thu, 13 Aug 2009 21:02:59 +0000 (00:02 +0300)] 
Fix MinGW compilation

Need to define _WIN32_WINNT as 0x0500 to get declaration for
GetSystemWindowsDirectory().

14 years ago[ja.orth] Comment out FULLWIDTH YEN SIGN (#22942)
Behdad Esfahbod [Tue, 28 Jul 2009 18:24:21 +0000 (14:24 -0400)] 
[ja.orth] Comment out FULLWIDTH YEN SIGN (#22942)

14 years agoImprove charset printing
Behdad Esfahbod [Tue, 28 Jul 2009 18:23:10 +0000 (14:23 -0400)] 
Improve charset printing

14 years agoBump version to 2.7.1 2.7.1
Behdad Esfahbod [Mon, 27 Jul 2009 21:53:26 +0000 (17:53 -0400)] 
Bump version to 2.7.1

14 years agoUpdate .gitignore
Behdad Esfahbod [Mon, 27 Jul 2009 21:51:17 +0000 (17:51 -0400)] 
Update .gitignore

14 years agoBump libtool versions that 2.7.0 (I forgot to do back then)
Behdad Esfahbod [Mon, 27 Jul 2009 21:48:29 +0000 (17:48 -0400)] 
Bump libtool versions that 2.7.0 (I forgot to do back then)

14 years agoHardcode /etc/fonts instead of @CONFDIR@ in docs (#22911)
Behdad Esfahbod [Mon, 27 Jul 2009 19:07:12 +0000 (15:07 -0400)] 
Hardcode /etc/fonts instead of @CONFDIR@ in docs (#22911)

We distribute the docs, so it makes little sense to distribute with
@CONFDIR@ replaced.  Until we find a better solution, I've hardcoded
/etc/fonts now.

14 years ago[doc] Add ~/fonts.conf.d to user docs
Behdad Esfahbod [Mon, 27 Jul 2009 18:50:44 +0000 (14:50 -0400)] 
[doc] Add ~/fonts.conf.d to user docs

14 years agoTT_MS_ID_UCS_4 is really UTF-16BE, not UTF-32
Behdad Esfahbod [Sat, 25 Jul 2009 20:38:52 +0000 (16:38 -0400)] 
TT_MS_ID_UCS_4 is really UTF-16BE, not UTF-32

Reported by Yuriy Kaminskiy.

14 years agoFix doc syntax (#22902)
Behdad Esfahbod [Fri, 24 Jul 2009 18:59:07 +0000 (14:59 -0400)] 
Fix doc syntax (#22902)

14 years agoFix FcNameUnparseLangSet()
Behdad Esfahbod [Wed, 22 Jul 2009 23:25:24 +0000 (19:25 -0400)] 
Fix FcNameUnparseLangSet()

Was broken since ffd6668b469508177c4baf7745ae42aee5b00322

14 years agoRemove unused macros
Behdad Esfahbod [Wed, 22 Jul 2009 23:01:06 +0000 (19:01 -0400)] 
Remove unused macros

14 years agoDon't change the order of names unnecessarily (#20128)
Karl Tomlinson [Wed, 22 Jul 2009 12:39:23 +0000 (08:39 -0400)] 
Don't change the order of names unnecessarily (#20128)

so that TT_NAME_ID_PREFERRED_FAMILY is consistently preferred over
TT_NAME_ID_FONT_FAMILY when both are specified for the default language.