From 2f70dff7e00edc738499f3a8bfc20344c24710ab Mon Sep 17 00:00:00 2001 From: Patrick Bertsch Date: Sat, 28 Mar 2026 07:38:21 -0600 Subject: [PATCH] fix: cleanup old package name and domain references found in health check --- docs/wiki/Home.md | 2 +- vscode/README.md | 4 ++-- website/src/content/docs/blog/guide-to-flutter-e2e-testing.md | 2 +- .../src/content/docs/comparisons/flutter-test-automation.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/wiki/Home.md b/docs/wiki/Home.md index 5c72ce2..f5e48c5 100644 --- a/docs/wiki/Home.md +++ b/docs/wiki/Home.md @@ -1,6 +1,6 @@ # FlutterProbe Wiki -Welcome to the FlutterProbe wiki. This documentation covers architecture details, development guides, and operational procedures that complement the main docs at [flutterprobe.com](https://flutterprobe.dev). +Welcome to the FlutterProbe wiki. This documentation covers architecture details, development guides, and operational procedures that complement the main docs at [flutterprobe.dev](https://flutterprobe.dev). ## Quick Links diff --git a/vscode/README.md b/vscode/README.md index 184c706..c33a0b6 100644 --- a/vscode/README.md +++ b/vscode/README.md @@ -100,7 +100,7 @@ Sidebar tree view of all tests and recipes in your workspace: ```bash # macOS / Linux -curl -fsSL https://flutterprobe.com/install.sh | sh +curl -fsSL https://flutterprobe.dev/install.sh | sh # Or build from source git clone https://github.com/AlphaWaveSystems/flutter-probe.git @@ -120,7 +120,7 @@ dependencies: 3. Initialize the agent in your `main.dart`: ```dart -import 'package:probe_agent/probe_agent.dart'; +import 'package:flutter_probe_agent/flutter_probe_agent.dart'; void main() { ProbeAgent.start(); // Only active in debug/profile builds diff --git a/website/src/content/docs/blog/guide-to-flutter-e2e-testing.md b/website/src/content/docs/blog/guide-to-flutter-e2e-testing.md index e809903..f2a06cf 100644 --- a/website/src/content/docs/blog/guide-to-flutter-e2e-testing.md +++ b/website/src/content/docs/blog/guide-to-flutter-e2e-testing.md @@ -35,7 +35,7 @@ Three primary options exist for Flutter E2E testing: Install the FlutterProbe CLI: ```bash -curl -sSL https://get.flutterprobe.com | sh +curl -sSL https://flutterprobe.dev/install | sh ``` Add the FlutterProbe Dart agent to your app's dev dependencies: diff --git a/website/src/content/docs/comparisons/flutter-test-automation.md b/website/src/content/docs/comparisons/flutter-test-automation.md index 19ddd5a..b55b800 100644 --- a/website/src/content/docs/comparisons/flutter-test-automation.md +++ b/website/src/content/docs/comparisons/flutter-test-automation.md @@ -52,7 +52,7 @@ jobs: flutter-version: '3.27.0' - name: Install FlutterProbe run: | - curl -sSL https://get.flutterprobe.com | sh + curl -sSL https://flutterprobe.dev/install | sh - name: Build and test run: | flutter build apk --debug