-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from L21s/feature/fill_background
Feature/fill background
- Loading branch information
Showing
9 changed files
with
284 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,8 @@ | |
], | ||
"extends": [ | ||
"plugin:office-addins/recommended" | ||
] | ||
], | ||
"env": { | ||
"browser": true | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# L21s PowerPoint-AddIn | ||
|
||
## Set up Locally | ||
|
||
To start the AddIn locally, `Node.js` and `npm` must be installed. | ||
An activated version of `PowerPoint` is also required. | ||
|
||
To prepare the project for the first execution, the following two commands must be executed one after the other: | ||
|
||
```zsh Terminal | ||
npm install | ||
``` | ||
|
||
```zsh Terminal | ||
npm run build:dev | ||
``` | ||
|
||
After the project has been successfully built, the following command starts the AddIn. | ||
|
||
```zsh Terminal | ||
npm run start:desktop | ||
``` | ||
|
||
A new PowerPoint instance should be started at startup. After a few moments, the version of the AddIn can be seen in | ||
this instance. This is reflected as follows. If an installation of the AddIn already exists, the icon on the right-hand | ||
side is the locally started one. | ||
|
||
![Debug AddIn](docs/addInNew.png) | ||
|
||
While the code is being edited, the AddIn should be continuously updated (HotReload) so that the DevServer does not have | ||
to be restarted. As soon as the local instance is no longer required, it can be terminated with the following | ||
command: | ||
|
||
```zsh Terminal | ||
npm run stop | ||
``` | ||
|
||
## Helpful links | ||
|
||
[PowerPoint Api-Documentation](https://learn.microsoft.com/de-de/javascript/api/powerpoint?view=powerpoint-js-preview) | ||
[Office AddIn Scripts](https://github.com/OfficeDev/Office-Addin-Scripts) | ||
[Office AddIn Samples](https://github.com/OfficeDev/Office-Add-in-samples) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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