Skip to content

Commit 8d26677

Browse files
author
github-actions
committed
Merge branch 'main' into live
2 parents 3e21d85 + 49c8b66 commit 8d26677

22 files changed

+229
-179
lines changed

docs/develop/asynchronous-programming-in-office-add-ins.md

Lines changed: 44 additions & 142 deletions
Large diffs are not rendered by default.

docs/develop/create-addin-commands-unified-manifest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create add-in commands with the unified manifest for Microsoft 365
33
description: Configure the unified manifest for Microsoft 365 to define add-in commands for Excel, Outlook, PowerPoint, and Word. Use add-in commands to create UI elements, add buttons or lists, and perform actions.
4-
ms.date: 07/18/2024
4+
ms.date: 01/07/2025
55
ms.localizationpriority: medium
66
---
77

@@ -248,7 +248,7 @@ The following subsections explain how to include a [function command](../design/
248248
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
249249

250250
<!-- Office JavaScript Library -->
251-
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js"></script>
251+
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
252252
<!-- Function command file -->
253253
<script src="commands.js" type="text/javascript"></script>
254254
</head>

docs/develop/get-the-whole-document-from-an-add-in-for-powerpoint-or-word.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Get the whole document from an add-in for PowerPoint or Word
33
description: Learn to get the whole document from a PowerPoint or Word add-in.
4-
ms.date: 10/03/2024
4+
ms.date: 01/07/2025
55
ms.topic: how-to
66
ms.localizationpriority: medium
77
---
@@ -88,7 +88,7 @@ Use the following procedure to create a simple user interface for the add-in tha
8888
<title>Publish presentation</title>
8989
<link rel="stylesheet" type="text/css" href="Program.css" />
9090
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js" type="text/javascript"></script>
91-
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
91+
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js" type="text/javascript"></script>
9292
<script src="GetDoc_App.js"></script>
9393
</head>
9494
<body>
@@ -116,7 +116,7 @@ Use the following procedure to create a simple user interface for the add-in tha
116116
<title>Publish document</title>
117117
<link rel="stylesheet" type="text/css" href="Program.css" />
118118
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js" type="text/javascript"></script>
119-
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
119+
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js" type="text/javascript"></script>
120120
<script src="GetDoc_App.js"></script>
121121
</head>
122122
<body>

docs/develop/referencing-the-javascript-api-for-office-library-from-its-cdn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Referencing the Office JavaScript API library
33
description: Learn how to reference the Office JavaScript API library and type definitions in your add-in.
4-
ms.date: 10/03/2024
4+
ms.date: 01/07/2025
55
ms.localizationpriority: medium
66
---
77

@@ -12,7 +12,7 @@ The [Office JavaScript API](../reference/javascript-api-for-office.md) library p
1212
```html
1313
<head>
1414
...
15-
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
15+
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js" type="text/javascript"></script>
1616
</head>
1717
```
1818

@@ -23,7 +23,7 @@ This will download and cache the Office JavaScript API files the first time your
2323
2424
## API versioning and backward compatibility
2525

26-
In the previous HTML snippet, the `/1.1/` in front of `office.js` in the CDN URL specifies the latest incremental release within version 1 of Office.js. Because the Office JavaScript API maintains backward compatibility, the latest release will continue to support API members that were introduced earlier in version 1.
26+
In the previous HTML snippet, the `/1/` in front of `office.js` in the CDN URL specifies the latest incremental release within version 1 of Office.js. Because the Office JavaScript API maintains backward compatibility, the latest release will continue to support API members that were introduced earlier in version 1.
2727

2828
If you plan to publish your Office Add-in from AppSource, you must use this CDN reference. Local references are only appropriate for internal, development, and debugging scenarios.
2929

docs/develop/requirements-property-unified-manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The "extensions.alternates" property enables add-in developers to do the followi
6161
> [!NOTE]
6262
> Office Add-ins that use the unified manifest for Microsoft 365 are *directly* supported in Office on the web, in [new Outlook on Windows](https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627), and in Office on Windows connected to a Microsoft 365 subscription, Version 2304 (Build 16320.00000) or later.
6363
>
64-
> When the app package that contains the unified manifest is deployed in [AppSource](https://appsource.microsoft.com/) or the [Microsoft 365 Admin Center](/office/dev/add-ins/publish/publish) then, if the manifest has a valid "alternateIcons" property, an add-in only manifest is generated from the unified manifest and stored. This add-in only manifest enables the add-in to be installed on platforms that don't directly support the unified manifest, including Office on Mac, Office on mobile, subscription versions of Office on Windows earlier than 2304 (Build 16320.00000), and perpetual versions of Office on Windows.
64+
> When the app package that contains the unified manifest is deployed in [AppSource](https://appsource.microsoft.com/) or the [Microsoft 365 Admin Center](/office/dev/add-ins/publish/publish) then an add-in only manifest is generated from the unified manifest and stored. This add-in only manifest enables the add-in to be installed on platforms that don't directly support the unified manifest, including Office on Mac, Office on mobile, subscription versions of Office on Windows earlier than 2304 (Build 16320.00000), and perpetual versions of Office on Windows.
6565
6666
For more information, see [Manage both a unified manifest and an add-in only manifest version of your Office Add-in](/office/dev/add-ins/concepts/duplicate-legacy-metaos-add-ins).
6767

docs/develop/specify-office-hosts-and-api-requirements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Specify Office hosts and API requirements
33
description: Learn how to specify Office applications and API requirements for your add-in to work as expected.
44
ms.topic: best-practice
5-
ms.date: 10/03/2024
5+
ms.date: 01/07/2025
66
ms.localizationpriority: medium
77
---
88

@@ -33,7 +33,7 @@ This article helps you understand which options you should choose to ensure that
3333
Your add-in should load the most current version of the Office JavaScript API library from the content delivery network (CDN). To do this, be sure you have the following `script` tag in the first HTML file your add-in opens. Using `/1/` in the CDN URL ensures that you reference the most recent version of Office.js.
3434

3535
```HTML
36-
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
36+
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js" type="text/javascript"></script>
3737
```
3838

3939
## Specify which Office applications can host your add-in

docs/develop/support-ie-11.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Support older Microsoft webviews and Office versions
33
description: Learn how to support support older Microsoft webviews and Office versions in your add-in.
4-
ms.date: 04/04/2024
4+
ms.date: 01/07/2025
55
ms.localizationpriority: medium
66
---
77

@@ -70,7 +70,7 @@ This JavaScript should be as early in the add-in startup process as possible. Th
7070
<title>Contoso Task Pane Add-in</title>
7171

7272
<!-- Office JavaScript API -->
73-
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js"></script>
73+
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
7474
</head>
7575

7676
<body>
58.9 KB
Loading
9.47 KB
Loading
47.3 KB
Loading

0 commit comments

Comments
 (0)