Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ A powerful Flutter plugin for in-app developer console, providing real-time debu

🌐 **[Official Website](https://www.zerolabsco.com/)**

📦 **[View on pub.dev](https://pub.dev/packages/zero_inspector_kit)**

🔗 **[View on GitHub](https://github.com/zero-labsco/zero_inspector_kit)**

## Features
Expand All @@ -39,19 +41,19 @@ Add the following to your `pubspec.yaml`:

```yaml
dependencies:
zero_inspector_kit: ^1.3.0
zero_inspector_kit: ^1.3.1
```

### GitHub

Alternatively, you can install from GitHub (replace `1.3.0` with the version you need):
Alternatively, you can install from GitHub (replace `1.3.1` with the version you need):

```yaml
dependencies:
zero_inspector_kit:
git:
url: https://github.com/zero-labsco/zero_inspector_kit.git
ref: v1.3.0
ref: v1.3.1
```

## Usage
Expand Down
13 changes: 7 additions & 6 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@
[![Dart](https://img.shields.io/badge/Dart-✓-0175C2?logo=dart)](https://dart.dev)
[![Style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://pub.dev/packages/effective_dart)

> **🔔 推荐升级:** v1.3.0 新增网络批量操作、导出敏感字段遮蔽、一键复制 cURL、告警系统(悬浮球未读红点),并对 HTTP 拦截器做了纯内部重构(行为不变)。建议所有用户升级到 `^1.3.0`。
> **🔔 推荐升级:** v1.3.1 在 v1.3.0 的网络批量操作、导出敏感字段遮蔽、一键复制 cURL、告警系统(悬浮球未读红点)基础上,新增告警同源节流(避免持续超阈值或请求突发的告警风暴)。建议所有用户升级到 `^1.3.1`。

🌐 **[官方网站](https://www.zerolabsco.com/)**

📦 **[在 pub.dev 查看](https://pub.dev/packages/zero_inspector_kit)**

🔗 **[查看 GitHub 仓库](https://github.com/zero-labsco/zero_inspector_kit)**

## 功能特性
Expand All @@ -26,7 +28,7 @@
- **内存监控**: 实时内存监控,包含趋势图、Dart Heap 详情、Native 内存分项(Android PSS / iOS physicalFootprint)、内存泄漏检测、图片缓存监控和应用存储统计。提供总开关避免性能开销。
- **FPS 监控**: 实时帧率测量、帧耗时统计、掉帧检测、FPS 趋势折线图(30 秒窗口)。提供总开关避免性能开销。
- **路由追踪器**: 监控导航历史和当前路由信息。
- **告警系统**: 可针对网络请求、日志、内存、FPS 定义告警规则,主动暴露问题。悬浮球显示未读告警数红点(打开面板即清零),Alerts 标签页列出已触发的告警。
- **告警系统**: 可针对网络请求、日志、内存、FPS 定义告警规则,主动暴露问题。悬浮球显示未读告警数红点(打开面板即清零),Alerts 标签页列出已触发的告警。同源节流(基于 source + message 的 1 秒滑动窗口)会在持续超阈值或请求突发时抑制重复告警,同时周期性的重新触发保证持续问题始终可见。
- **悬浮按钮**: 带呼吸动画的可访问悬浮检查按钮,通过根 `Overlay` 渲染,独立于任意页面的 widget 树。拖动松手后自动吸附并"收入"最近的屏幕边缘(仅露出小部分);点击露出部分会平滑拉出到完整可见,再次点击才打开面板。此设计避免了与系统边缘返回手势的冲突。
- **跨平台**: 支持 Android 和 iOS 平台。

Expand All @@ -38,19 +40,19 @@

```yaml
dependencies:
zero_inspector_kit: ^1.3.0
zero_inspector_kit: ^1.3.1
```

### GitHub

或者,你也可以从 GitHub 安装(将 `1.3.0` 替换为你需要的版本号):
或者,你也可以从 GitHub 安装(将 `1.3.1` 替换为你需要的版本号):

```yaml
dependencies:
zero_inspector_kit:
git:
url: https://github.com/zero-labsco/zero_inspector_kit.git
ref: v1.3.0
ref: v1.3.1
```

## 使用方法
Expand Down Expand Up @@ -274,7 +276,6 @@ DatabaseRegistry.instance.registerProvider(SqliteDatabaseProvider());
myBloc.trackMemoryLeak(tag: 'HomePage_myBloc');

// 或使用顶层函数
// Or use top-level function
trackMemoryLeak(myBloc, tag: 'HomePage_myBloc');

// 取消追踪
Expand Down
2 changes: 1 addition & 1 deletion docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add the following to your `pubspec.yaml`:

```yaml
dependencies:
zero_inspector_kit: ^1.2.0
zero_inspector_kit: ^1.3.1
```

Then run:
Expand Down
Loading