Skip to content

Commit

Permalink
Serious Bug fixed. v1.2.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed May 17, 2018
1 parent 5dcfe40 commit 8460ef6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog
| Version | Date | Changelog |
|---|---|---|
| 1.2.0|17.05.18| — Serious Bug Fixed |
| 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 |
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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.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",
Expand Down
2 changes: 1 addition & 1 deletion popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div></div>
Web Extension

<p>"Makes your existing server live"</p>
<p>"Makes your existing server live."</p>
</div>
<div class="content">
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion reload.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8460ef6

Please sign in to comment.