Skip to content

Commit

Permalink
release: v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Dec 2, 2022
1 parent 08ccb5f commit d8692df
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.7.2 (2 Dec 2022)

* chore: update chobitsu(support android 5.0)

## 1.7.1 (27 Nov 2022)

* chore: update chobitsu(suppport ie11)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chii",
"version": "1.7.1",
"version": "1.7.2",
"description": "Chrome devtools framework",
"main": "./server/index.js",
"bin": {
Expand Down Expand Up @@ -43,7 +43,7 @@
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-eslint": "^10.1.0",
"chobitsu": "^1.4.0",
"chobitsu": "^1.4.1",
"css-loader": "^6.7.2",
"es-check": "^6.2.1",
"eslint": "^8.22.0",
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ function inspect(id: string) {

let start = Date.now();
setInterval(() => {
if (document.hidden) {
return;
}
fetch(`${window.basePath}timestamp`)
.then(res => res.text())
.then(timestamp => {
Expand Down
3 changes: 3 additions & 0 deletions test/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ body {
text-align: center;
margin-bottom: 50px;
}
.qrcode img {
max-width: 100%;
}
.buttons {
padding: 0;
margin: 0;
Expand Down

0 comments on commit d8692df

Please sign in to comment.