diff --git a/listing/README.md b/listing/README.md index a07eaf7..af1d93c 100644 --- a/listing/README.md +++ b/listing/README.md @@ -1,3 +1,24 @@ # README Information needed for the store listing. + +[Publish Dashboard](https://partner.microsoft.com/en-us/dashboard/marketplace-offers/overview) + +## Creating Snapshots + +- Clear Add-In Cache: + - File -> Options -> Trust Center + - Trust Center Settings + - Trusted Add-in Catalogs + - Check: `Next time Office starts, clear all previous-started we add-ins cache` +- Sideload the manifest. +- Arrange the image: + - Edit pane + - Run pane +- Use snipping tool to capture the image. + - Take a full shot of the screen. + - Save the image over the existing host taskpane image. +- crop the images + > npm run crop +- Check the images look good. +- Check the images are the correct width and height. diff --git a/listing/crop.cmd b/listing/crop.cmd index 68cfa3b..12871d1 100644 --- a/listing/crop.cmd +++ b/listing/crop.cmd @@ -20,12 +20,25 @@ set width=1366 set height=768 :: save over the original image and them crop. -set image_name_in=excel-taskpane-%width%-%height%.png -set image_name_out=excel-taskpane-%width%-%height%.png + +call :crop excel +call :crop powerpoint +call :crop word + +goto :eof + +:crop +set name=%1 +echo. +echo Crop %name% +set image_name_in=%name%-taskpane-%width%-%height%.png +set image_name_out=%name%-taskpane-%width%-%height%.png set image_in=%THISDIR%\%image_name_in% set image_out=%THISDIR%\%image_name_out% set command=%magick% %image_in% -crop %width%x%height%+0+0 %image_out% echo %command% -call %command% \ No newline at end of file +call %command% +goto :eof + diff --git a/listing/excel-taskpane-1366-768.png b/listing/excel-taskpane-1366-768.png index 1c50460..847f197 100644 Binary files a/listing/excel-taskpane-1366-768.png and b/listing/excel-taskpane-1366-768.png differ diff --git a/listing/powerpoint-taskpane-1366-768.png b/listing/powerpoint-taskpane-1366-768.png new file mode 100644 index 0000000..836f7c1 Binary files /dev/null and b/listing/powerpoint-taskpane-1366-768.png differ diff --git a/listing/word-taskpane-1366-768.png b/listing/word-taskpane-1366-768.png new file mode 100644 index 0000000..b1a7cb8 Binary files /dev/null and b/listing/word-taskpane-1366-768.png differ