update credits

This commit is contained in:
tildearrow 2025-10-23 03:34:26 -05:00
parent 693e795768
commit 4253bc1b4d
2 changed files with 20 additions and 0 deletions

View file

@ -118,6 +118,16 @@ const char* aboutLine[]={
_N("zlib by Jean-loup Gailly"),
_N("and Mark Adler"),
_N("libsndfile by Erik de Castro Lopo"),
#ifdef HAVE_OGG
_N("libogg by Xiph.Org Foundation"),
_N("libvorbis by Xiph.Org Foundation"),
_N("FLAC library by Xiph.Org Foundation"),
_N("libopus by Xiph.Org and contributors"),
#endif
#ifdef HAVE_MP3_EXPORT
_N("libmpg123 by Michael Hipp, Thomas Orgis, Taihei Momma and contributors"),
_N("LAME by Mike Cheng, Mark Taylor and The LAME Project"),
#endif
_N("Portable File Dialogs by Sam Hocevar"),
_N("Native File Dialog by Frogtoss Games"),
"PortAudio",

View file

@ -282,6 +282,16 @@ TAParamResult pVersion(String) {
printf("\n");
printf("furnace is powered by:\n");
printf("- libsndfile by Erik de Castro Lopo and rest of libsndfile team (LGPLv2.1)\n");
#ifdef HAVE_OGG
printf("- libogg by Xiph.Org Foundation (Xiph.Org, BSD-like license)\n");
printf("- libvorbis by Xiph.Org Foundation (Xiph.Org, BSD-like license)\n");
printf("- FLAC library by Xiph.Org Foundation (Xiph.Org, BSD-like license)\n");
printf("- libopus by Xiph.Org and contributors (BSD 3-clause)\n");
#endif
#ifdef HAVE_MP3_EXPORT
printf("- libmpg123 by Michael Hipp, Thomas Orgis, Taihei Momma and contributors (LGPLv2.1)\n");
printf("- LAME by Mike Cheng, Mark Taylor and The LAME Project (LGPLv2)\n");
#endif
printf("- SDL2 by Sam Lantinga (zlib license)\n");
printf("- zlib by Jean-loup Gailly and Mark Adler (zlib license)\n");
printf("- PortAudio (PortAudio license)\n");