Skip to content

Commit 0a8fcab

Browse files
Merge pull request #188 from preactjs/release-0.6.1
2 parents 37cd49f + be2b8bc commit 0a8fcab

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

CHANGELOG.md

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

3+
## 0.6.1
4+
5+
This release contains no new features and all time was spent on polishing the existing ones and a bit of housekeeping. Most notably the Profiler will be a lot faster on weak GPUs (like the one in my Dell XPS 13 laptop).
6+
7+
- Profiler refactor Part 1 (#187, thanks @marvinhagemeister)
8+
- Add support for custom persistent user profiles (#186, thanks @marvinhagemeister)
9+
- Fix report bug link not working (#185, thanks @marvinhagemeister)
10+
- Work around chrome monospace bug (#184, thanks @marvinhagemeister)
11+
- Only show selftime in ranked Flamegraph (#183, thanks @marvinhagemeister)
12+
- Fix lint-staged config + update pentf (#182, thanks @marvinhagemeister)
13+
- Make flame graph animations less demanding on GPU (#180, thanks @marvinhagemeister)
14+
- Refactor DataInput (#179, thanks @marvinhagemeister)
15+
- Make generated bundles easier to review (#178, thanks @marvinhagemeister)
16+
- Profiler: Mark unrelated nodes visually (#177, thanks @marvinhagemeister)
17+
- Fix window resize event never triggered (#176, thanks @marvinhagemeister)
18+
319
## 0.6.0
420

521
This release hardens the recently introduced hooks inspection and fixes several edge cases. Apart from that it's now possible to properly debug Preact applications that are rendered inside an `iframe`. The highlight overlay will adapt to the `iframe`'s position accordingly :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.6.0",
3+
"version": "0.6.1",
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.6.0",
5+
"version": "0.6.1",
66
"devtools_page": "panel/empty-panel.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.6.0",
5+
"version": "0.6.1",
66
"devtools_page": "panel/empty-panel.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.6.0",
5+
"version": "0.6.1",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

0 commit comments

Comments
 (0)