Activate [un]groupmagictools option
This commit is contained in:
parent
4ad4bb59a2
commit
850b733f4b
5 changed files with 9 additions and 3 deletions
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2024
|
||||||
Various contributors (see below, and AUTHORS.txt)
|
Various contributors (see below, and AUTHORS.txt)
|
||||||
https://tuxpaint.org/
|
https://tuxpaint.org/
|
||||||
|
|
||||||
2024.April.8 (0.9.33)
|
2024.April.10 (0.9.33)
|
||||||
* New Magic Tools:
|
* New Magic Tools:
|
||||||
----------------
|
----------------
|
||||||
* WIP Specular Reflection: Draws a slightly blurred, wavy, and
|
* WIP Specular Reflection: Draws a slightly blurred, wavy, and
|
||||||
|
|
|
||||||
|
|
@ -133,6 +133,8 @@ lang, MULTI(parsertmp_lang)
|
||||||
locale, MULTI(parsertmp_locale)
|
locale, MULTI(parsertmp_locale)
|
||||||
lockfile, POSBOOL(ok_to_use_lockfile)
|
lockfile, POSBOOL(ok_to_use_lockfile)
|
||||||
magiccontrols, NEGBOOL(disable_magic_controls)
|
magiccontrols, NEGBOOL(disable_magic_controls)
|
||||||
|
ungroupmagictools, POSBOOL(no_magic_groups)
|
||||||
|
groupmagictools, NEGBOOL(no_magic_groups)
|
||||||
magicsizes, NEGBOOL(disable_magic_sizes)
|
magicsizes, NEGBOOL(disable_magic_sizes)
|
||||||
shapecontrols, NEGBOOL(disable_shape_controls)
|
shapecontrols, NEGBOOL(disable_shape_controls)
|
||||||
mirrorstamps, POSBOOL(mirrorstamps)
|
mirrorstamps, POSBOOL(mirrorstamps)
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ struct cfginfo
|
||||||
const char *disable_brushspacing;
|
const char *disable_brushspacing;
|
||||||
const char *disable_magic_controls;
|
const char *disable_magic_controls;
|
||||||
const char *disable_magic_sizes;
|
const char *disable_magic_sizes;
|
||||||
|
const char *no_magic_groups;
|
||||||
const char *disable_shape_controls;
|
const char *disable_shape_controls;
|
||||||
const char *disable_print;
|
const char *disable_print;
|
||||||
const char *disable_quit;
|
const char *disable_quit;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
# Bill Kendrick <bill@newbreedsoftware.com>; https://tuxpaint.org/
|
# Bill Kendrick <bill@newbreedsoftware.com>; https://tuxpaint.org/
|
||||||
# Based on inkscape's completion file, by allali@univ-mlv.fr
|
# Based on inkscape's completion file, by allali@univ-mlv.fr
|
||||||
#
|
#
|
||||||
# Last modified 2023-12-29
|
# Last modified 2024-04-10
|
||||||
#
|
#
|
||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
|
|
@ -65,6 +65,7 @@ _tuxpaint()
|
||||||
--nostamprotation --stamprotation \
|
--nostamprotation --stamprotation \
|
||||||
--nomagiccontrols --magiccontrols \
|
--nomagiccontrols --magiccontrols \
|
||||||
--nomagicsizes --magicsizes \
|
--nomagicsizes --magicsizes \
|
||||||
|
--ungroupmagictools --groupmagictools \
|
||||||
--noshapecontrols --shapecontrols \
|
--noshapecontrols --shapecontrols \
|
||||||
--notemplateexport --templateexport \
|
--notemplateexport --templateexport \
|
||||||
--mirrorstamps --dontmirrorstamps \
|
--mirrorstamps --dontmirrorstamps \
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
(See COPYING.txt)
|
(See COPYING.txt)
|
||||||
|
|
||||||
June 14, 2002 - April 8, 2024
|
June 14, 2002 - April 10, 2024
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "platform.h"
|
#include "platform.h"
|
||||||
|
|
@ -8113,6 +8113,7 @@ void show_usage(int exitcode)
|
||||||
" [--nostampcontrols | --stampcontrols]\n"
|
" [--nostampcontrols | --stampcontrols]\n"
|
||||||
" [--nomagiccontrols | --magiccontrols]\n"
|
" [--nomagiccontrols | --magiccontrols]\n"
|
||||||
" [--nomagicsizes | --magicsizes]\n"
|
" [--nomagicsizes | --magicsizes]\n"
|
||||||
|
" [--ungroupmagictools | --groupmagictools]\n"
|
||||||
" [--noshapecontrols | --shapecontrols]\n"
|
" [--noshapecontrols | --shapecontrols]\n"
|
||||||
" [--nolabel | --label]\n"
|
" [--nolabel | --label]\n"
|
||||||
" [--nobrushspacing | --brushspacing]\n"
|
" [--nobrushspacing | --brushspacing]\n"
|
||||||
|
|
@ -28404,6 +28405,7 @@ static void setup_config(char *argv[])
|
||||||
SETBOOL(disable_brushspacing);
|
SETBOOL(disable_brushspacing);
|
||||||
SETBOOL(disable_magic_controls);
|
SETBOOL(disable_magic_controls);
|
||||||
SETBOOL(disable_magic_sizes);
|
SETBOOL(disable_magic_sizes);
|
||||||
|
SETBOOL(no_magic_groups);
|
||||||
SETBOOL(disable_shape_controls);
|
SETBOOL(disable_shape_controls);
|
||||||
SETBOOL(disable_print);
|
SETBOOL(disable_print);
|
||||||
SETBOOL(disable_quit);
|
SETBOOL(disable_quit);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue