[gimp] extensions: Lua and Python 3 goat-exercise procedure name consistency.
- From: Jehan <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] extensions: Lua and Python 3 goat-exercise procedure name consistency.
- Date: Sat, 17 Oct 2020 19:50:03 +0000 (UTC)
commit 22b516a1cc3fed4a572e09b9c421db9b5aef293c
Author: Jehan <jehan girinstud io>
Date: Sat Oct 17 21:48:12 2020 +0200
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.
extensions/goat-exercises/goat-exercise-lua.lua | 2 +-
extensions/goat-exercises/goat-exercise-py3.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/extensions/goat-exercises/goat-exercise-lua.lua b/extensions/goat-exercises/goat-exercise-lua.lua
index 9af38635e1..cec8107ead 100755
--- a/extensions/goat-exercises/goat-exercise-lua.lua
+++ b/extensions/goat-exercises/goat-exercise-lua.lua
@@ -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)
diff --git a/extensions/goat-exercises/goat-exercise-py3.py b/extensions/goat-exercises/goat-exercise-py3.py
index be54f86255..89552c5b68 100755
--- a/extensions/goat-exercises/goat-exercise-py3.py
+++ b/extensions/goat-exercises/goat-exercise-py3.py
@@ -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,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]