Changes for increased compatability with Script-Fu scripts.

2006-09-29  Kevin Cozens  <kcozens@cvs.gnome.org>

	Changes for increased compatability with Script-Fu scripts.

	* tiny-fu/tiny-fu-scripts.c:
	* tiny-fu/ts-wrapper.c: Changed references of tiny-fu*-register to
	script-fu*-register, tiny-fu-path to script-fu-path, and tiny-fu-quit
	to script-fu-quit.

	* scripts/*.scm: All scripts changed to use script-fu-... instead
	of tiny-fu-... in function names and in the register call.
This commit is contained in:
Kevin Cozens
2006-09-29 06:01:39 +00:00
committed by Kevin Cozens
parent 80cbb2f83e
commit cb4f30cab9
4 changed files with 13 additions and 13 deletions

View File

@ -24,7 +24,7 @@
;
; Tiny-Fu first successfully ran this script at 2:07am on March 6, 2004.
(define (tiny-fu-helloworld text font size colour)
(define (script-fu-helloworld text font size colour)
(let*
(
(width 10)
@ -50,7 +50,7 @@
)
)
(tiny-fu-register "tiny-fu-helloworld"
(script-fu-register "script-fu-helloworld"
_"Hello World"
"Creates an image with a user specified text string."
"Kevin Cozens <kcozens@interlog.com>"
@ -63,5 +63,5 @@
SF-COLOR _"Color" '(0 0 0)
)
(tiny-fu-menu-register "tiny-fu-helloworld"
(script-fu-menu-register "script-fu-helloworld"
"<Toolbox>/Xtns/Test")