Skip to content

Commit

Permalink
Tweaks for v1.0.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SietseB committed Dec 23, 2024
1 parent d8e179b commit 7959298
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __init__legacy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bl_info = {
"name": "GP Tool Wheel",
"author": "Sietse Brouwer",
"version": (1, 0, 6),
"version": (1, 0, 7),
"blender": (3, 0, 0),
"description": "Extended pie menu for selecting Grease Pencil tools quickly.",
"doc_url": "https://github.com/SietseB/GP-Tool-Wheel",
Expand Down
2 changes: 1 addition & 1 deletion blender_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ schema_version = "1.0.0"
# Example of manifest file for a Blender extension
# Change the values according to your extension
id = "grease_pencil_tool_wheel"
version = "1.0.6"
version = "1.0.7"
name = "GP Tool Wheel"
tagline = "Extended pie menu for selecting Grease Pencil tools quickly"
maintainer = "Sietse Brouwer <sietse@hetvrijeoog.nl>"
Expand Down
Binary file modified docs/images/gp_tool_wheel_preferences_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/gp_tool_wheel_preferences_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/edit_shear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tool_wheel_draw.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def prepare(self, event, area, context):
self.sep_color = self.get_adjusted_color(list(wheel_colors.outline)[0:3] + [1], -0.03)
self.sep_color_sel = self.get_adjusted_color(self.sep_color, -0.07)
self.text_color = wheel_colors.text
self.highlight_color = self.get_adjusted_color(base_color, 0.05)
self.highlight_color = self.get_adjusted_color(base_color, 0.07)

# Init shaders
self.shader_icon_bg = gpu.shader.from_builtin(COLOR_SHADER)
Expand Down

0 comments on commit 7959298

Please sign in to comment.