Skip to content

Commit

Permalink
v1.1.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed May 17, 2018
1 parent b0b723e commit 1d8e4f7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog
| Version | Date | Changelog |
|---|---|---|
| 1.1.0|17.05.18| &mdash; This extension was broken with Live Server v4.0.0 update. [[#127](https://github.com/ritwickdey/vscode-live-server/issues/127)] <br> &mdash; Popup window UI updated <br> &mdash; Docs updated. |
| 1.0.0 | 26.10.17 | &mdash; ***[New Feature]*** No need to setup proxy. There is now a way to setup - that is pretty easy & straight-forward. <br><br>&mdash; ***[Enhancement]*** Pop-up window is redesigned. <br><br>&mdash; ***[Bug Fixes]*** Small bug fixes related to the turn on/off switch. <br><br>&mdash; No BETA. General Release. |
0.0.1 | 22.10.17 | Initial Release under BETA |
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/)

Expand All @@ -21,6 +23,12 @@ Neither the browser add-on nor the VS Code extension will host a server for: `PH
<br><hr>

### 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.

Expand All @@ -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.


<br><hr>

Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -36,4 +36,4 @@
"http://*/*",
"https://*/*"
]
}
}
5 changes: 3 additions & 2 deletions popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="row">
<div>
<input type="checkbox" id="noProxyCheckBox">
<label for="noProxyCheckBox">I don't want proxy setup</label>
<label for="noProxyCheckBox">I don't want proxy setup (recommended)</label>
</div>
</div>

Expand All @@ -57,7 +57,8 @@
</div>
<div class="footer">
<a target="_blank" href="https://github.com/ritwickdey/live-server-web-extension">Need Help?</a>
<p>NOTE: You need two server. Live Server will give `live` power of your existing server (May be Wamp, XAMPP or IIS or Node.js)</p>
<p>NOTE: You need two server. Live Server will give `live` power of your existing server (May be Wamp, XAMPP or IIS
or Node.js)</p>
</div>
<script src="./popup.js"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 1d8e4f7

Please sign in to comment.