Skip to content

Commit ca8a7d1

Browse files
update documentation links and Readme (#239)
1 parent 7d8d119 commit ca8a7d1

2 files changed

Lines changed: 11 additions & 9 deletions

File tree

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Inspect, monitor, and understand your [Tauri](https://tauri.app) application wit
1010

1111
## Getting Started
1212

13+
> [!TIP]
14+
> For the full documentation, check: [docs.crabnebula.dev/devtools](https://docs.crabnebula.dev/devtools)
15+
1316
### Tauri v1
1417

1518
Ensure you have [Tauri](https://tauri.app/v1/guides/getting-started/setup/) set up correctly. Then install the Rust instrumentation from crates.io:
@@ -33,15 +36,15 @@ tauri-build = "1.5.0"
3336
Ensure you have [Tauri](https://beta.tauri.app/guides/create/) set up correctly. Then install the Rust instrumentation from crates.io:
3437

3538
```sh
36-
cargo add tauri-plugin-devtools@2.0.0-beta
39+
cargo add tauri-plugin-devtools --git https://github.com/crabnebula-dev/devtools
3740
```
3841

3942
You also have to use Tauri **2.0.0-beta.1** (or later) so your `Cargo.toml` file should look as follows:
4043

4144
```toml
4245
[dependencies]
43-
tauri-plugin-devtools = "2.0.0-beta"
44-
tauri = "2.0.0-beta.1"
46+
tauri-plugin-devtools = { git = "https://github.com/crabnebula-dev/devtools" }
47+
tauri = "2.0.0-beta.3"
4548
[build-dependencies]
4649
tauri-build = "2.0.0-beta"
4750
```

clients/web/src/views/connect.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,17 @@ export default function Connect() {
7575
</header>
7676
<aside class="max-w-screen-sm w-full flex flex-col gap-5 text-xl leading-tight text-center text-neutral-400">
7777
<p>
78-
To get started, make sure you have the{" "}
78+
Check our{" "}
7979
<a
8080
class="after:[content:'↗'] after:relative after:-top-2 after:text-xs text-white hover:text-cyan-300 focus:text-cyan-300 transition-colors"
81-
href="https://docs.rs/devtools/latest/devtools"
81+
href="https://docs.crabnebula.dev/devtools/get-started/"
8282
rel="noopener"
8383
target="_blank"
8484
>
85-
<code class="font-mono ">devtools</code> crate
85+
<code class="font-mono ">docs</code>
8686
</a>{" "}
87-
installed.
87+
for information on how to get started.
8888
</p>
89-
<p>Add the right information and start inspecting!</p>
9089
</aside>
9190
<form
9291
class="max-w-screen-sm w-full grid grid-cols-2 gap-8 p-12 border-navy-900 border-px backdrop-blur-md bg-navy-800 bg-opacity-30 rounded-md place-items-center"
@@ -112,7 +111,7 @@ export default function Connect() {
112111
/>
113112
<Button.Root
114113
type="submit"
115-
class="bg-white border-white text-gray-950 flex items-center gap-2 text-2xl border-2 rounded-full py-2 px-4 col-span-2 focus:outline-dashed focus:outline-white focus:outline-offset-2 hover:scale-110 transition-transform ease-in-out"
114+
class="bg-white border-white text-gray-950 flex items-center gap-2 text-2xl border-2 rounded-md py-2 px-4 col-span-2 focus:outline-dashed focus:outline-white focus:outline-offset-2 hover:scale-110 transition-transform ease-in-out"
116115
>
117116
<span>Inspect</span>
118117
</Button.Root>

0 commit comments

Comments
 (0)