;; simple script to get the version number, Alan Horkan 2004 ;; so long as remove these comments from your script ;; feel free to use it for whatever you like. ; only a little bit more complicated than "hello world" (define (script-fu-version-message-test) (gimp-message (string-append _"Version " (car (gimp-version)) ) ) ) ; registering the script means adding it to the menus (script-fu-register "script-fu-version-message-test" _"/Script-Fu/Test/Version..." "A message dialog displays the version number information" "Author Name goes here. " ; author(s) "No Copyright. Public Domain. " ; copyright would go here "April 2004" ; date "*" ; image types SF-IMAGE "Image" 0 SF-DRAWABLE "Drawable" 0 )