bdf2sfd 1.1.9 (2025-03-24)

- Add links to the Gentoo and Guix packages in the README
- Add initial RPM spec file
- Bump cmake_minimum_required to 3.5, to allow building with CMake 4.0
- Bump cmake_minimum_required to 3.10 to be more future proof



bdf2sfd 1.1.8 (2023-03-30)

- Remove unneeded <sys/types.h> include
- Add missing void to the usage() function definition
- Move manual page to the man directory



bdf2sfd 1.1.7 (2021-11-16)

- Rename the "glyphes" variable to "glyphs"
- Bump CMake minimum required version to 2.8.12
- Add SPDX short license identifier in source file
- Use CMAKE_C_STANDARD instead of hardcoding compiler flags
- Switch to using getline(3) instead of fgets(3)



bdf2sfd 1.1.6 (2021-02-12)

- Stop forcing FORTIFY_SOURCE=2, it should be package builders decision
- Get rid of global variables, move all declarations to main()
- Remove dead increments for argc and argv
- Rename a few variables to get rid of all camelCase occurrences
- Reorder and reformat variables declaration
- Try to harmonize usage information everywhere
- Rename the displayUsage() function to usage()



bdf2sfd 1.1.5 (2020-10-20)

- Enable FORTIFY_SOURCE level 2
- Check strdup() return value and error out on failed allocations



bdf2sfd 1.1.4 (2020-10-08)

- Add support for seccomp on arm
- Update error message to use seccomp architecture names
- Add a note in the README about sandboxing and fuzzing
- Make displayUsage() and error() static
- Reduce amount of fprintf() calls when outputting SFD header



bdf2sfd 1.1.3 (2020-07-12)

- Remove some unneeded seccomp related includes
- Validate architectures for seccomp
- Add seccomp support on i386, tested on glibc and musl
- Use __NR_ instead of SYS_ prefix in #if defined checks



bdf2sfd 1.1.2 (2020-06-10)

- Use CLOCK_REALTIME if CLOCK_MONOTONIC is not available
- Get rid of the runtime variable, it is only used once
- Remove duplicate <string.h> include
- Add missing <stdio.h> include
- Add <stdint.h> include instead of <inttypes.h>
- Define _GNU_SOURCE in CMakeLists.txt to avoid cluttering source files
- Add ENABLE_SECCOMP build option, to allow building seccomp support
- Add initial seccomp support to BDF2SFD



bdf2sfd 1.1.1 (2020-03-30)

- Free a bunch of allocations on exit, to appease LSan
- Add links to NetBSD and Void Linux packages
- Drop the stride array, and calculate stride directly
- Add an error() function to wrap errx() calls
- Add tests for different BDF sizes, using stripped down versions of Spleen



bdf2sfd 1.1.0 (2020-02-12)

- Add a '-p' switch to allow specifying the PostScript font name



bdf2sfd 1.0.0 (2020-02-08)

- Initial release