From 2952ffab315ac16356ee1013fea8beb13f833864 Mon Sep 17 00:00:00 2001 From: RuntimeTerror10 <parthb.git@gmail.com> Date: Sun, 20 Feb 2022 15:45:46 +0530 Subject: [PATCH 1/3] add changelog --- src/components/Notifications.jsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/Notifications.jsx b/src/components/Notifications.jsx index d4708a5..948780e 100644 --- a/src/components/Notifications.jsx +++ b/src/components/Notifications.jsx @@ -36,7 +36,7 @@ function Notification({ version, isLatest, ...props }) { <p> <strong>🎉 New Product!</strong> If you like Web Maker, you'll probably also like a new product I launched. It's the first ever - code-golfing game for CSS ->{' '} + code-golfing game for CSS ->{' '} <a href="https://cssbattle.dev" target="_blank"> CSSBattle </a> @@ -114,7 +114,12 @@ export function Notifications(props) { return ( <div> <h1>Whats new?</h1> - <Notification version="4.0.3" {...props} isLatest={true}> + <Notification version="4.2.0" {...props} isLatest={true}> + <NotificationItem> + Tailwind CSS now added to popular libraries list. + </NotificationItem> + </Notification> + <Notification version="4.0.3" {...props}> <NotificationItem> Broken syntax highlighting in non-default Preprocessors. </NotificationItem> @@ -517,7 +522,7 @@ export function Notifications(props) { <li> Web Maker is no more just a Chrome extension, it is also available as web app that runs offline just like the extension! Checkout it - out -> + out -> <a href="https://webmaker.app/app/" target="_blank" From 736219297c81a3fea8c5d4222283a6cc2c4cf2de Mon Sep 17 00:00:00 2001 From: RuntimeTerror10 <parthb.git@gmail.com> Date: Sun, 20 Feb 2022 22:23:30 +0530 Subject: [PATCH 2/3] fix changelog message --- src/components/Notifications.jsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/Notifications.jsx b/src/components/Notifications.jsx index 948780e..9a97c8a 100644 --- a/src/components/Notifications.jsx +++ b/src/components/Notifications.jsx @@ -115,12 +115,13 @@ export function Notifications(props) { <div> <h1>Whats new?</h1> <Notification version="4.2.0" {...props} isLatest={true}> - <NotificationItem> - Tailwind CSS now added to popular libraries list. - </NotificationItem> + <li> + Tailwind CSS now added to popular libraries list. Thanks + <a href="https://github.com/LoganDark"> @LoganDark</a> + </li> </Notification> <Notification version="4.0.3" {...props}> - <NotificationItem> + <NotificationItem type="bug"> Broken syntax highlighting in non-default Preprocessors. </NotificationItem> </Notification> From f4e4565f3be1ef16001320bc10c62fad7281e90a Mon Sep 17 00:00:00 2001 From: RuntimeTerror10 <parthb.git@gmail.com> Date: Sun, 20 Feb 2022 16:01:43 +0530 Subject: [PATCH 3/3] bump to 4.2.0 --- package.json | 2 +- src/components/app.jsx | 3 +-- src/manifest.json | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 8364c4a..c2717c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web-maker", - "version": "4.0.3", + "version": "4.2.0", "description": "A blazing fast & offline web playground", "scripts": { "start": "npm run -s dev && gulp start-preview-server", diff --git a/src/components/app.jsx b/src/components/app.jsx index 3c1777a..f1d5077 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 = '4.0.3'; +const version = '4.2.0'; // Read forced settings as query parameters window.forcedSettings = {}; @@ -1779,7 +1779,6 @@ export default class App extends Component { <CommandPalette show={this.state.isCommandPaletteOpen} - closeHandler={() => this.setState({ isCommandPaletteOpen: false })} files={linearizeFiles(this.state.currentItem.files || [])} isCommandMode={this.state.isCommandPaletteInCommandMode} closeHandler={() => this.setState({ isCommandPaletteOpen: false })} diff --git a/src/manifest.json b/src/manifest.json index 458845f..03d0497 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,6 +1,6 @@ { "name": "Web Maker", - "version": "4.0.3", + "version": "4.2.0", "manifest_version": 2, "description": "Blazing fast & offline playground for your web experiments", "homepage_url": "https://webmaker.app",