feat: add calendar component with event management features including create, edit, delete, and share functionalities
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m25s
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m25s
This commit is contained in:
117
outlook-addin/manifest.xml
Normal file
117
outlook-addin/manifest.xml
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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>a1b2c3d4-e5f6-7890-abcd-ef1234567890</Id>
|
||||
<Version>1.0.0</Version>
|
||||
<ProviderName>Redlight</ProviderName>
|
||||
<DefaultLocale>en-US</DefaultLocale>
|
||||
<DisplayName DefaultValue="Redlight Meeting" />
|
||||
<Description DefaultValue="Create a Redlight / BigBlueButton meeting room directly from Outlook." />
|
||||
<SupportUrl DefaultValue="https://github.com/your-org/redlight" />
|
||||
|
||||
<Hosts>
|
||||
<Host Name="Mailbox" />
|
||||
</Hosts>
|
||||
|
||||
<Requirements>
|
||||
<Sets>
|
||||
<Set Name="Mailbox" MinVersion="1.5" />
|
||||
</Sets>
|
||||
</Requirements>
|
||||
|
||||
<FormSettings>
|
||||
<Form xsi:type="ItemEdit">
|
||||
<DesktopSettings>
|
||||
<SourceLocation DefaultValue="https://your-redlight-instance.com/outlook-addin/taskpane.html" />
|
||||
<RequestedHeight>600</RequestedHeight>
|
||||
</DesktopSettings>
|
||||
</Form>
|
||||
</FormSettings>
|
||||
|
||||
<Permissions>ReadWriteItem</Permissions>
|
||||
<Rule xsi:type="RuleCollection" Mode="Or">
|
||||
<Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Edit" />
|
||||
</Rule>
|
||||
|
||||
<DisableEntityHighlighting>true</DisableEntityHighlighting>
|
||||
|
||||
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides"
|
||||
xsi:type="VersionOverridesV1_0">
|
||||
<Requirements>
|
||||
<bt:Sets DefaultMinVersion="1.5">
|
||||
<bt:Set Name="Mailbox" />
|
||||
</bt:Sets>
|
||||
</Requirements>
|
||||
|
||||
<Hosts>
|
||||
<Host xsi:type="MailHost">
|
||||
<DesktopFormFactor>
|
||||
<ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
|
||||
<OfficeTab id="TabDefault">
|
||||
<Group id="redlightGroup">
|
||||
<Label resid="groupLabel" />
|
||||
|
||||
<Control xsi:type="Button" id="redlightButton">
|
||||
<Label resid="buttonLabel" />
|
||||
<Supertip>
|
||||
<Title resid="buttonLabel" />
|
||||
<Description resid="buttonDesc" />
|
||||
</Supertip>
|
||||
<Icon>
|
||||
<bt:Image size="16" resid="icon16" />
|
||||
<bt:Image size="32" resid="icon32" />
|
||||
<bt:Image size="80" resid="icon80" />
|
||||
</Icon>
|
||||
<Action xsi:type="ShowTaskpane">
|
||||
<SourceLocation resid="taskpaneUrl" />
|
||||
</Action>
|
||||
</Control>
|
||||
|
||||
</Group>
|
||||
</OfficeTab>
|
||||
</ExtensionPoint>
|
||||
</DesktopFormFactor>
|
||||
|
||||
<!-- Mobile support -->
|
||||
<MobileFormFactor>
|
||||
<ExtensionPoint xsi:type="MobileOnlineMeetingCommandSurface">
|
||||
<Control xsi:type="MobileButton" id="redlightMobileButton">
|
||||
<Label resid="buttonLabel" />
|
||||
<Icon>
|
||||
<bt:Image size="25" resid="icon32" />
|
||||
<bt:Image size="32" resid="icon32" />
|
||||
<bt:Image size="48" resid="icon80" />
|
||||
</Icon>
|
||||
<Action xsi:type="ShowTaskpane">
|
||||
<SourceLocation resid="taskpaneUrl" />
|
||||
</Action>
|
||||
</Control>
|
||||
</ExtensionPoint>
|
||||
</MobileFormFactor>
|
||||
</Host>
|
||||
</Hosts>
|
||||
|
||||
<Resources>
|
||||
<bt:Images>
|
||||
<bt:Image id="icon16" DefaultValue="https://your-redlight-instance.com/outlook-addin/assets/icon-16.png" />
|
||||
<bt:Image id="icon32" DefaultValue="https://your-redlight-instance.com/outlook-addin/assets/icon-32.png" />
|
||||
<bt:Image id="icon80" DefaultValue="https://your-redlight-instance.com/outlook-addin/assets/icon-80.png" />
|
||||
</bt:Images>
|
||||
<bt:Urls>
|
||||
<bt:Url id="taskpaneUrl" DefaultValue="https://your-redlight-instance.com/outlook-addin/taskpane.html" />
|
||||
</bt:Urls>
|
||||
<bt:ShortStrings>
|
||||
<bt:String id="groupLabel" DefaultValue="Redlight" />
|
||||
<bt:String id="buttonLabel" DefaultValue="Redlight Meeting" />
|
||||
</bt:ShortStrings>
|
||||
<bt:LongStrings>
|
||||
<bt:String id="buttonDesc" DefaultValue="Create or select a Redlight meeting room and insert the join link into this event." />
|
||||
</bt:LongStrings>
|
||||
</Resources>
|
||||
|
||||
</VersionOverrides>
|
||||
</OfficeApp>
|
||||
Reference in New Issue
Block a user