1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-08-03 11:57:34 +02:00

bump to 3.3.2

This commit is contained in:
Kushagra Gour
2018-07-03 10:07:30 +05:30
parent 53faebfe28
commit 0c3fb42d9f
5 changed files with 50 additions and 15 deletions

View File

@@ -101,7 +101,26 @@ export function Notifications(props) {
<div>
<h1>Whats new?</h1>
<Notification version="3.3.0" isLatest={true} {...props}>
<Notification version="3.3.2" isLatest={true} {...props}>
<NotificationItem type="a11y">
Improper links are now buttons with proper focus indication and
screen-reader support. Thanks{' '}
<ThanksTo url="https://github.com/jpsc" name="@jpsc" />
</NotificationItem>
<NotificationItem type="bug">
Auto-complete suggestions are now working.
</NotificationItem>
<NotificationItem type="bug">
Fixes resetting pane sizes when opening any popup or console.
</NotificationItem>
<li>
<strong>[Dev] Tests</strong>: We now have one running automated test
:) More to come. Thanks{' '}
<ThanksTo url="https://github.com/DanielRuf" name="@DanielRuf" />
</li>
</Notification>
<Notification version="3.3.0" {...props}>
<li>
<strong>🔥 [Dev] Code Refactor</strong>: I rewrote Web Maker. Yes, Web
Maker's codebase has been ported from plain JS to{' '}

View File

@@ -49,7 +49,7 @@ const LocalStorageKeys = {
ASKED_TO_IMPORT_CREATIONS: 'askedToImportCreations'
};
const UNSAVED_WARNING_COUNT = 15;
const version = '3.3.0';
const version = '3.3.2';
export default class App extends Component {
constructor() {