Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ftdump | Distribution: openSUSE Tumbleweed |
Version: 2.13.2 | Vendor: openSUSE |
Release: 2.3 | Build date: Wed Oct 11 14:15:54 2023 |
Group: Productivity/Publishing/Other | Build host: reproducible |
Size: 43120 | Source RPM: freetype2-2.13.2-2.3.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.freetype.org | |
Summary: Simple font dumper |
Simple font dumper This tool is part of the FreeType project
FTL AND GPL-2.0-only
* Wed Oct 11 2023 Dominique Leuenberger <[email protected]> - Update to version 2.13.2: - Better support for CFF2 variation fonts. - TrueType interpreter version 38 (also known as 'Infinality') has been removed. - Improved OpenVMS support. * Sat Jul 15 2023 Dirk Müller <[email protected]> - update to 2.13.1: * New function `FT_Get_Default_Named_Instance` to get the index of the default named instance of an OpenType Variation Font. A new load flag `FT_LOAD_NO_SVG` to make FreeType ignore glyphs in an 'SVG ' table. * New function `FT_GlyphSlot_AdjustWeight` to adjust the glyph weight either horizontally or vertically. This is part of the `ftsynth.h` header file * TrueType interpreter version 38 (also known as 'Infinality') has been deactivated; the value of `TT_INTERPRETER_VERSION_38` is now the same as `TT_INTERPRETER_VERSION_40`. * Switching named instances on and off in Variation Fonts was buggy if the design coordinates didn't change. - drop enable-infinality-subpixel-hinting.patch (obsolete, infinality is deactivated) * Thu May 25 2023 Dominique Leuenberger <[email protected]> - Do not limit ftdump conflict to < version-release, but only to version. Ftdump is built in a second build flavor and as such the release counters are not guaranteed to be in sync. * Thu Apr 20 2023 Frederic Crozat <[email protected]> - Fix license tag to FTL and GPL-2.0-only. * Wed Mar 08 2023 Dirk Müller <[email protected]> - update to 2.13.0: * The 'COLR' v1 API is now considered as stable. https://learn.microsoft.com/en-us/typography/opentype/spec/colr * For OpenType Variable Fonts, `avar` table format 2.0 is now supported. The code was contributed by Behdad Esfahbod. Note that this is an extension supported on recent Apple platforms and by HarfBuzz, but not yet in the OpenType standard! See https://github.com/harfbuzz/boring-expansion-spec/blob/main/avar2.md for the specification. To deactivate it, define the configuration macro 'TT_CONFIG_OPTION_NO_BORING_EXPANSION'. * A new API `FT_GlyphSlot_Slant` to slant a glyph by a given angle has been added. Note that this function is part of `ftsynth.h`, which is still considered to be in alpha stage. * TrueType interpreter version 38 (also known as 'Infinality') that was first introduced about 10 years ago in FreeType 2.4.11 is now deprecated and slated to be removed in the next version. TrueType interpreter version 40 has been FreeType's default version for six years now and provides an excellent alternative. This is the last FreeType version with TT_INTERPRETER_VERSION_38 and TT_INTERPRETER_VERSION_40 treated differently. * The only referenced but never documented configuration macro `FT_CONFIG_OPTION_NO_GLYPH_NAMES` has been removed. * To avoid reserved identifiers that are globally defined, the auto-hinter debugging macros (which are only available if `FT_DEBUG_AUTOFIT` is defined) ``` _af_debug_disable_horz_hints _af_debug_disable_vert_hints _af_debug_disable_blue_hints _af_debug_hints ``` have been renamed to ``` af_debug_disable_horz_hints_ af_debug_disable_vert_hints_ af_debug_disable_blue_hints_ af_debug_hints_ ``` * Thu Mar 02 2023 Marcus Meissner <[email protected]> - add devel requires to devel-32bit for brotli and bzip2 (indirect for Wine) * Mon Dec 12 2022 Dirk Müller <[email protected]> - switch to pkgconfig(zlib) so that alternative providers can be used * Fri Aug 12 2022 Dirk Müller <[email protected]> - spec-cleaner * Fri Aug 12 2022 Stephan Kulow <[email protected]> - Move ftpdump from ft2demos to freetype - it's required by other packages and doesn't require any of the toolkits, so move its build early * Mon May 02 2022 Dirk Müller <[email protected]> - drop revert-ft212-subpixel-hinting-change.patch: upstream * Mon May 02 2022 Paolo Stivanin <[email protected]> - Update to 2.12.1: - Loading CFF fonts sometimes made FreeType crash (bug introduced in version 2.12.0) - Loading a fully hinted TrueType glyph a second time (without caching) sometimes yielded different rendering results if TrueType hinting was active (bug introduced in version 2.12.0). - The generation of the pkg-config file `freetype2.pc` was broken if the build was done with cmake (bug introduced in version 2.12.0). - The meson build no longer enforces both static and dynamic versions of the library by default. - The internal zlib library was updated to version 1.2.12. Note, however, that FreeType is *not* affected by CVE-2018-25032 since it only does decompression. - Drop freetype-2.12.0-cff_slot_load-segfault.patch - Drop 079a22da037835daf5be2bd9eccf7bc1eaa2e783.patch * Tue Apr 19 2022 Dirk Müller <[email protected]> - add revert-ft212-subpixel-hinting-change.patch (bsc#1198536) - add 079a22da037835daf5be2bd9eccf7bc1eaa2e783.patch to avoid an integer overflow occuring during fuzzing * Fri Apr 15 2022 Andreas Stieger <[email protected]> - fix segfault in some applications boo#1198497 add freetype-2.12.0-cff_slot_load-segfault.patch * Fri Apr 08 2022 Dirk Müller <[email protected]> - update to 2.12.0: - FreeType now handles OT-SVG fonts, to be controlled with `FT_CONFIG_OPTION_SVG` configuration macro. By default, it can only load the 'SVG ' table of an OpenType font. However, by using the `svg-hooks` property of the new 'ot-svg' module it is possible to register an external SVG rendering engine. The FreeType demo programs have been set up to use 'librsvg' as the rendering library. - The handling of fonts with an 'sbix' table has been improved. - The internal 'zlib' code has been updated to be in sync with the current 'zlib' version (1.2.11). - The previously internal load flag `FT_LOAD_SBITS_ONLY` is now public. - Some minor improvements of the building systems, in particular handling of the 'zlib' library (internal vs. external). - Support for non-desktop Universal Windows Platform. - Various other minor bug and documentation fixes. - The `ftdump` demo program shows more information for Type1 fonts if option `-n` is given. - `ftgrid` can now display embedded bitmap strikes. - fixes bsc#1198830 (CVE-2022-27404), bsc#1198832 (CVE-2022-27405), bsc#1198823 (CVE-2022-27406)
/usr/bin/ftdump
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Jan 12 01:37:12 2025