Skip to content

Commit 8460ef6

Browse files
committed
Serious Bug fixed. v1.2.0 update
1 parent 5dcfe40 commit 8460ef6

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

CHANGELOG.md

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

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ Neither the browser add-on nor the VS Code extension will host a server for: `PH
3232

3333
### News
3434

35+
* #### Verision 1.2.0 (26.10.17)
36+
* Serious Bug Fixed
37+
3538
* #### Verision 1.1.0 (26.10.17)
3639
* ***[Bug Fixed]*** This extension was broken with Live Server v4.0.0 update. [[#127](https://github.com/ritwickdey/vscode-live-server/issues/127)]
3740
* Popup window UI updated

manifest.json

Lines changed: 1 addition & 1 deletion
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.1.0",
4+
"version": "1.2.0",
55
"description": " Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages",
66
"icons": {
77
"96": "./img/icon.png",

popup/popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<div></div>
1616
Web Extension
1717

18-
<p>"Makes your existing server live"</p>
18+
<p>"Makes your existing server live."</p>
1919
</div>
2020
<div class="content">
2121
<div class="row">

reload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
let isActive = false;
99

1010
function init(data) {
11-
if (data.proxySetup === true) {
11+
if (!data.proxySetup) {
1212
//Correction
1313
if (data.liveServerUrl.indexOf('http') !== 0)
1414
data.liveServerUrl = 'http' + data.liveServerUrl;

0 commit comments

Comments
 (0)