mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-26 08:11:17 +02:00
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "web-maker",
|
"name": "web-maker",
|
||||||
"version": "4.0.3",
|
"version": "4.2.0",
|
||||||
"description": "A blazing fast & offline web playground",
|
"description": "A blazing fast & offline web playground",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "npm run -s dev && gulp start-preview-server",
|
"start": "npm run -s dev && gulp start-preview-server",
|
||||||
|
@@ -36,7 +36,7 @@ function Notification({ version, isLatest, ...props }) {
|
|||||||
<p>
|
<p>
|
||||||
<strong>🎉 New Product!</strong> If you like Web Maker, you'll
|
<strong>🎉 New Product!</strong> If you like Web Maker, you'll
|
||||||
probably also like a new product I launched. It's the first ever
|
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">
|
<a href="https://cssbattle.dev" target="_blank">
|
||||||
CSSBattle
|
CSSBattle
|
||||||
</a>
|
</a>
|
||||||
@@ -114,8 +114,14 @@ export function Notifications(props) {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h1>Whats new?</h1>
|
<h1>Whats new?</h1>
|
||||||
<Notification version="4.0.3" {...props} isLatest={true}>
|
<Notification version="4.2.0" {...props} isLatest={true}>
|
||||||
<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 type="bug">
|
||||||
Broken syntax highlighting in non-default Preprocessors.
|
Broken syntax highlighting in non-default Preprocessors.
|
||||||
</NotificationItem>
|
</NotificationItem>
|
||||||
</Notification>
|
</Notification>
|
||||||
@@ -517,7 +523,7 @@ export function Notifications(props) {
|
|||||||
<li>
|
<li>
|
||||||
Web Maker is no more just a Chrome extension, it is also available
|
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
|
as web app that runs offline just like the extension! Checkout it
|
||||||
out ->
|
out ->
|
||||||
<a
|
<a
|
||||||
href="https://webmaker.app/app/"
|
href="https://webmaker.app/app/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
@@ -77,7 +77,7 @@ const LocalStorageKeys = {
|
|||||||
ASKED_TO_IMPORT_CREATIONS: 'askedToImportCreations'
|
ASKED_TO_IMPORT_CREATIONS: 'askedToImportCreations'
|
||||||
};
|
};
|
||||||
const UNSAVED_WARNING_COUNT = 15;
|
const UNSAVED_WARNING_COUNT = 15;
|
||||||
const version = '4.0.3';
|
const version = '4.2.0';
|
||||||
|
|
||||||
// Read forced settings as query parameters
|
// Read forced settings as query parameters
|
||||||
window.forcedSettings = {};
|
window.forcedSettings = {};
|
||||||
@@ -1779,7 +1779,6 @@ export default class App extends Component {
|
|||||||
|
|
||||||
<CommandPalette
|
<CommandPalette
|
||||||
show={this.state.isCommandPaletteOpen}
|
show={this.state.isCommandPaletteOpen}
|
||||||
closeHandler={() => this.setState({ isCommandPaletteOpen: false })}
|
|
||||||
files={linearizeFiles(this.state.currentItem.files || [])}
|
files={linearizeFiles(this.state.currentItem.files || [])}
|
||||||
isCommandMode={this.state.isCommandPaletteInCommandMode}
|
isCommandMode={this.state.isCommandPaletteInCommandMode}
|
||||||
closeHandler={() => this.setState({ isCommandPaletteOpen: false })}
|
closeHandler={() => this.setState({ isCommandPaletteOpen: false })}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Web Maker",
|
"name": "Web Maker",
|
||||||
"version": "4.0.3",
|
"version": "4.2.0",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "Blazing fast & offline playground for your web experiments",
|
"description": "Blazing fast & offline playground for your web experiments",
|
||||||
"homepage_url": "https://webmaker.app",
|
"homepage_url": "https://webmaker.app",
|
||||||
|
Reference in New Issue
Block a user