1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-23 15:01:14 +02:00

add changelog n bump to 6.4.0

This commit is contained in:
Kushagra Gour
2024-07-07 13:34:03 +05:30
parent 01abd4849a
commit 9d58a19499
3 changed files with 17 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "web-maker", "name": "web-maker",
"version": "6.3.7", "version": "6.4.0",
"description": "A blazing fast & offline web playground", "description": "A blazing fast & offline web playground",
"scripts": { "scripts": {
"start": "concurrently --kill-others \"gulp start-preview-server\" \"npm run -s dev\"", "start": "concurrently --kill-others \"gulp start-preview-server\" \"npm run -s dev\"",

View File

@@ -107,7 +107,16 @@ export function Changelog(props) {
<div> <div>
<h1>Whats new?</h1> <h1>Whats new?</h1>
<Notification version="6.3.7" {...props} isLatest={true}> <Notification version="6.4.0" {...props} isLatest={true}>
<li>
<strong>Assets inlining in "Save as HTML"</strong>: You now have an
option to inline all the external assets (images, audios,videos) in
the HTML file when you save the creation as HTML. This is useful when
you want to share the HTML file with someone and want it to work
offline. Currently supports assets defined in HTML file only.
</li>
</Notification>
<Notification version="6.3.7" {...props}>
<NotificationItem type="bug"> <NotificationItem type="bug">
Setting changes not saving to database is fixed. Setting changes not saving to database is fixed.
</NotificationItem> </NotificationItem>
@@ -120,13 +129,13 @@ export function Changelog(props) {
</NotificationItem> </NotificationItem>
</Notification> </Notification>
<Notification version="6.3.4" {...props} isLatest={true}> <Notification version="6.3.4" {...props}>
<NotificationItem type="bug"> <NotificationItem type="bug">
Public creations are now working. Public creations are now working.
</NotificationItem> </NotificationItem>
</Notification> </Notification>
<Notification version="6.3.0" {...props} isLatest={true}> <Notification version="6.3.0" {...props}>
<NotificationItem type="bug"> <NotificationItem type="bug">
Extension Only: JavaScript is NOW WORKING, again! 🎉 The extension is Extension Only: JavaScript is NOW WORKING, again! 🎉 The extension is
now migrated to MV3 which means its much more secure, and of course, now migrated to MV3 which means its much more secure, and of course,
@@ -138,7 +147,7 @@ export function Changelog(props) {
</NotificationItem> </NotificationItem>
</Notification> </Notification>
<Notification version="6.2.0" {...props} isLatest={true}> <Notification version="6.2.0" {...props}>
<li>Preact template updated to latest version with hooks.</li> <li>Preact template updated to latest version with hooks.</li>
<li>Mail option added in help modal.</li> <li>Mail option added in help modal.</li>
<li> <li>
@@ -201,7 +210,7 @@ export function Changelog(props) {
Fork button is now available in the header too Fork button is now available in the header too
</NotificationItem> </NotificationItem>
</Notification> </Notification>
<Notification version="5.3.0" {...props} isLatest={true}> <Notification version="5.3.0" {...props}>
<li> <li>
<strong>Tailwind CSS templates</strong>: Tailwind CSS template is now <strong>Tailwind CSS templates</strong>: Tailwind CSS template is now
available! If you are on the Chrome extension, use the Tailwind CSS 2 available! If you are on the Chrome extension, use the Tailwind CSS 2
@@ -272,7 +281,7 @@ export function Changelog(props) {
for the Spanish translation. It was long due! for the Spanish translation. It was long due!
</NotificationItem> </NotificationItem>
</Notification> </Notification>
<Notification version="4.2.0" {...props} isLatest={true}> <Notification version="4.2.0" {...props}>
<li> <li>
Tailwind CSS now added to popular libraries list. Thanks Tailwind CSS now added to popular libraries list. Thanks
<a href="https://github.com/LoganDark"> @LoganDark</a> <a href="https://github.com/LoganDark"> @LoganDark</a>

View File

@@ -84,7 +84,7 @@ if (module.hot) {
} }
const UNSAVED_WARNING_COUNT = 15; const UNSAVED_WARNING_COUNT = 15;
const version = '6.3.7'; const version = '6.4.0';
// Read forced settings as query parameters // Read forced settings as query parameters
window.forcedSettings = {}; window.forcedSettings = {};