Skip to content

Commit f6a1d71

Browse files
[Excel] (keyboard shortcuts) Document support in the unified app manifest (#4678)
* Update articles to support keyboard shortcuts in the unified manifest * Fix column header * Delete redundant article * Update articles to support keyboard shortcuts in the unified manifest * Fix column header * Delete redundant article * Update ms.date and move localization information * Apply corrections from review Co-authored-by: Rick Kirkham <[email protected]> * Remove requirements property from extensions.runtimes * Undo TOC changes * Replace XML manifest term * Update platform support * Update ms.date --------- Co-authored-by: Rick Kirkham <[email protected]>
1 parent 72fea07 commit f6a1d71

7 files changed

+321
-279
lines changed

.openpublishing.redirection.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,10 @@
12981298
"source_path": "docs/outlook/use-regular-expressions-to-show-an-outlook-add-in.md",
12991299
"redirect_url": "/office/dev/add-ins/outlook/contextual-outlook-add-ins"
13001300
},
1301+
{
1302+
"source_path": "docs/develop/extended-overrides.md",
1303+
"redirect_url": "/javascript/api/manifest/extendedoverrides"
1304+
},
13011305
{
13021306
"source_path": "docs/outlook/activation-rules.md",
13031307
"redirect_url": "/javascript/api/manifest/rule"

docs/design/keyboard-shortcuts.md

Lines changed: 224 additions & 34 deletions
Large diffs are not rendered by default.

docs/develop/extended-overrides.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

docs/develop/json-manifest-overview.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Compare the add-in only manifest with the unified manifest for Microsoft 365
33
description: Get a comparison of the add-in only manifest with the unified manifest for Microsoft 365.
44
ms.topic: overview
5-
ms.date: 09/09/2024
5+
ms.date: 02/12/2025
66
ms.localizationpriority: high
77
---
88

@@ -91,9 +91,10 @@ The following table shows a mapping of *some* high-level child properties of the
9191
| "requirements.capabilities" | Identifies the [requirement sets](office-versions-and-requirement-sets.md#office-requirement-sets-availability) that the add-in needs to be installable. that the add-in needs to be installable. | **\<Requirements\>** and **\<Sets\>** |*None* |
9292
| "requirements.scopes" | Identifies the Office applications in which the add-in can be installed. | **\<Hosts\>** |*None* |
9393
| "ribbons" | The ribbons that the add-in customizes. | **\<Hosts\>**, **ExtensionPoints**, and various **\*FormFactor** elements | The "ribbons" property is an array of anonymous objects that each merge the purposes of the these three elements. See ["ribbons" table](#ribbons-table).|
94-
| "alternates" | Specifies backwards compatibility with an equivalent COM add-in, XLL, or both. | **\<EquivalentAddins\>** | See the [EquivalentAddins - See also](/javascript/api/manifest/equivalentaddins#see-also) for background information. |
95-
| "runtimes" | Configures the [embedded runtimes](../testing/runtimes.md) that the add-in uses, including various kinds of add-ins that have little or no UI, such as custom function-only add-ins and [function commands](../design/add-in-commands.md#types-of-add-in-commands). | **\<Runtimes\>**. **\<FunctionFile\>**, and **\<ExtensionPoint\>** (of type CustomFunctions) |*None* |
96-
| "autoRunEvents" | Configures an event handler for a specified event. | **\<ExtensionPoint\>** (of type LaunchEvent) |*None* |
94+
| "alternatives" | Specifies backwards compatibility with an equivalent COM add-in, XLL, or both. | **\<EquivalentAddins\>** | See the [EquivalentAddins - See also](/javascript/api/manifest/equivalentaddins#see-also) for background information. |
95+
| "runtimes" | Configures the [embedded runtimes](../testing/runtimes.md) that the add-in uses, including various kinds of add-ins that have little or no UI, such as custom function-only add-ins and [function commands](../design/add-in-commands.md#types-of-add-in-commands). | **\<Runtimes\>**. **\<FunctionFile\>**, and **\<ExtensionPoint\>** (of type CustomFunctions) |*None.* |
96+
| "autoRunEvents" | Configures an event handler for a specified event. | **\<ExtensionPoint\>** (of type LaunchEvent) |*None.* |
97+
| "keyboardShortcuts" (developer preview) | Defines custom keyboard shortcuts or key combinations to run specific actions. | **\<ExtendedOverrides\>** | *None.* |
9798

9899
#### "ribbons" table
99100

0 commit comments

Comments
 (0)