This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanifest.xml
99 lines (99 loc) · 4.71 KB
/
manifest.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">
<Id>75f34f45-fec5-435e-901d-c35fdc04bd5d</Id>
<Version>1.0.0.0</Version>
<ProviderName>{PROVIDER_NAME}</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Jitsi"/>
<Description DefaultValue="A Jitsi Add-in to easily add a Jitsi meeting instance to an appointment.">
<Override Locale="sv-SE" Value="En Jitsi Add-in som gör det enkelt att tilldela ett Jitsi-möte till din mötesinbjudan." />
<Override Locale="de-DE" Value="Ein Jitsi-Add-In zum einfachen Hinzufügen einer Jitsi-Meeting-Instanz zu einem Termin." />
</Description>
<IconUrl DefaultValue="{PROJECT_BASE_URL}/assets/icon-64.png"/>
<HighResolutionIconUrl DefaultValue="{PROJECT_BASE_URL}/assets/logo-filled.png"/>
<SupportUrl DefaultValue="{SUPPORT_URL}"/>
<Hosts>
<Host Name="Mailbox"/>
</Hosts>
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.1"/>
</Sets>
</Requirements>
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="{PROJECT_BASE_URL}/commands.html"/>
<RequestedHeight>250</RequestedHeight>
</DesktopSettings>
</Form>
</FormSettings>
<Permissions>ReadWriteItem</Permissions>
<Rule xsi:type="RuleCollection" Mode="Or">
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read"/>
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
<Requirements>
<bt:Sets DefaultMinVersion="1.3">
<bt:Set Name="Mailbox"/>
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<FunctionFile resid="Commands.Url"/>
<ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
<OfficeTab id="Tab.Create">
<Group id="Tab.Create.Group">
<Label resid="Label"/>
<Control xsi:type="Button" id="Button.Create.Jitsi">
<Label resid="FunctionButton.Label"/>
<Supertip>
<Title resid="FunctionButton.Title"/>
<Description resid="FunctionButton.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16"/>
<bt:Image size="32" resid="Icon.32"/>
<bt:Image size="80" resid="Icon.80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>insertJitsiLink</FunctionName>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
</DesktopFormFactor>
</Host>
</Hosts>
<Resources>
<bt:Images>
<bt:Image id="Icon.16" DefaultValue="{PROJECT_BASE_URL}/assets/icon-16.png"/>
<bt:Image id="Icon.32" DefaultValue="{PROJECT_BASE_URL}/assets/icon-32.png"/>
<bt:Image id="Icon.80" DefaultValue="{PROJECT_BASE_URL}/assets/icon-80.png"/>
</bt:Images>
<bt:Urls>
<bt:Url id="Commands.Url" DefaultValue="{PROJECT_BASE_URL}/commands.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="Label" DefaultValue="Jitsi"/>
<bt:String id="FunctionButton.Label" DefaultValue="Create Jitsi link">
<bt:Override Locale="sv-SE" Value="Skapa Jitsi-länk" />
<bt:Override Locale="de-DE" Value="Jitsi-Link erstellen" />
</bt:String>
<bt:String id="FunctionButton.Title" DefaultValue="Create Jitsi link">
<bt:Override Locale="sv-SE" Value="Skapa Jitsi-länk" />
<bt:Override Locale="de-DE" Value="Jitsi-Link erstellen" />
</bt:String>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="FunctionButton.Tooltip" DefaultValue="Creates and pastes a Jitsi link into your meeting invite.">
<bt:Override Locale="sv-SE" Value="Skapar och klistrar in en Jitsi-länk i din mötesinbjudan." />
<bt:Override Locale="de-DE" Value="Erstellt einen Jitsi-Link und fügt ihn in Ihre Besprechungseinladung ein." />
</bt:String>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</OfficeApp>