mirror of
https://github.com/chinchang/web-maker.git
synced 2025-08-03 20:07:35 +02:00
add changelog
This commit is contained in:
@@ -200,7 +200,7 @@
|
|||||||
|
|
||||||
<div class="modal" id="helpModal">
|
<div class="modal" id="helpModal">
|
||||||
<div class="modal__content">
|
<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>
|
<div>
|
||||||
<p>Made by <a href="https://twitter.com/chinchang457" target="_blank">Kushagra Gour</a></p>
|
<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>
|
<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" id="notificationsModal">
|
||||||
<div class="modal__content">
|
<div class="modal__content">
|
||||||
<h1>Whats new?</h1>
|
<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">
|
<div class="notification">
|
||||||
<span class="notification__version">2.3.0</span>
|
<span class="notification__version">2.3.0</span>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -304,8 +313,6 @@
|
|||||||
<li>Highlight active line in code panes.</li>
|
<li>Highlight active line in code panes.</li>
|
||||||
<li><strong>Bugfix</strong> - Fix in generated title of new creation.</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><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>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@@ -10,7 +10,7 @@ TextareaAutoComplete */
|
|||||||
|
|
||||||
/* eslint-enable no-extra-semi */
|
/* eslint-enable no-extra-semi */
|
||||||
var scope = scope || {};
|
var scope = scope || {};
|
||||||
var version = '2.3.0';
|
var version = '2.3.1';
|
||||||
|
|
||||||
if (window.DEBUG) {
|
if (window.DEBUG) {
|
||||||
window.scope = scope;
|
window.scope = scope;
|
||||||
@@ -290,7 +290,6 @@ TextareaAutoComplete */
|
|||||||
|
|
||||||
currentItem.sizes = getCodePaneSizes();
|
currentItem.sizes = getCodePaneSizes();
|
||||||
currentItem.mainSizes = getMainPaneSizes();
|
currentItem.mainSizes = getMainPaneSizes();
|
||||||
console.log(currentItem.mainSizes)
|
|
||||||
|
|
||||||
utils.log('saving key', key || currentItem.id, currentItem)
|
utils.log('saving key', key || currentItem.id, currentItem)
|
||||||
saveSetting(key || currentItem.id, currentItem, function () {
|
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) {
|
if (!result.lastSeenVersion || utils.semverCompare(result.lastSeenVersion, version) === -1) {
|
||||||
notificationsBtn.classList.add('has-new');
|
notificationsBtn.classList.add('has-new');
|
||||||
hasSeenNotifications = false;
|
hasSeenNotifications = false;
|
||||||
|
Reference in New Issue
Block a user