Skip to content

Commit 57dc810

Browse files
committed
Updates to ReadMe and Manifest
1 parent a1f7db9 commit 57dc810

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545

4646
Currently, Reactime supports React apps using stateful components and Hooks, including frameworks like Gatsby and Next.js, with beta support for Recoil and Context API.
4747

48-
<b>Reactime version 8.0</b> allows you to run A/B testing on your application by storing a "series" of state data snapshots. At any stage in the dev cycle, devs could run Reactime again and select any past series to do an A/B test with the current series of snapshots. With Save Series, developers have access to view trends in their App's component render times during development by comparing the previous series of snapshots.
48+
<b>Reactime version 9.0</b> allows you to run A/B testing on your application by storing a "series" of state data snapshots. At any stage in the dev cycle, devs could run Reactime again and select any past series to do an A/B test with the current series of snapshots. With Save Series, developers have access to view trends in their App's component render times during development by comparing the previous series of snapshots.
4949

50-
Reactime 8.0 fixes previous version bugs and incorporates improved visualizations for component relationships. Reactime 8.0 includes expanded [typedoc](https://typedoc.org/api/) documentation for developers looking to contribute to the source code.
50+
Reactime 9.0 fixes previous version bugs and incorporates improved user experience for saved snapshot series.
5151

5252
After installing Reactime, you can test its functionalities with your React application in development mode.
5353

@@ -152,6 +152,10 @@ After cloning this repository, developers can simply run `npm run docs` at the r
152152
- [Deep in Weeds with Reactime, Concurrent React_fiberRoot, and Browser History Caching](https://itnext.io/deep-in-the-weeds-with-reactime-concurrent-react-fiberroot-and-browser-history-caching-7ce9d7300abb)
153153

154154
## <b>Authors</b>
155+
- **Harry Fox** - [@StackOverFlowWhereArtThou](https://github.com/StackOverFlowWhereArtThou)
156+
- **Nathan Richardson** - [@BagelEnthusiast](https://github.com/BagelEnthusiast)
157+
- **David Bernstein** - [@dangitbobbeh](https://github.com/dangitbobbeh)
158+
- **Joseph Stern** - [@josephiswhere](https://github.com/josephiswhere)
155159
- **Dennis Lopez** - [@DennisLpz](https://github.com/DennisLpz)
156160
- **Cole Styron** - [@colestyron](https://github.com/C-STYR)
157161
- **Ali Rahman** - [@CourageWolf](https://github.com/CourageWolf)

src/extension/build/devtools.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8-
<title>Reactime v4</title>
8+
<title>Reactime v9</title>
99
</head>
1010

1111
<body>

src/extension/build/devtools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
chrome.devtools.panels.create('Reactime', null, 'panel.html', () => {});
1+
chrome.devtools.panels.create('Reactime', "assets/icon48.png", 'panel.html', () => {});

src/extension/build/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "ReactimevHarryFox",
3-
"version": "8.0.1",
2+
"name": "Reactime",
3+
"version": "9.0.0",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug React applications by memorizing the state of components with every render.",
66
"manifest_version": 2,

0 commit comments

Comments
 (0)