diff --git a/CHANGELOG.md b/CHANGELOG.md index b39f584..a00b304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog | Version | Date | Changelog | |---|---|---| +| 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 99052e2..559d440 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # Live Server - Web Extension +Makes your existing server live + [![Chrome Web Store](https://img.shields.io/chrome-web-store/v/fiegdmejfepffgpnejdinekhfieaogmj.svg?style=for-the-badge)](https://chrome.google.com/webstore/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj/)[![Chrome Web Store](https://img.shields.io/chrome-web-store/users/fiegdmejfepffgpnejdinekhfieaogmj.svg?style=for-the-badge)](https://chrome.google.com/webstore/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj/)[![Chrome Web Store](https://img.shields.io/chrome-web-store/rating/fiegdmejfepffgpnejdinekhfieaogmj.svg?style=for-the-badge)](https://chrome.google.com/webstore/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj/reviews) [![Mozilla Add-on](https://img.shields.io/amo/v/live-server-web-extension.svg?style=for-the-badge)](https://addons.mozilla.org/en-US/firefox/addon/live-server-web-extension/)[![Mozilla Add-on](https://img.shields.io/amo/users/live-server-web-extension.svg?style=for-the-badge)](https://addons.mozilla.org/en-US/firefox/addon/live-server-web-extension/)[![Mozilla Add-on](https://img.shields.io/amo/rating/live-server-web-extension.svg?style=for-the-badge)](https://addons.mozilla.org/en-US/firefox/addon/live-server-web-extension/reviews/) @@ -21,6 +23,12 @@ Neither the browser add-on nor the VS Code extension will host a server for: `PH

### News + +* #### 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 + * Docs updated. + * #### Verision 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. @@ -29,8 +37,7 @@ Neither the browser add-on nor the VS Code extension will host a server for: `PH * ***[Bug Fixes]*** Small bug fixes related to the turn on/off switch. * No BETA. General Release. -* #### Version 0.0.1 (22.10.17) - * Initial Release under BETA. +

diff --git a/manifest.json b/manifest.json index e15a770..33f6150 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Live Server Web Extension", - "version": "1.0.0", + "version": "1.1.0", "description": "This browser add-on is an extension for a developer tool in VS Code editor (Live Server). With this add-on installed, along with the VS Code extension, it gives you a functionality to automatically update your website on save; for other files than just .htm and .html.", "icons": { "96": "./img/icon.png", @@ -36,4 +36,4 @@ "http://*/*", "https://*/*" ] -} +} \ No newline at end of file diff --git a/popup/popup.html b/popup/popup.html index d922bca..d5fe4d5 100644 --- a/popup/popup.html +++ b/popup/popup.html @@ -31,7 +31,7 @@
- +
@@ -57,7 +57,8 @@ diff --git a/popup/popup.js b/popup/popup.js index 580782a..ea0b804 100644 --- a/popup/popup.js +++ b/popup/popup.js @@ -41,7 +41,7 @@ }, (data) => { console.log('popupwidnow') liveReloadCheck.checked = data.isEnable || false; - noProxyCheckBox.checked = data.proxySetup || false; + noProxyCheckBox.checked = !data.proxySetup; actualServerAddress.value = data.actualUrl || ''; liveServerAddress.value = data.liveServerUrl || ''; serverSetupDiv.className = noProxyCheckBox.checked ? 'show' : 'hide';