applied gimp-quinet-000531-0.patch to change the help blurb.
2000-06-05 Sven Neumann <sven@gimp.org> * plug-ins/script-fu/scripts/clothify.scm: applied gimp-quinet-000531-0.patch to change the help blurb. * plug-ins/script-fu/scripts/drop-shadow.scm * plug-ins/script-fu/scripts/erase-rows.scm * plug-ins/script-fu/scripts/perspective-shadow.scm * plug-ins/script-fu/scripts/predator.scm * plug-ins/script-fu/scripts/xach-effect.scm: applied gimp-quinet-000531-0.patch to replace all calls to gimp-image-undo-disable by gimp-undo-push-group-start, and gimp-image-undo-enable by gimp-undo-push-group-end.
This commit is contained in:

committed by
Sven Neumann

parent
2d46163152
commit
42413f50c0
14
ChangeLog
14
ChangeLog
@ -1,3 +1,17 @@
|
|||||||
|
2000-06-05 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/script-fu/scripts/clothify.scm: applied
|
||||||
|
gimp-quinet-000531-0.patch to change the help blurb.
|
||||||
|
|
||||||
|
* plug-ins/script-fu/scripts/drop-shadow.scm
|
||||||
|
* plug-ins/script-fu/scripts/erase-rows.scm
|
||||||
|
* plug-ins/script-fu/scripts/perspective-shadow.scm
|
||||||
|
* plug-ins/script-fu/scripts/predator.scm
|
||||||
|
* plug-ins/script-fu/scripts/xach-effect.scm: applied
|
||||||
|
gimp-quinet-000531-0.patch to replace all calls to
|
||||||
|
gimp-image-undo-disable by gimp-undo-push-group-start,
|
||||||
|
and gimp-image-undo-enable by gimp-undo-push-group-end.
|
||||||
|
|
||||||
2000-06-06 Michael Natterer <mitch@gimp.org>
|
2000-06-06 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* Makefile.am
|
* Makefile.am
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
(script-fu-register "script-fu-clothify"
|
(script-fu-register "script-fu-clothify"
|
||||||
_"<Image>/Script-Fu/Alchemy/Clothify..."
|
_"<Image>/Script-Fu/Alchemy/Clothify..."
|
||||||
"Render the specified text along the perimeter of a circle"
|
"Gives the current layer a cloth-like texture"
|
||||||
"Tim Newsome <drz@froody.bloke.com>"
|
"Tim Newsome <drz@froody.bloke.com>"
|
||||||
"Tim Newsome"
|
"Tim Newsome"
|
||||||
"4/11/97"
|
"4/11/97"
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
(active-selection 0)
|
(active-selection 0)
|
||||||
(shadow-layer 0))
|
(shadow-layer 0))
|
||||||
|
|
||||||
(gimp-image-undo-disable image)
|
(gimp-undo-push-group-start image)
|
||||||
|
|
||||||
(gimp-layer-add-alpha drawable)
|
(gimp-layer-add-alpha drawable)
|
||||||
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
||||||
@ -152,7 +152,7 @@
|
|||||||
|
|
||||||
(gimp-image-set-active-layer image drawable)
|
(gimp-image-set-active-layer image drawable)
|
||||||
(gimp-palette-set-background old-bg)
|
(gimp-palette-set-background old-bg)
|
||||||
(gimp-image-undo-enable image)
|
(gimp-undo-push-group-end image)
|
||||||
(gimp-displays-flush)))
|
(gimp-displays-flush)))
|
||||||
|
|
||||||
(script-fu-register "script-fu-drop-shadow"
|
(script-fu-register "script-fu-drop-shadow"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
(define (script-fu-erase-rows img drawable orientation which)
|
(define (script-fu-erase-rows img drawable orientation which)
|
||||||
(let* ((width (car (gimp-drawable-width drawable)))
|
(let* ((width (car (gimp-drawable-width drawable)))
|
||||||
(height (car (gimp-drawable-height drawable))))
|
(height (car (gimp-drawable-height drawable))))
|
||||||
(gimp-image-undo-disable img)
|
(gimp-undo-push-group-start img)
|
||||||
(letrec ((loop (lambda (i max)
|
(letrec ((loop (lambda (i max)
|
||||||
(if (< i max)
|
(if (< i max)
|
||||||
(begin
|
(begin
|
||||||
@ -17,7 +17,7 @@
|
|||||||
height
|
height
|
||||||
width)))
|
width)))
|
||||||
(gimp-selection-none img)
|
(gimp-selection-none img)
|
||||||
(gimp-image-undo-enable img)
|
(gimp-undo-push-group-end img)
|
||||||
(gimp-displays-flush)))
|
(gimp-displays-flush)))
|
||||||
|
|
||||||
(script-fu-register "script-fu-erase-rows"
|
(script-fu-register "script-fu-erase-rows"
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
|
|
||||||
|
|
||||||
(if (= rel-distance 0) (set! rel-distance 999999))
|
(if (= rel-distance 0) (set! rel-distance 999999))
|
||||||
(gimp-image-undo-disable image)
|
(gimp-undo-push-group-start image)
|
||||||
|
|
||||||
(gimp-layer-add-alpha drawable)
|
(gimp-layer-add-alpha drawable)
|
||||||
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
||||||
@ -174,7 +174,7 @@
|
|||||||
|
|
||||||
(gimp-image-set-active-layer image drawable)
|
(gimp-image-set-active-layer image drawable)
|
||||||
(gimp-palette-set-background old-bg)
|
(gimp-palette-set-background old-bg)
|
||||||
(gimp-image-undo-enable image)
|
(gimp-undo-push-group-end image)
|
||||||
(gimp-displays-flush)))
|
(gimp-displays-flush)))
|
||||||
|
|
||||||
(script-fu-register "script-fu-perspective-shadow"
|
(script-fu-register "script-fu-perspective-shadow"
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
(image-width (car (gimp-image-width image)))
|
(image-width (car (gimp-image-width image)))
|
||||||
(image-height (car (gimp-image-height image))))
|
(image-height (car (gimp-image-height image))))
|
||||||
|
|
||||||
(gimp-image-undo-disable image)
|
(gimp-undo-push-group-start image)
|
||||||
(gimp-layer-add-alpha drawable)
|
(gimp-layer-add-alpha drawable)
|
||||||
|
|
||||||
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
(if (= (car (gimp-selection-is-empty image)) TRUE)
|
||||||
@ -90,7 +90,7 @@
|
|||||||
(if (= keep-selection FALSE)
|
(if (= keep-selection FALSE)
|
||||||
(gimp-selection-none image))
|
(gimp-selection-none image))
|
||||||
|
|
||||||
(gimp-image-undo-enable image)
|
(gimp-undo-push-group-end image)
|
||||||
(gimp-image-set-active-layer image drawable)
|
(gimp-image-set-active-layer image drawable)
|
||||||
(gimp-image-remove-channel image active-selection)
|
(gimp-image-remove-channel image active-selection)
|
||||||
(gimp-displays-flush)))
|
(gimp-displays-flush)))
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
(image-height (car (gimp-image-height image)))
|
(image-height (car (gimp-image-height image)))
|
||||||
(old-bg (car (gimp-palette-get-background))))
|
(old-bg (car (gimp-palette-get-background))))
|
||||||
|
|
||||||
(gimp-image-undo-disable image)
|
(gimp-undo-push-group-start image)
|
||||||
(gimp-layer-add-alpha drawable)
|
(gimp-layer-add-alpha drawable)
|
||||||
|
|
||||||
|
|
||||||
@ -107,7 +107,7 @@
|
|||||||
|
|
||||||
(gimp-image-set-active-layer image drawable)
|
(gimp-image-set-active-layer image drawable)
|
||||||
(gimp-image-remove-channel image active-selection)
|
(gimp-image-remove-channel image active-selection)
|
||||||
(gimp-image-undo-enable image)
|
(gimp-undo-push-group-end image)
|
||||||
(gimp-displays-flush)))
|
(gimp-displays-flush)))
|
||||||
|
|
||||||
(script-fu-register "script-fu-xach-effect"
|
(script-fu-register "script-fu-xach-effect"
|
||||||
|
Reference in New Issue
Block a user