Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Update version to 0.1.14 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
joechung-msft authored Mar 28, 2019
1 parent 92fff0a commit d324747
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to the "vscode-logicapps" extension will be documented in th

## [Unreleased]

## [0.1.13] - 2019-03-28
### Changed
- Update designer version to 1.40325.1.3

## [0.1.13] - 2019-03-21
### Changed
- Update designer version to 1.40318.1.2
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-logicapps",
"displayName": "Azure Logic Apps",
"description": "%extension.description%",
"version": "0.1.13",
"version": "0.1.14",
"publisher": "ms-azuretools",
"icon": "resources/azLogicApps.png",
"aiKey": "b6385546-3be0-489c-a298-baccd6c152fb",
Expand Down Expand Up @@ -642,8 +642,8 @@
"@types/node": "^7.0.67",
"@types/request-promise-native": "^1.0.15",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"vsce": "^1.58.0",
"typescript": "^3.3.4000",
"vsce": "^1.59.0",
"vscode": "^1.1.29"
},
"dependencies": {
Expand Down
2 changes: 0 additions & 2 deletions package.nls.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"azIntegrationAccounts.delete": "Delete",
"azIntegrationAccounts.deleteIntegrationAccountPrompt": "Are you sure that you want to delete the whole integration account? This can not be undone.",
"azIntegrationAccounts.deleting": "Deleting",
"azIntegrationAccounts.loadMore": "Load More...",
"azIntegrationAccounts.new": "New",
"azIntegrationAccounts.openInEditor": "Open in Editor",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

export class Constants {
public static DesignerVersion = "1.40318.1.23118.190319-1500";
public static DesignerVersion = "1.40325.1.35180309.190327-1603";

public static SubscriptionContextValue = "azureextensionui.azureSubscription";

Expand Down
3 changes: 2 additions & 1 deletion src/utils/logic-app/designerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
const $locale = "en";
const baseUrl = "https://ema.hosting.portal.azure.net/ema/Content/${version}/Scripts/EMAExtension/Client/logicappdesigner/";
global.publicPath = baseUrl;
function getMonacoLocale(locale) {
// Mapping of the languages Monaco editor supports. Default to english for non-supported languages.
Expand Down Expand Up @@ -165,7 +166,7 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
"@uifabric/styling/lib": "@uifabric/styling",
"@uifabric/utilities/lib": "@uifabric/utilities",
"cds-control-expression": "cds-control-expression",
"core/main": "core.all.min",
"core/main": "core.designer.min",
"draft-js": "draft.min",
"draft-js-export-html": "draft-js-export-html.min",
"draft-js-import-html": "draft-js-import-html.min",
Expand Down
3 changes: 2 additions & 1 deletion src/utils/logic-app/monitoringViewUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export function getWebviewContent({ authorization, location, resourceGroupName,
const $locale = "en";
const baseUrl = "https://ema.hosting.portal.azure.net/ema/Content/${version}/Scripts/EMAExtension/Client/logicappdesigner/";
global.publicPath = baseUrl;
function getMonacoLocale(locale) {
// Mapping of the languages Monaco editor supports. Default to english for non-supported languages.
Expand Down Expand Up @@ -155,7 +156,7 @@ export function getWebviewContent({ authorization, location, resourceGroupName,
"@uifabric/styling/lib": "@uifabric/styling",
"@uifabric/utilities/lib": "@uifabric/utilities",
"cds-control-expression": "cds-control-expression",
"core/main": "core.all.min",
"core/main": "core.monitor.min",
"draft-js": "draft.min",
"draft-js-export-html": "draft-js-export-html.min",
"draft-js-import-html": "draft-js-import-html.min",
Expand Down

0 comments on commit d324747

Please sign in to comment.