Skip to content

Commit

Permalink
Merge branch 'main' into users/ramukaritik/treeview-for-copresence
Browse files Browse the repository at this point in the history
  • Loading branch information
ritikramuka authored Oct 20, 2023
2 parents b38c232 + 058f382 commit e57e131
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Installing this extension will also make the latest Power Platform CLI (aka pac)

## Release Notes

2.0.12:
- pac CLI 1.28.2 (September refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
2.0.13:
- pac CLI 1.28.3 (September refresh, see release notes on [nuget.org](https://www.nuget.org/packages/Microsoft.PowerApps.CLI/))
- Web Extension updates:
- Now Supporting image edit capability using Vscode extensions for Image editing (supported file extensions are png, jpg, webp, bmp, tga, ico, dib, jif, jpe, tpic, jpe, jpeg) #733
- File explorer now supports Power Pages actions for "Going back to Power pages Studio" and "Preview" of site's runtime instance. #697
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ async function snapshot() {
}

const feedName = 'CAP_ISVExp_Tools_Stable';
const cliVersion = '1.28.2';
const cliVersion = '1.28.3';

const recompile = gulp.series(
clean,
Expand Down
6 changes: 3 additions & 3 deletions src/web/client/webViews/powerPagesNavigationProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ export class PowerPagesNode extends vscode.TreeItem {

getIconPath(svgFileName: string) {
return {
light: vscode.Uri.joinPath(WebExtensionContext.extensionUri, '..', '..', 'src', 'web', 'client', 'assets', svgFileName),
dark: vscode.Uri.joinPath(WebExtensionContext.extensionUri, '..', '..', 'src', 'web', 'client', 'assets', svgFileName)
light: vscode.Uri.joinPath(WebExtensionContext.extensionUri, 'src', 'web', 'client', 'assets', svgFileName),
dark: vscode.Uri.joinPath(WebExtensionContext.extensionUri, 'src', 'web', 'client', 'assets', svgFileName)
};
}
}
Expand All @@ -220,4 +220,4 @@ export class UserNode extends vscode.TreeItem {
}

contextValue = "userNode"
}
}

0 comments on commit e57e131

Please sign in to comment.