-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.xml
32 lines (32 loc) · 1.75 KB
/
Config.xml
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
<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>Clipboard Wizard</Name>
<Author>Atlas Systems, Inc.</Author>
<Version>1.0.0</Version>
<Active>True</Active>
<Type>Addon</Type>
<Description>Copies information about an item into the windows clipboard</Description>
<Forms>
<!--Ares-->
<Form>FormItem</Form>
<!--Aeon and ILLiad-->
<Form>FormRequest</Form>
</Forms>
<Settings>
<Setting name="ComparatorFormat" value="{Default}" type="string">
<Description>Defines the format string to retrieve data to determine if the PrimaryFormatString or SecondaryFormatString is used to copy data into the clipboard. A value of {Default} will set it based on the current product.</Description>
</Setting>
<Setting name="ComparatorValue" value="{Default}" type="string">
<Description>Compared to the output of ComparatorFormat. If the value matches then PrimaryFormatString is used; otherwise, SecondaryFormatString is used. A value of {Default} will set it based on the current product.</Description>
</Setting>
<Setting name="PrimaryFormatString" value="{Default}" type="string">
<Description>Defines the primary format string to copy data into the clipboard. A value of {Default} will set it based on the current product.</Description>
</Setting>
<Setting name="SecondaryFormatString" value="{Default}" type="string">
<Description>Defines the secondary format string to copy data into the clipboard. A value of {Default} will set it based on the current product.</Description>
</Setting>
</Settings>
<Files>
<File>ClipboardWizard.lua</File>
</Files>
</Configuration>