Skip to content

Commit

Permalink
announcement
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Jan 24, 2018
1 parent ab14885 commit dbb4856
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "LiveServer",
"displayName": "Live Server",
"description": "Launch a development local Server with live reload feature for static & dynamic pages",
"version": "3.0.2",
"version": "3.1.0",
"publisher": "ritwickdey",
"author": {
"name": "Ritwick Dey",
Expand Down Expand Up @@ -284,7 +284,7 @@
"opn": "^5.1.0"
},
"announcement": {
"onVersion": "3.0.1",
"message": "Live Server Web Extension (for dynamic pages) is now available for chrome."
"onVersion": "3.1.0",
"message": "LiveServer Update: CORS enabled | Add Delay before reloading | Option for full reload instead of css inject"
}
}
2 changes: 1 addition & 1 deletion src/announcement/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function checkNewAnnouncement(memento: Memento) {
const showDetails = 'Show Details';
const choice = await window.showInformationMessage(announment.message, showDetails);
if (choice === showDetails) {
const url = announment.url || 'https://github.com/ritwickdey/vscode-live-server#live-server';
const url = announment.url || 'https://github.com/ritwickdey/vscode-live-server';
opn(url);
}

Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { checkNewAnnouncement } from './announcement/index';
export function activate(context: ExtensionContext) {
const appModel = new AppModel();

// checkNewAnnouncement(context.globalState);
checkNewAnnouncement(context.globalState);

context.subscriptions.push(commands
.registerCommand('extension.liveServer.goOnline', (fileUri) => {
Expand Down

0 comments on commit dbb4856

Please sign in to comment.