Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed May 20, 2021
1 parent d8be22b commit b6dd4a8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 1.4.1

## Bug Fixes

- Show custom message if no nodes left after filters (#303, thanks @marvinhagemeister)
- Show `Map` and `Set` objects properly in sidebar (#302, thanks @marvinhagemeister)

### Maintenance

- Fix preact duplicated across chunks in vite test setup (#301, thanks @marvinhagemeister)

## 1.4.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "preact-devtools",
"version": "1.3.0",
"version": "1.4.1",
"description": "Preact Devtools Extension",
"main": "dist/preact-devtools.js",
"module": "dist/preact-devtools.module.js",
Expand Down
2 changes: 1 addition & 1 deletion src/shells/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Chrome",
"version": "1.4.0",
"version": "1.4.1",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down
2 changes: 1 addition & 1 deletion src/shells/edge/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Microsoft Edge",
"version": "1.4.0",
"version": "1.4.1",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down
2 changes: 1 addition & 1 deletion src/shells/firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Firefox",
"version": "1.4.0",
"version": "1.4.1",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down

0 comments on commit b6dd4a8

Please sign in to comment.