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:
parent
a6292dd571
commit
6fb226616a
7 changed files with 19 additions and 9 deletions
|
@ -1,5 +1,11 @@
|
||||||
2003-01-09 James Henstridge <james@daa.com.au>
|
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
|
* fontilus.spec.in: update to include schema and run a
|
||||||
postinstallation script to install the schema.
|
postinstallation script to install the schema.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* -*- mode: C; c-basic-offset: 4 -*-
|
/* -*- mode: C; c-basic-offset: 4 -*-
|
||||||
* fontilus - a collection of font utilities for GNOME
|
* 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
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* -*- mode: C; c-basic-offset: 4 -*-
|
/* -*- mode: C; c-basic-offset: 4 -*-
|
||||||
* fontilus - a collection of font utilities for GNOME
|
* 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
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -5,4 +5,4 @@ gnome-font-viewer
|
||||||
expects_uris=true
|
expects_uris=true
|
||||||
requires_terminal=false
|
requires_terminal=false
|
||||||
supported_uri_schemes=file,fonts
|
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
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
application/x-font-pcf:
|
application/x-font-pcf:
|
||||||
regex,2: pcf\.gz$
|
regex,2: pcf\.gz$
|
||||||
|
|
||||||
|
application/x-font-ttf:
|
||||||
|
ext: ttc TTC
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* -*- mode: C; c-basic-offset: 4 -*-
|
/* -*- mode: C; c-basic-offset: 4 -*-
|
||||||
* fontilus - a collection of font utilities for GNOME
|
* 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
|
* 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
|
* 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;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef FT_OPEN_STREAM
|
/* freetype-2.1.3 accidentally broke compatibility. */
|
||||||
# define FT_OPEN_STREAM ft_open_stream
|
#if defined(FT_OPEN_STREAM) && !defined(ft_open_stream)
|
||||||
|
# define ft_open_stream FT_OPEN_STREAM
|
||||||
#endif
|
#endif
|
||||||
args.flags = FT_OPEN_STREAM;
|
args.flags = ft_open_stream;
|
||||||
args.stream = stream;
|
args.stream = stream;
|
||||||
|
|
||||||
error = FT_Open_Face(library, &args, face_index, aface);
|
error = FT_Open_Face(library, &args, face_index, aface);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* -*- mode: C; c-basic-offset: 4 -*-
|
/* -*- mode: C; c-basic-offset: 4 -*-
|
||||||
* fontilus - a collection of font utilities for GNOME
|
* 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
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue