Skip to content

Commit bbbebd8

Browse files
chore: update repo paths and prep v0.0.1 release (#12)
Co-authored-by: Last-but-not-least <Last-but-not-least@users.noreply.github.com>
1 parent ebc6c10 commit bbbebd8

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "codehud"
3-
version = "0.2.0"
3+
version = "0.0.1"
44
edition = "2024"
55
license = "MIT OR Apache-2.0"
66
description = "Code HUD - A tree-sitter powered code context extractor"
7-
repository = "https://github.com/Last-but-not-least/codeview"
7+
repository = "https://github.com/Tidemarks-AI/Code-HUD"
88
keywords = ["tree-sitter", "code-analysis", "refactoring", "cli"]
99
categories = ["command-line-utilities", "development-tools", "parsing"]
1010

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ A code context extractor powered by [Tree-sitter](https://tree-sitter.github.io/
77
### Quick install (Linux / macOS)
88

99
```sh
10-
curl -fsSL https://raw.githubusercontent.com/Last-but-not-least/codeview/main/install.sh | sh
10+
curl -fsSL https://raw.githubusercontent.com/Tidemarks-AI/Code-HUD/main/install.sh | sh
1111
```
1212

1313
This auto-detects your OS and architecture, downloads the latest release binary, and installs to `/usr/local/bin`. Set `INSTALL_DIR` to change the location, or `VERSION` to pin a specific version:
1414

1515
```sh
16-
INSTALL_DIR=~/.local/bin VERSION=v0.0.1 curl -fsSL https://raw.githubusercontent.com/Last-but-not-least/codeview/main/install.sh | sh
16+
INSTALL_DIR=~/.local/bin VERSION=v0.0.1 curl -fsSL https://raw.githubusercontent.com/Tidemarks-AI/Code-HUD/main/install.sh | sh
1717
```
1818

1919
### Download from GitHub Releases
2020

21-
Prebuilt binaries for every release: [GitHub Releases](https://github.com/Last-but-not-least/codeview/releases)
21+
Prebuilt binaries for every release: [GitHub Releases](https://github.com/Tidemarks-AI/Code-HUD/releases)
2222

2323
| Target | Archive |
2424
|--------|---------|

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh
22
# Install script for Code HUD
3-
# Usage: curl -fsSL https://raw.githubusercontent.com/Last-but-not-least/codeview/main/install.sh | sh
3+
# Usage: curl -fsSL https://raw.githubusercontent.com/Tidemarks-AI/Code-HUD/main/install.sh | sh
44

55
set -eu
66

7-
REPO="Last-but-not-least/codeview"
7+
REPO="Tidemarks-AI/Code-HUD"
88
INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
99

1010
get_target() {

0 commit comments

Comments
 (0)