Skip to content

Commit 148ebe0

Browse files
Merge pull request #88 from preactjs/release-0.1.4
Release 0.1.4
2 parents 86e0c96 + 9a40032 commit 148ebe0

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

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

3+
## 0.1.4
4+
5+
- Only inject devtools CSS when Preact was detected (#87, thanks @marvinhagemeister)
6+
- Fix race condition when injecting devtools hook (#86, thanks @marvinhagemeister)
7+
38
## 0.1.3
49

510
- Fix infinite loop on circular references in props (#80, thanks @marvinhagemeister)

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.1.3",
3+
"version": "0.1.4",
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.1.3",
5+
"version": "0.1.4",
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/edge/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 Microsoft Edge",
5-
"version": "0.1.3",
5+
"version": "0.1.4",
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.1.3",
5+
"version": "0.1.4",
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)