summaryrefslogtreecommitdiff
path: root/templates/lettering_remove_kerning.xml
blob: 9a0d84ce08f7eeeef55832ab8e9e59ad12603862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <name>Remove Kerning</name>
    <id>org.{{ id_inkstitch }}.lettering_remove_kerning</id>
    <param name="extension" type="string" gui-hidden="true">lettering_remove_kerning</param>


    <param name="notebook" type="notebook">
        <page name="options" gui-text="Options">
            <param type="path" name="font-files" gui-text="Select Font Files" mode="files" filetypes="svg"/>
        </page>
        <page name="info" gui-text="Help">

            <label appearance="header">Removes Kerning information from given SVG files</label>
            <separator />
            <label>
                &#9888; Make sure you keep a copy of the original file.
                After running this extension kerning information will be lost unrevertably from these files.
            </label>
            <separator />
            <spacer />
            <label>More information on our website</label>
            <label appearance="url">https://inkstitch.org/docs/font-tools/#remove-kerning</label>
        </page>
    </param>

    <effect needs-live-preview="false">
        <object-type>all</object-type>
        <effects-menu>
            <submenu name="{{ menu_inkstitch }}" translatable="no">
                <submenu name="Font Management" />
            </submenu>
        </effects-menu>
    </effect>
    <script>
        {{ command_tag | safe }}
    </script>
</inkscape-extension>