Skip to content

Commit

Permalink
Updates help and feedback section (#30)
Browse files Browse the repository at this point in the history
## 🎯 Aim

The aim is to add more helpful links to help and feedback section as
well as update issue link to viva repo

## 📷 Result

![helpAndFeedback](https://user-images.githubusercontent.com/58668583/235815660-7dbbfacf-f733-44a7-b732-a84cb19bff22.png)

## ✅ What was done

- [X] Updated links
- [X] Updated readme

## 🔗 Related issue

Closes: #20
  • Loading branch information
Adam-it committed May 3, 2023
1 parent 08b0cc9 commit 6fa289e
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 12 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Change Log

## [0.5.1] - 2023-05-03

- Updated help and feedback section

## [0.5.0] - 2023-05-01

- documentation and guidance updates
- Updated documentation and guidance

## [0.4.5] - 2023-04-30

Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The extension provides the following capabilities:

### Welcome experience

The extension automatically detects if you are in an SharePoint Framework project. If not, it will show helpful actions to allow you to create a new Viva Connections app.
The extension automatically detects if you are in a SharePoint Framework project. If not, it will show helpful actions to allow you to create a new Viva Connections app.

![Welcome experience](./assets/images/welcome-experience.png)

Expand Down Expand Up @@ -66,17 +66,21 @@ You may also run any gulp task with a click of a button

![Gulp Tasks](./assets/images/tasks.png)

As well as perform additional actions that among many things allows you to validate and upgrade your project to the latest version of the SharePoint Framework.
As well as perform additional actions that among many things allow you to validate and upgrade your project to the latest version of the SharePoint Framework.

![Actions](./assets/images/actions.png)

Additionally, you can also add new components to your existing project in a fast and easy way.

<p align="center">
<img alt="Add new component" src="./assets/images/new-component.png" />
</p>
![Add a new component](./assets/images/new-component.png)

![add a new component](./assets/images/add-component-gif.gif)
![Add a new component](./assets/images/add-component-gif.gif)

### Help and feedback

At any time have easy access to all the up-to-date documentation and additional resources that may be helpful when creating solutions for Viva Connections.

![Help and feedback/](./assets/images/help-and-feedback.png)

## Contributing

Expand All @@ -88,7 +92,7 @@ If you have ideas for new features or feedback, let us know by creating an issue

## Support

This project is community lead extension provided by the [Microsoft 365 and Power Platform Community](https://aka.ms/m365/community) members. Microsoft employees are closely involved on this work, but the solution is provided under the community brand without direct supportability channels from Microsoft.
This project is community lead extension provided by the [Microsoft 365 and Power Platform Community](https://aka.ms/m365/community) members. Microsoft employees are closely involved in this work, but the solution is provided under the community brand without direct supportability channels from Microsoft.

## Community

Expand Down
Binary file added assets/images/help-and-feedback.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "viva-connections-toolkit",
"displayName": "Viva Connections Toolkit",
"description": "With the Viva Connections Toolkit extension, you can create and manage your Viva Connections solutions on your tenant. All actions you need to perform during the development flow are at your fingertips. Extensions also works with any SharePoint Framework. This toolkit is provided by the community.",
"version": "0.5.0",
"version": "0.5.1",
"publisher": "m365pnp",
"preview": true,
"homepage": "https://github.com/pnp/vscode-viva",
Expand Down
17 changes: 16 additions & 1 deletion src/panels/CommandPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,16 @@ export class CommandPanel {
url: "https://adaptivecards.io/designer/",
image: { name: "globe", custom: false }
},
{
title: "Overview of the SharePoint Framework",
url: "https://learn.microsoft.com/en-us/sharepoint/dev/spfx/sharepoint-framework-overview",
image: { name: "book", custom: false }
},
{
title: "Join the Microsoft 365 Developer Program",
url: "https://developer.microsoft.com/en-us/microsoft-365/dev-program",
image: { name: "star-empty", custom: false }
},
{
title: "Microsoft Graph REST API Documentation",
url: "https://docs.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0",
Expand All @@ -194,9 +204,14 @@ export class CommandPanel {
url: "https://developer.microsoft.com/en-us/graph/graph-explorer",
image: { name: "globe", custom: false }
},
{
title: "Join the Microsoft 365 & Power Platform Community",
url: "https://pnp.github.io/",
image: { name: "organization", custom: false }
},
{
title: "Report an issue",
url: "https://github.com/SharePoint/sp-dev-docs/issues/new/choose",
url: "https://github.com/pnp/vscode-viva/issues/new/choose",
image: { name: "github", custom: false }
}
]
Expand Down

0 comments on commit 6fa289e

Please sign in to comment.