Skip to content

Commit 1d8e4f7

Browse files
committed
v1.1.0 update
1 parent b0b723e commit 1d8e4f7

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog
22
| Version | Date | Changelog |
33
|---|---|---|
4+
| 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. |
45
| 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. |
56
0.0.1 | 22.10.17 | Initial Release under BETA |

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Live Server - Web Extension
2+
Makes your existing server live
3+
24
[![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)
35
[![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/)
46

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

2325
### News
26+
27+
* #### Verision 1.1.0 (26.10.17)
28+
* ***[Bug Fixed]*** This extension was broken with Live Server v4.0.0 update. [[#127](https://github.com/ritwickdey/vscode-live-server/issues/127)]
29+
* Popup window UI updated
30+
* Docs updated.
31+
2432
* #### Verision 1.0.0 (26.10.17)
2533
* ***[New Feature]*** No need to setup proxy. There is now a way to setup - that is pretty easy & straight-forward.
2634

@@ -29,8 +37,7 @@ Neither the browser add-on nor the VS Code extension will host a server for: `PH
2937
* ***[Bug Fixes]*** Small bug fixes related to the turn on/off switch.
3038

3139
* No BETA. General Release.
32-
* #### Version 0.0.1 (22.10.17)
33-
* Initial Release under BETA.
40+
3441

3542
<br><hr>
3643

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Live Server Web Extension",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"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.",
66
"icons": {
77
"96": "./img/icon.png",
@@ -36,4 +36,4 @@
3636
"http://*/*",
3737
"https://*/*"
3838
]
39-
}
39+
}

popup/popup.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<div class="row">
3232
<div>
3333
<input type="checkbox" id="noProxyCheckBox">
34-
<label for="noProxyCheckBox">I don't want proxy setup</label>
34+
<label for="noProxyCheckBox">I don't want proxy setup (recommended)</label>
3535
</div>
3636
</div>
3737

@@ -57,7 +57,8 @@
5757
</div>
5858
<div class="footer">
5959
<a target="_blank" href="https://github.com/ritwickdey/live-server-web-extension">Need Help?</a>
60-
<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>
60+
<p>NOTE: You need two server. Live Server will give `live` power of your existing server (May be Wamp, XAMPP or IIS
61+
or Node.js)</p>
6162
</div>
6263
<script src="./popup.js"></script>
6364
</body>

popup/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
}, (data) => {
4242
console.log('popupwidnow')
4343
liveReloadCheck.checked = data.isEnable || false;
44-
noProxyCheckBox.checked = data.proxySetup || false;
44+
noProxyCheckBox.checked = !data.proxySetup;
4545
actualServerAddress.value = data.actualUrl || '';
4646
liveServerAddress.value = data.liveServerUrl || '';
4747
serverSetupDiv.className = noProxyCheckBox.checked ? 'show' : 'hide';

0 commit comments

Comments
 (0)