From fde818ddc617836e48963319c497813578f52404 Mon Sep 17 00:00:00 2001 From: Kushagra Gour <chinchang457@gmail.com> Date: Sun, 12 Feb 2017 16:43:24 +0530 Subject: [PATCH] add changelog --- src/index.html | 13 ++++++++++--- src/script.js | 4 +--- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/src/index.html b/src/index.html index d3812b2..f34d482 100644 --- a/src/index.html +++ b/src/index.html @@ -200,7 +200,7 @@ <div class="modal" id="helpModal"> <div class="modal__content"> - <h1>Web Maker<small style="font-size:14px;"> v2.3.0</small></h1> + <h1>Web Maker<small style="font-size:14px;"> v2.3.1</small></h1> <div> <p>Made by <a href="https://twitter.com/chinchang457" target="_blank">Kushagra Gour</a></p> <p>Tweet out your feature requests, comments & suggestions to <a target="_blank" href="https://twitter.com/webmakerApp">@webmakerApp</a>.</p> @@ -294,6 +294,15 @@ <div class="modal" id="notificationsModal"> <div class="modal__content"> <h1>Whats new?</h1> + <div class="notification"> + <span class="notification__version">2.3.1</span> + <ul> + <li><strong>Bugfix</strong> - Splitting of code and preview panes is remembered by the editor.</li> + <li>Title of the creation is used for the file name when saving as HTML.</li> + <li><a href="https://github.com/chinchang/web-maker/issues" target="_blank">Suggest a feature.</a></li> + <li>Thank you for being a part of this awesome 4000+ developers community. If you find Web Maker helpful, <a href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" target="_blank" class="btn">Please rate Web Maker <span class="star"></span></a> & <a href="http://twitter.com/share?url=https://kushagragour.in/lab/web-maker/&text=Web Maker - Convert your Chrome tabs into a blazing fast offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,editor" target="_blank" target="_blank" class="btn">share it</a>.</li> + </ul> + </div> <div class="notification"> <span class="notification__version">2.3.0</span> <ul> @@ -304,8 +313,6 @@ <li>Highlight active line in code panes.</li> <li><strong>Bugfix</strong> - Fix in generated title of new creation.</li> <li><strong>Bugfix</strong> - HTML autocompletion is manual triggered now with Ctrl+Space.</li> - <li><a href="https://github.com/chinchang/web-maker/issues" target="_blank">Suggest a feature.</a></li> - <li>Thank you for being a part of this awesome 4000+ developers community. If you find Web Maker helpful, <a href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" target="_blank" class="btn">Please rate Web Maker <span class="star"></span></a> & <a href="http://twitter.com/share?url=https://kushagragour.in/lab/web-maker/&text=Web Maker - Convert your Chrome tabs into a blazing fast offline web playground! via @webmakerApp&related=webmakerApp&hashtags=web,editor" target="_blank" target="_blank" class="btn">share it</a>.</li> </ul> </div> diff --git a/src/script.js b/src/script.js index fc63359..8b3cede 100644 --- a/src/script.js +++ b/src/script.js @@ -10,7 +10,7 @@ TextareaAutoComplete */ /* eslint-enable no-extra-semi */ var scope = scope || {}; - var version = '2.3.0'; + var version = '2.3.1'; if (window.DEBUG) { window.scope = scope; @@ -290,7 +290,6 @@ TextareaAutoComplete */ currentItem.sizes = getCodePaneSizes(); currentItem.mainSizes = getMainPaneSizes(); - console.log(currentItem.mainSizes) utils.log('saving key', key || currentItem.id, currentItem) saveSetting(key || currentItem.id, currentItem, function () { @@ -1275,7 +1274,6 @@ TextareaAutoComplete */ }); }); } - // console.utils.log(result, hasSeenNotifications, version); if (!result.lastSeenVersion || utils.semverCompare(result.lastSeenVersion, version) === -1) { notificationsBtn.classList.add('has-new'); hasSeenNotifications = false;