Skip to content

Commit b803cde

Browse files
Merge pull request #231 from preactjs/changeset-release/master
Version Packages
2 parents 99f6c56 + 6b2abed commit b803cde

File tree

7 files changed

+12
-14
lines changed

7 files changed

+12
-14
lines changed

.changeset/design-polish.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/virtualization.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

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

3+
## 1.1.1
4+
5+
### Patch Changes
6+
7+
- [`6e5ebba`](https://github.com/preactjs/preact-devtools/commit/6e5ebba9c29c04eded51e92996baf82e0de207c9) [#238](https://github.com/preactjs/preact-devtools/pull/238) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Align font-sizes with native browser devtools and fix component name "pushing" sidebar layout.
8+
9+
* [`74e7edc`](https://github.com/preactjs/preact-devtools/commit/74e7edc6a77234abcb8ae4be5aa469362d899210) [#242](https://github.com/preactjs/preact-devtools/pull/242) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Improve Tree view performance by using virtualization. This way the Tree view stays smooth, regardless of how many components are rendered of the page. This was tested with 7.000 components in a real world app.
10+
311
## 1.1.0
412

513
- Add new "Statistics" tab to collect renderer statistics (#230, 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": "1.1.0",
3+
"version": "1.1.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": "1.1.0",
5+
"version": "1.1.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": "1.1.0",
5+
"version": "1.1.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": "1.1.0",
5+
"version": "1.1.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)