diff --git a/README.md b/README.md index d80761c..539e69f 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ or - Works offline - Quick creation & good-old files mode - Inbuilt Console +- Save and load your creations - Auto-save feature - Code auto-completion - Easy addition of popular JS & CSS libraries @@ -47,4 +48,4 @@ Web Maker stays stable as rock with every release, thanks to the sponsored testi MIT Licensed -Copyright (c) 2018 Kushagra Gour, [webmakerapp.com](https://webmakerapp.com) +Copyright (c) 2016-2019 Kushagra Gour, [webmakerapp.com](https://webmakerapp.com) diff --git a/index.html b/index.html index afd0743..2350f34 100644 --- a/index.html +++ b/index.html @@ -1069,6 +1069,18 @@ } + diff --git a/package.json b/package.json index ae8089d..0db70e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web-maker", - "version": "3.6.1", + "version": "3.6.2", "description": "A blazing fast & offline web playground", "scripts": { "start": "npm run -s dev && gulp start-preview-server", diff --git a/src/components/Notifications.jsx b/src/components/Notifications.jsx index f4a5586..c3b37c5 100644 --- a/src/components/Notifications.jsx +++ b/src/components/Notifications.jsx @@ -106,7 +106,14 @@ export function Notifications(props) {

Whats new?

- + + + "404 Page not found" showing up in preview window when in detached + mode. + + + + Failing to import local creations when logging in. diff --git a/src/components/app.jsx b/src/components/app.jsx index 858a03b..1ed62c3 100644 --- a/src/components/app.jsx +++ b/src/components/app.jsx @@ -77,7 +77,7 @@ const LocalStorageKeys = { ASKED_TO_IMPORT_CREATIONS: 'askedToImportCreations' }; const UNSAVED_WARNING_COUNT = 15; -const version = '3.6.1'; +const version = '3.6.2'; export default class App extends Component { constructor() { diff --git a/src/detached-window.js b/src/detached-window.js index a67a776..72e035d 100644 --- a/src/detached-window.js +++ b/src/detached-window.js @@ -1,6 +1,6 @@ window.addEventListener('message', e => { // Recieving from app window - if (e.data && e.data.contents) { + if (e.data && e.data.contents && e.data.contents.match(/ { @@ -9,7 +9,7 @@ window.addEventListener('message', e => { frame.contentDocument.close(); }, 10); } - if (e.data && e.data.url) { + if (e.data && e.data.url && e.data.match(/preview\.html/)) { document.querySelector('iframe').src = e.data.url; } diff --git a/src/manifest.json b/src/manifest.json index d2da05d..8d43379 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,6 +1,6 @@ { "name": "Web Maker", - "version": "3.6.1", + "version": "3.6.2", "manifest_version": 2, "description": "Blazing fast & offline playground for your web experiments", "homepage_url": "https://webmakerapp.com", diff --git a/src/options.html b/src/options.html index d23c34d..8e3358c 100644 --- a/src/options.html +++ b/src/options.html @@ -37,7 +37,7 @@

Settings - v3.6.1 + v3.6.2