Skip to content

Commit

Permalink
repair links for main push
Browse files Browse the repository at this point in the history
  • Loading branch information
Hennzau committed Sep 9, 2024
1 parent 32d06c1 commit 70702b0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
<p align="center">
<img src="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/logo.svg" width="400"/>
<img src="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/logo.svg" width="400"/>
</p>

<h2 align="center">
Expand Down Expand Up @@ -34,9 +34,9 @@ An extremely fast and simple **dataflow oriented robotic** framework to manage y

<p align="center">
<picture align="center">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/bar_chart_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/bar_chart_light.svg">
<img src="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/bar_chart_light.svg">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/bar_chart_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/bar_chart_light.svg">
<img src="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/bar_chart_light.svg">
</picture>
</p>

Expand All @@ -47,8 +47,8 @@ An extremely fast and simple **dataflow oriented robotic** framework to manage y
## Highlights

- 🚀 A single CLI to launch your Python and Rust robotic projects.
- ⚡️ [10-17x faster](https://github.com/dora-rs/dora-benchmark/README.md) than `ros2`.
- 🐍 Easy and Fast prototyping with a clean [Python API](https://www.dora-rs.ai/docs/api/python-api).
- ⚡️ [10-17x faster](https://github.com/dora-rs/dora-benchmark) than `ros2`.
- 🐍 Easy and Fast prototyping with a clean [Python API](https://www.dora-rs.ai/docs/python-api.html).
- 🖥️ Supports macOS, Linux, and Windows.
- ⏬ Installable without Rust via `curl` or `powershell`.
- ❇️ Includes a large set of pre-packaged nodes for fast prototyping.
Expand Down Expand Up @@ -133,9 +133,9 @@ The dataflow paradigm has the advantage of creating an abstraction layer that ma
<p align="center">
<picture align="center">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/dora_diag_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/dora_diag_light.svg">
<img src="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/dora_diag_light.svg">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/dora_diag_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/dora_diag_light.svg">
<img src="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/dora_diag_light.svg">
</picture>
</p>
Expand Down Expand Up @@ -209,9 +209,9 @@ See:[examples/python-operator-dataflow](examples/python-operator-dataflow)

<p align="center">
<picture align="center">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/self_coding_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/self_coding_light.svg">
<img src="https://raw.githubusercontent.com/dora-rs/dora/improve-beginner-exp/docs/src/self_coding_light.svg">
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/self_coding_dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/self_coding_light.svg">
<img src="https://raw.githubusercontent.com/dora-rs/dora/main/docs/src/self_coding_light.svg">
</picture>
</p>

Expand Down
6 changes: 3 additions & 3 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function Add-PathToEnv {
$currentPath = [System.Environment]::GetEnvironmentVariable("PATH", [System.EnvironmentVariableTarget]::User)

if ($currentPath -like "*$newPath*") {
Write-Host "`$newPath` is already in the PATH variable."
Write-Host "$newPath is already in the PATH variable."
} else {
$updatedPath = "$currentPath;$newPath"

Expand All @@ -140,11 +140,11 @@ function Confirm-AddToPath {
[string]$newPath
)

$response = Read-Host "Do you want to add `$newPath` to your PATH automatically? (y/n): "
$response = Read-Host "Do you want to add $newPath to your PATH automatically? (y/n): "
if ($response -eq "Y" -or $response -eq "y" -or $response -eq "") {
Add-PathToEnv -newPath $newPath
} else {
Write-Host "You chose not to add `$newPath` to your PATH."
Write-Host "You chose not to add $newPath to your PATH."
Write-Host "To run dora CLI without adding to PATH, use: '~/.dora/bin/dora'"
}
}
Expand Down

0 comments on commit 70702b0

Please sign in to comment.