add news items.

2003-01-09  James Henstridge  <james@daa.com.au>

    * NEWS: add news items.

    * src/fontilus.mime: ttc files are True Types.

    * src/*.c: update copyright messages.
This commit is contained in:
James Henstridge 2003-01-09 15:53:31 +00:00 committed by James Henstridge
parent a6292dd571
commit 6fb226616a
7 changed files with 19 additions and 9 deletions

View file

@ -1,5 +1,11 @@
2003-01-09 James Henstridge <james@daa.com.au>
* NEWS: add news items.
* src/fontilus.mime: ttc files are True Types.
* src/*.c: update copyright messages.
* fontilus.spec.in: update to include schema and run a
postinstallation script to install the schema.

View file

@ -1,6 +1,6 @@
/* -*- mode: C; c-basic-offset: 4 -*-
* fontilus - a collection of font utilities for GNOME
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
* Copyright (C) 2002-2003 James Henstridge <james@daa.com.au>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public

View file

@ -1,6 +1,6 @@
/* -*- mode: C; c-basic-offset: 4 -*-
* fontilus - a collection of font utilities for GNOME
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
* Copyright (C) 2002-2003 James Henstridge <james@daa.com.au>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View file

@ -5,4 +5,4 @@ gnome-font-viewer
expects_uris=true
requires_terminal=false
supported_uri_schemes=file,fonts
mime_types=application/x-font-pcf,application/x-font-ttf,application/x-font-type1
mime_types=application/x-font-pcf,application/x-font-ttf,application/x-font-type1,application/x-font-otf

View file

@ -1,2 +1,5 @@
application/x-font-pcf:
regex,2: pcf\.gz$
regex,2: pcf\.gz$
application/x-font-ttf:
ext: ttc TTC

View file

@ -1,6 +1,6 @@
/* -*- mode: C; c-basic-offset: 4 -*-
* fontilus - a collection of font utilities for GNOME
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
* Copyright (C) 2002-2003 James Henstridge <james@daa.com.au>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -121,10 +121,11 @@ FT_New_Face_From_URI(FT_Library library,
return error;
}
#ifndef FT_OPEN_STREAM
# define FT_OPEN_STREAM ft_open_stream
/* freetype-2.1.3 accidentally broke compatibility. */
#if defined(FT_OPEN_STREAM) && !defined(ft_open_stream)
# define ft_open_stream FT_OPEN_STREAM
#endif
args.flags = FT_OPEN_STREAM;
args.flags = ft_open_stream;
args.stream = stream;
error = FT_Open_Face(library, &args, face_index, aface);

View file

@ -1,6 +1,6 @@
/* -*- mode: C; c-basic-offset: 4 -*-
* fontilus - a collection of font utilities for GNOME
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
* Copyright (C) 2002-2003 James Henstridge <james@daa.com.au>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by