[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1965] trunk/py/scripts/addons/ paint_palette.py: Corected the unregistering.

Dany Lebel axonestudio at gmail.com
Thu May 26 03:50:48 CEST 2011


Revision: 1965
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=1965
Author:   axon_d
Date:     2011-05-26 01:50:45 +0000 (Thu, 26 May 2011)
Log Message:
-----------
Corected the unregistering.

Modified Paths:
--------------
    trunk/py/scripts/addons/paint_palette.py

Modified: trunk/py/scripts/addons/paint_palette.py
===================================================================
--- trunk/py/scripts/addons/paint_palette.py	2011-05-24 22:20:54 UTC (rev 1964)
+++ trunk/py/scripts/addons/paint_palette.py	2011-05-26 01:50:45 UTC (rev 1965)
@@ -23,15 +23,15 @@
 bl_info = {
     "name": "Paint Palettes",
     "author": "Dany Lebel (Axon D)",
-    "version": (0,8,1),
+    "version": (0,8,2),
     "blender": (2, 5, 7),
-    "api": 36722,
+    "api": 36826,
     "location": "Image Editor and 3D View > Any Paint mode > Color Palette or Weight Palette panel",
     "description": "Palettes for color and weight paint modes",
     "warning": "beta",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Paint/Palettes",
     "tracker_url": "http://projects.blender.org/tracker/index.php?func=detail&aid=25908",
-    "category": "Other"}
+    "category": "Paint"}
 
 """
 This addon brings palettes to the paint modes.
@@ -692,6 +692,7 @@
     
     
 def unregister():
+    bpy.utils.unregister_module(__name__)
     pass
 
 



More information about the Bf-extensions-cvs mailing list