Changelog
3.9.3 (2021-10-22)
Fix(Network)
Fix Cannot read property 'setAttribute' of null
error when call setOption()
before init. (PR #453 by @Zhangstring)Fix(Network)
Fix Fetch
error when iOS < 11. (PR #457 by @zimv)Chore
Generate .d.ts
declarations when built. (RP #433 by @ManiaciaChao)Chore
Remove ./dist
from Git tracking.Changelog
3.9.1 (2021-07-27)
Fix(Log)
Fix command input style. (PR #437 by @FredZeng)Fix(Storage)
Fix globalThis
error. (issue #438 #439)Chore
Fix const
let
error cause by Svelte. (PR #440 by @dellyoung)Changelog
3.9.0 (2021-07-16)
Feat(Log)
Show audio loading error log. (PR #419 by @zimv)Feat(Storage)
Rewrite Storage panel, supports add/edit/delete storage items. (PR #429 by @ManiaciaChao)Feat(Plugin)
New third-party plugin vite-plugin-vconsole. (by @vadxq)Refactor(Core)
Use Svelte as template engine. (PR #429 by @ManiaciaChao)Refactor(Core|Element)
Convert core file and Element panel to .ts
file.Fix(Log)
Fix error when print object(s) with no toJSON
method such as Vue
instance. (PR #431 by @sillyhong)Fix(Network)
Fix error when url not starts with http
. (issue #420)Fix(Network)
Fix error when using Request
as Fetch
's parameter. (PR #428 by @tatsunoneko)Fix(Network)
Display formatted key-value list when POST
a JSON string. (issue #425)Style
Wrap LESS math operations. (PR #426 by @ManiaciaChao)Chore
Fix yarn serve
error. (issue #424)Changelog
3.8.1 (2021-06-24)
Fix(Log)
Do not merge repeated logs with object(s) or array(s) into one line to avoid merging objects with the same structure but different values.Fix(Log)
Fix the issue that log filter does not take effect after selecting the log type.Fix(Network)
Fix error when url starts with //
. (PR #414 by @kooritea)Chore
Remove exclude: node_modules
option in babel-loader to be compatible with ES5. (issue #404, #407)Refactor(Log)
Convert Log & System panel to .ts
file.Changelog
3.8.0 (2021-06-23)
Feat(Log)
Show resource (image/video/link/script) loading error log. (PR #411 by @zimv)Chore
Add target: ['web', 'es5']
to Webpack to avoid compatibility issues. (issue #404)Fix(Network)
Fix error when new URL('x', undefined)
. (PR #409 by @moonkop)Changelog
3.7.0 (2021-05-27)
Feat(Storage)
Show preview value to prevent large raw value blocking rendering. (issue #300)Feat(Storage)
Add copy button and delete button.Feat(Core)
Use system theme color by default when init option theme
is empty.Refactor(Storage)
Convert Storage panel to .ts
file.Fix(Network)
Use forEach
instead of .entries()
when traversing headers
. (issue #404)Fix(Network)
Fix error when Content-Type
is empty.Changelog
3.6.0 (2021-05-21)
Feat(Log)
Print unhandledrejection
log. (PR #389 by @zimv)Feat(Network)
Support navigator.sendBeacon()
in Network panel. (PR #383 by @cola119)Feat(Network)
Display "Type" (Request Type) in "General", including xhr|fetch|ping
.Refactor(Core)
Use TypeScript. Now Network panel is conveted to .ts
file.Fix(Network)
Recover original window.fetch()
method when remove Network panel.Fix(Storage)
Fix issue that the cookie of the non-first-level domain cannot be deleted. (issue #398)Fix(Element)
Fix issue that elements are rendered as nested when attributes
or characterData
changed. (issue #399)