mirror of https://github.com/GNOME/gimp.git
extensions: Lua and Python 3 goat-exercise procedure name consistency.
All our plug-ins are named "plug-in-*", and in particular our goat exercise plug-ins are all named "plug-in-goat-exercise-*". Only the Python 3 and Lua were named differently. This fixes the inconsistency.
This commit is contained in:
parent
228ad503ad
commit
22b516a1cc
|
@ -136,7 +136,7 @@ end
|
|||
Goat:class('Exercise', Gimp.PlugIn)
|
||||
|
||||
function Goat.Exercise:do_query_procedures()
|
||||
return { 'goat-exercise-lua' }
|
||||
return { 'plug-in-goat-exercise-lua' }
|
||||
end
|
||||
|
||||
function Goat.Exercise:do_create_procedure(name)
|
||||
|
|
|
@ -36,7 +36,7 @@ class Goat (Gimp.PlugIn):
|
|||
self.set_translation_domain("gimp30-python",
|
||||
Gio.file_new_for_path(Gimp.locale_directory()))
|
||||
|
||||
return [ "goat-exercise-python" ]
|
||||
return [ "plug-in-goat-exercise-python" ]
|
||||
|
||||
def do_create_procedure(self, name):
|
||||
procedure = Gimp.ImageProcedure.new(self, name,
|
||||
|
|
Loading…
Reference in New Issue