diff --git a/CHANGELOG.md b/CHANGELOG.md index a00b304..182d6a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog | Version | Date | Changelog | |---|---|---| +| 1.2.0|17.05.18| — Serious Bug Fixed | | 1.1.0|17.05.18| — This extension was broken with Live Server v4.0.0 update. [[#127](https://github.com/ritwickdey/vscode-live-server/issues/127)]
— Popup window UI updated
— Docs updated. | | 1.0.0 | 26.10.17 | — ***[New Feature]*** No need to setup proxy. There is now a way to setup - that is pretty easy & straight-forward.

— ***[Enhancement]*** Pop-up window is redesigned.

— ***[Bug Fixes]*** Small bug fixes related to the turn on/off switch.

— No BETA. General Release. | 0.0.1 | 22.10.17 | Initial Release under BETA | diff --git a/README.md b/README.md index 3e859af..33315f0 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,9 @@ Neither the browser add-on nor the VS Code extension will host a server for: `PH ### News +* #### Verision 1.2.0 (26.10.17) + * Serious Bug Fixed + * #### Verision 1.1.0 (26.10.17) * ***[Bug Fixed]*** This extension was broken with Live Server v4.0.0 update. [[#127](https://github.com/ritwickdey/vscode-live-server/issues/127)] * Popup window UI updated diff --git a/manifest.json b/manifest.json index 48275b6..c9e7829 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Live Server Web Extension", - "version": "1.1.0", + "version": "1.2.0", "description": " Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages", "icons": { "96": "./img/icon.png", diff --git a/popup/popup.html b/popup/popup.html index d5fe4d5..b9f87c4 100644 --- a/popup/popup.html +++ b/popup/popup.html @@ -15,7 +15,7 @@
Web Extension -

"Makes your existing server live"

+

"Makes your existing server live."

diff --git a/reload.js b/reload.js index b677a9c..842e8ac 100644 --- a/reload.js +++ b/reload.js @@ -8,7 +8,7 @@ let isActive = false; function init(data) { - if (data.proxySetup === true) { + if (!data.proxySetup) { //Correction if (data.liveServerUrl.indexOf('http') !== 0) data.liveServerUrl = 'http' + data.liveServerUrl;