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/
|
Helps https://sourceforge.net/p/tuxpaint/bugs/131/
|
||||||
Bill Kendrick <bill@newbreedsoftware.com>
|
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:
|
* Localization Updates:
|
||||||
---------------------
|
---------------------
|
||||||
* Chinese (Simplified) translation
|
* Chinese (Simplified) translation
|
||||||
|
|
|
||||||
|
|
@ -8253,42 +8253,62 @@ void show_version(int details)
|
||||||
|
|
||||||
#ifdef LOW_QUALITY_THUMBNAILS
|
#ifdef LOW_QUALITY_THUMBNAILS
|
||||||
printf(" Low Quality Thumbnails enabled (LOW_QUALITY_THUMBNAILS)\n");
|
printf(" Low Quality Thumbnails enabled (LOW_QUALITY_THUMBNAILS)\n");
|
||||||
|
#else
|
||||||
|
printf(" High Quality Thumbnails enabled (not LOW_QUALITY_THUMBNAILS)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef LOW_QUALITY_COLOR_SELECTOR
|
#ifdef LOW_QUALITY_COLOR_SELECTOR
|
||||||
printf
|
printf
|
||||||
(" Low Quality Color Selector enabled (LOW_QUALITY_COLOR_SELECTOR)\n");
|
(" Low Quality Color Selector enabled (LOW_QUALITY_COLOR_SELECTOR)\n");
|
||||||
|
#else
|
||||||
|
printf
|
||||||
|
(" Hight Quality Color Selector enabled (not LOW_QUALITY_COLOR_SELECTOR)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef LOW_QUALITY_STAMP_OUTLINE
|
#ifdef LOW_QUALITY_STAMP_OUTLINE
|
||||||
printf
|
printf
|
||||||
(" Low Quality Stamp Outline enabled (LOW_QUALITY_STAMP_OUTLINE)\n");
|
(" Low Quality Stamp Outline enabled (LOW_QUALITY_STAMP_OUTLINE)\n");
|
||||||
|
#else
|
||||||
|
printf
|
||||||
|
(" Hight Quality Stamp Outline enabled (not LOW_QUALITY_STAMP_OUTLINE)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NO_PROMPT_SHADOWS
|
#ifdef NO_PROMPT_SHADOWS
|
||||||
printf(" Prompt Shadows disabled (NO_PROMPT_SHADOWS)\n");
|
printf(" Prompt Shadows disabled (NO_PROMPT_SHADOWS)\n");
|
||||||
|
#else
|
||||||
|
printf(" Prompt Shadows enabled (not NO_PROMPT_SHADOWS)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef SMALL_CURSOR_SHAPES
|
#ifdef SMALL_CURSOR_SHAPES
|
||||||
printf(" Small cursor shapes enabled (SMALL_CURSOR_SHAPES)\n");
|
printf(" Small cursor shapes enabled (SMALL_CURSOR_SHAPES)\n");
|
||||||
|
#else
|
||||||
|
printf(" Large cursor shapes enabled (not SMALL_CURSOR_SHAPES)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NO_BILINEAR
|
#ifdef NO_BILINEAR
|
||||||
printf(" Bilinear scaling disabled (NO_BILINEAR)\n");
|
printf(" Bilinear scaling disabled (NO_BILINEAR)\n");
|
||||||
|
#else
|
||||||
|
printf(" Bilinear scaling enabled (BILINEAR)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NO_SDLPANGO
|
#ifdef NO_SDLPANGO
|
||||||
printf(" Pango support disabled (NO_SDLPANGO)\n");
|
printf(" Pango support disabled (NO_SDLPANGO)\n");
|
||||||
|
#else
|
||||||
|
printf(" Pango support enabled (not NO_SDLPANGO)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NOSVG
|
#ifdef NOSVG
|
||||||
printf(" SVG support disabled (NOSVG)\n");
|
printf(" SVG support disabled (NOSVG)\n");
|
||||||
|
#else
|
||||||
|
printf(" SVG support enabled (not NOSVG)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Sound: */
|
/* Sound: */
|
||||||
|
|
||||||
#ifdef NOSOUND
|
#ifdef NOSOUND
|
||||||
printf(" Sound disabled (NOSOUND)\n");
|
printf(" Sound disabled (NOSOUND)\n");
|
||||||
|
#else
|
||||||
|
printf(" Sound enabled (not NOSOUND)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue