added ignore for release folder

This commit is contained in:
grimsace
2026-05-19 10:40:41 -05:00
parent ae7161263e
commit b392d9028a
4 changed files with 19 additions and 5 deletions
+1
View File
@@ -0,0 +1 @@
/releases
-2
View File
@@ -2,8 +2,6 @@
Type=Service
ServiceTypes=Krita/PythonPlugin
X-Krita-Manual=Manual.html
Component=grid_generator
X-Python-2-Compatible=false
X-Krita-Python-Extension=grid_generator
Name=Grid Generator
Comment=Generates square and hexagonal grids.
+17
View File
@@ -0,0 +1,17 @@
<html>
<head>
<title>Grid Generator Manual</title>
</head>
<body>
<h1>Grid Generator</h1>
<p>This plugin generates square and hexagonal grids on vector layers.</p>
<h2>Usage</h2>
<ol>
<li>Go to <b>Tools > Scripts > Grid Generator...</b></li>
<li>Set the line thickness, width, and height.</li>
<li>Choose the grid type (Square or Hexagon).</li>
<li>Choose whether to generate on the current layer or a new layer.</li>
<li>Click <b>Generate</b>.</li>
</ol>
</body>
</html>
+1 -3
View File
@@ -3,6 +3,4 @@ from krita import Krita
from .grid_generator import GridGenerator
# Create the plugin instance and add it to Krita
instance = Krita.instance()
extension = GridGenerator(instance)
instance.addExtension(extension)
Krita.instance().addExtension(GridGenerator(Krita.instance()))