Slightly more verbose output from "--verbose-version"
Shows when certain features are enabled; not just disabled.
This commit is contained in:
parent
f7dfb95570
commit
1b420da45c
2 changed files with 24 additions and 0 deletions
|
|
@ -36,6 +36,10 @@ https://tuxpaint.org/
|
|||
Helps https://sourceforge.net/p/tuxpaint/bugs/131/
|
||||
Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
* Slightly more verbose output from "--verbose-version"
|
||||
(shows when certain features are enabled; not just disabled)
|
||||
Bill Kendrick <bill@newbreedsoftware.com>
|
||||
|
||||
* Localization Updates:
|
||||
---------------------
|
||||
* Chinese (Simplified) translation
|
||||
|
|
|
|||
|
|
@ -8253,42 +8253,62 @@ void show_version(int details)
|
|||
|
||||
#ifdef LOW_QUALITY_THUMBNAILS
|
||||
printf(" Low Quality Thumbnails enabled (LOW_QUALITY_THUMBNAILS)\n");
|
||||
#else
|
||||
printf(" High Quality Thumbnails enabled (not LOW_QUALITY_THUMBNAILS)\n");
|
||||
#endif
|
||||
|
||||
#ifdef LOW_QUALITY_COLOR_SELECTOR
|
||||
printf
|
||||
(" Low Quality Color Selector enabled (LOW_QUALITY_COLOR_SELECTOR)\n");
|
||||
#else
|
||||
printf
|
||||
(" Hight Quality Color Selector enabled (not LOW_QUALITY_COLOR_SELECTOR)\n");
|
||||
#endif
|
||||
|
||||
#ifdef LOW_QUALITY_STAMP_OUTLINE
|
||||
printf
|
||||
(" Low Quality Stamp Outline enabled (LOW_QUALITY_STAMP_OUTLINE)\n");
|
||||
#else
|
||||
printf
|
||||
(" Hight Quality Stamp Outline enabled (not LOW_QUALITY_STAMP_OUTLINE)\n");
|
||||
#endif
|
||||
|
||||
#ifdef NO_PROMPT_SHADOWS
|
||||
printf(" Prompt Shadows disabled (NO_PROMPT_SHADOWS)\n");
|
||||
#else
|
||||
printf(" Prompt Shadows enabled (not NO_PROMPT_SHADOWS)\n");
|
||||
#endif
|
||||
|
||||
#ifdef SMALL_CURSOR_SHAPES
|
||||
printf(" Small cursor shapes enabled (SMALL_CURSOR_SHAPES)\n");
|
||||
#else
|
||||
printf(" Large cursor shapes enabled (not SMALL_CURSOR_SHAPES)\n");
|
||||
#endif
|
||||
|
||||
#ifdef NO_BILINEAR
|
||||
printf(" Bilinear scaling disabled (NO_BILINEAR)\n");
|
||||
#else
|
||||
printf(" Bilinear scaling enabled (BILINEAR)\n");
|
||||
#endif
|
||||
|
||||
#ifdef NO_SDLPANGO
|
||||
printf(" Pango support disabled (NO_SDLPANGO)\n");
|
||||
#else
|
||||
printf(" Pango support enabled (not NO_SDLPANGO)\n");
|
||||
#endif
|
||||
|
||||
#ifdef NOSVG
|
||||
printf(" SVG support disabled (NOSVG)\n");
|
||||
#else
|
||||
printf(" SVG support enabled (not NOSVG)\n");
|
||||
#endif
|
||||
|
||||
/* Sound: */
|
||||
|
||||
#ifdef NOSOUND
|
||||
printf(" Sound disabled (NOSOUND)\n");
|
||||
#else
|
||||
printf(" Sound enabled (not NOSOUND)\n");
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue