-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added additional office apps and update mobile doc
There is now an additional apps json file include native office apps if people have office installed and wish to try launching and potentially snapping the documents. There is a new version of the create workspace mobile app npm package so the document has been updated to remove text that no longer applies.
- Loading branch information
Showing
14 changed files
with
148 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
135 changes: 135 additions & 0 deletions
135
how-to/workspace-platform-starter/public/common/apps-native-microsoft-office.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
[ | ||
{ | ||
"appId": "ms-outlook-mail", | ||
"name": "ms-outlook-mail", | ||
"title": "Microsoft Outlook", | ||
"description": "Launch Microsoft Outlook.", | ||
"manifest": { | ||
"path": "C:\\Program Files\\Microsoft Office\\root\\Office16\\OUTLOOK.EXE" | ||
}, | ||
"manifestType": "inline-external", | ||
"icons": [ | ||
{ | ||
"src": "http://localhost:8080/common/images/ms/apps/outlook-mail.svg" | ||
} | ||
], | ||
"contactEmail": "[email protected]", | ||
"supportEmail": "[email protected]", | ||
"publisher": "Microsoft", | ||
"intents": [], | ||
"images": [], | ||
"tags": ["native", "microsoft", "outlook", "mail"], | ||
"launchPreference": { | ||
"options": { | ||
"type": "native", | ||
"snap": { | ||
"strategy": { | ||
"type": "waitForWindowOfClass", | ||
"timeoutMs": 15000, | ||
"matchRegex": "^(rctrl_renwnd32|OlkWV2Frame)" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"appId": "ms-word", | ||
"name": "ms-word", | ||
"title": "Microsoft Word", | ||
"description": "Launch Microsoft Word.", | ||
"manifest": { | ||
"path": "C:\\Program Files\\Microsoft Office\\root\\Office16\\WINWORD.EXE" | ||
}, | ||
"manifestType": "inline-external", | ||
"icons": [ | ||
{ | ||
"src": "http://localhost:8080/common/images/ms/apps/word.svg" | ||
} | ||
], | ||
"contactEmail": "[email protected]", | ||
"supportEmail": "[email protected]", | ||
"publisher": "Microsoft", | ||
"intents": [], | ||
"images": [], | ||
"tags": ["native", "microsoft", "word"], | ||
"launchPreference": { | ||
"options": { | ||
"type": "native", | ||
"snap": { | ||
"strategy": { | ||
"type": "waitForWindowOfClass", | ||
"timeoutMs": 15000, | ||
"matchRegex": "^OpusApp" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"appId": "ms-excel", | ||
"name": "ms-excel", | ||
"title": "Microsoft Excel", | ||
"description": "Launch Microsoft Excel.", | ||
"manifest": { | ||
"path": "C:\\Program Files\\Microsoft Office\\root\\Office16\\EXCEL.EXE", | ||
"arguments": "/x" | ||
}, | ||
"manifestType": "inline-external", | ||
"icons": [ | ||
{ | ||
"src": "http://localhost:8080/common/images/ms/apps/excel.svg" | ||
} | ||
], | ||
"contactEmail": "[email protected]", | ||
"supportEmail": "[email protected]", | ||
"publisher": "Microsoft", | ||
"intents": [], | ||
"images": [], | ||
"tags": ["native", "microsoft", "excel"], | ||
"launchPreference": { | ||
"options": { | ||
"type": "native", | ||
"snap": { | ||
"strategy": { | ||
"type": "waitForWindowOfClass", | ||
"timeoutMs": 15000, | ||
"matchRegex": "^XLMAIN" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"appId": "ms-powerpoint", | ||
"name": "ms-powerpoint", | ||
"title": "Microsoft PowerPoint", | ||
"description": "Launch Microsoft PowerPoint.", | ||
"manifest": { | ||
"path": "C:\\Program Files\\Microsoft Office\\root\\Office16\\POWERPNT.EXE" | ||
}, | ||
"manifestType": "inline-external", | ||
"icons": [ | ||
{ | ||
"src": "http://localhost:8080/common/images/ms/apps/powerpoint.svg" | ||
} | ||
], | ||
"contactEmail": "[email protected]", | ||
"supportEmail": "[email protected]", | ||
"publisher": "Microsoft", | ||
"intents": [], | ||
"images": [], | ||
"tags": ["native", "microsoft", "powerpoint"], | ||
"launchPreference": { | ||
"options": { | ||
"type": "native", | ||
"snap": { | ||
"strategy": { | ||
"type": "waitForWindowOfClass", | ||
"timeoutMs": 15000, | ||
"matchRegex": "^PPTFrameClass" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] |
1 change: 1 addition & 0 deletions
1
how-to/workspace-platform-starter/public/common/images/ms/apps/excel.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
how-to/workspace-platform-starter/public/common/images/ms/apps/microsoft365.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
how-to/workspace-platform-starter/public/common/images/ms/apps/onedrive.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
how-to/workspace-platform-starter/public/common/images/ms/apps/onenote.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
...to/workspace-platform-starter/public/common/images/ms/apps/outlook-calendar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.