Skip to content

Commit 726ca46

Browse files
Release 0.0.6
1 parent e586948 commit 726ca46

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.0.6
4+
5+
- Minor UI polishing (#50, thanks @marvinhagemeister)
6+
- Fix jumpy page on highlighting due to scrollbar (#49, thanks @marvinhagemeister)
7+
- Don't expand complex objects in sidebar by default (#48, thanks @marvinhagemeister)
8+
- Fix stale useObserver value (#47, thanks @marvinhagemeister)
9+
- Fix checkbox value converted to a string (#46, thanks @marvinhagemeister)
10+
- Multi renderer fixes (#45, thanks @marvinhagemeister)
11+
- Minor improvements (#29, thanks @sventschui)
12+
- Allow multiple instances of devtools at the same time (#44, thanks @marvinhagemeister)
13+
- Add usage guide to README.md (#43, thanks @sean0x42)
14+
- Fix Chrome extension link in README (#41, thanks @yu-kgr)
15+
316
## 0.0.5
417

518
- Make sure that all injected code is wrapped in an `iife`, thanks to @ForsakenHarmony for spotting this :tada:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "preact-devtools",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Preact Devtools Extension",
55
"main": "dist/preact-devtools.js",
66
"module": "dist/preact-devtools.module.js",

src/shells/chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Chrome",
5-
"version": "0.0.5",
5+
"version": "0.0.6",
66
"devtools_page": "devtools.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

src/shells/firefox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Chrome",
5-
"version": "0.0.5",
5+
"version": "0.0.6",
66
"devtools_page": "devtools.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

0 commit comments

Comments
 (0)