Skip to content

Commit

Permalink
fix inx dependency in inkscape 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
artemtech committed May 28, 2021
1 parent cf3e538 commit f08b238
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradient_saver.inx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<!-- _name must have same name as .py file but capitalise it. Shows on Menu this way-->
<_name>Gradient Saver</_name>
<name>Gradient Saver</name>
<!-- id should be unique. Associates entered values with this menu -->
<id>id.artemtech.gradient_saver</id>
<!-- mention a dependency here and will check for existence (optional)-->
<dependency type="executable" location="extensions">gradient_saver/gradient_saver.py</dependency>
<dependency type="executable" location="inx">gradient_saver/gradient_saver.py</dependency>
<!-- classify which menu it appears under - can be new name -->
<effect>
<object-type>all</object-type>
</effect>
<!-- py file again -->
<script>
<command reldir="extensions" interpreter="python">gradient_saver/gradient_saver.py</command>
<command location="inx" interpreter="python">gradient_saver/gradient_saver.py</command>
</script>
</inkscape-extension>

0 comments on commit f08b238

Please sign in to comment.