Skip to content

Commit 364f8ef

Browse files
chore: update module path and refs to clarabennettdev
Renamed username from clarabennett2626 to clarabennettdev. Updated go.mod module path, all import paths, README badges, install instructions, and release download URLs (v0.3.0).
1 parent 1ab8e69 commit 364f8ef

8 files changed

Lines changed: 20 additions & 20 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# LogPilot 🪵
22

3-
[![CI](https://github.com/clarabennett2626/logpilot/actions/workflows/ci.yml/badge.svg)](https://github.com/clarabennett2626/logpilot/actions/workflows/ci.yml)
4-
[![Release](https://img.shields.io/github/v/release/clarabennett2626/logpilot)](https://github.com/clarabennett2626/logpilot/releases/latest)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/clarabennett2626/logpilot)](https://goreportcard.com/report/github.com/clarabennett2626/logpilot)
6-
[![Go Reference](https://pkg.go.dev/badge/github.com/clarabennett2626/logpilot.svg)](https://pkg.go.dev/github.com/clarabennett2626/logpilot)
3+
[![CI](https://github.com/clarabennettdev/logpilot/actions/workflows/ci.yml/badge.svg)](https://github.com/clarabennettdev/logpilot/actions/workflows/ci.yml)
4+
[![Release](https://img.shields.io/github/v/release/clarabennettdev/logpilot)](https://github.com/clarabennettdev/logpilot/releases/latest)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/clarabennettdev/logpilot)](https://goreportcard.com/report/github.com/clarabennettdev/logpilot)
6+
[![Go Reference](https://pkg.go.dev/badge/github.com/clarabennettdev/logpilot.svg)](https://pkg.go.dev/github.com/clarabennettdev/logpilot)
77
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
88

99
**A multi-source structured log viewer for the terminal.** Tail files, pipe from Docker/kubectl, mix JSON and logfmt and plain text — all in one interactive TUI.
@@ -65,21 +65,21 @@ logpilot services/*.log /var/log/syslog
6565
### Go install (requires Go 1.22+)
6666

6767
```bash
68-
go install github.com/clarabennett2626/logpilot@latest
68+
go install github.com/clarabennettdev/logpilot@latest
6969
```
7070

7171
### Binary download
7272

73-
Grab a prebuilt binary from [Releases](https://github.com/clarabennett2626/logpilot/releases/latest):
73+
Grab a prebuilt binary from [Releases](https://github.com/clarabennettdev/logpilot/releases/latest):
7474

7575
```bash
7676
# Linux (amd64)
77-
curl -LO https://github.com/clarabennett2626/logpilot/releases/download/v0.1.0/logpilot_linux_amd64.tar.gz
77+
curl -LO https://github.com/clarabennettdev/logpilot/releases/download/v0.3.0/logpilot_linux_amd64.tar.gz
7878
tar xzf logpilot_linux_amd64.tar.gz
7979
sudo mv logpilot /usr/local/bin/
8080

8181
# macOS (Apple Silicon)
82-
curl -LO https://github.com/clarabennett2626/logpilot/releases/download/v0.1.0/logpilot_darwin_arm64.tar.gz
82+
curl -LO https://github.com/clarabennettdev/logpilot/releases/download/v0.3.0/logpilot_darwin_arm64.tar.gz
8383
tar xzf logpilot_darwin_arm64.tar.gz
8484
sudo mv logpilot /usr/local/bin/
8585

@@ -90,7 +90,7 @@ sudo mv logpilot /usr/local/bin/
9090
### From source
9191

9292
```bash
93-
git clone https://github.com/clarabennett2626/logpilot.git
93+
git clone https://github.com/clarabennettdev/logpilot.git
9494
cd logpilot
9595
go build -o logpilot ./cmd/logpilot
9696
```

cmd/demo/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"time"
1010

11-
"github.com/clarabennett2626/logpilot/internal/parser"
12-
"github.com/clarabennett2626/logpilot/internal/tui"
11+
"github.com/clarabennettdev/logpilot/internal/parser"
12+
"github.com/clarabennettdev/logpilot/internal/tui"
1313
)
1414

1515
func main() {

cmd/logpilot/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"syscall"
1010

1111
tea "github.com/charmbracelet/bubbletea"
12-
"github.com/clarabennett2626/logpilot/internal/parser"
13-
"github.com/clarabennett2626/logpilot/internal/source"
14-
"github.com/clarabennett2626/logpilot/internal/tui"
12+
"github.com/clarabennettdev/logpilot/internal/parser"
13+
"github.com/clarabennettdev/logpilot/internal/source"
14+
"github.com/clarabennettdev/logpilot/internal/tui"
1515
)
1616

1717
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/clarabennett2626/logpilot
1+
module github.com/clarabennettdev/logpilot
22

33
go 1.24.2
44

internal/tui/model.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
tea "github.com/charmbracelet/bubbletea"
88
"github.com/charmbracelet/lipgloss"
9-
"github.com/clarabennett2626/logpilot/internal/parser"
10-
"github.com/clarabennett2626/logpilot/internal/source"
9+
"github.com/clarabennettdev/logpilot/internal/parser"
10+
"github.com/clarabennettdev/logpilot/internal/source"
1111
)
1212

1313
var (

internal/tui/model_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
tea "github.com/charmbracelet/bubbletea"
8-
"github.com/clarabennett2626/logpilot/internal/parser"
8+
"github.com/clarabennettdev/logpilot/internal/parser"
99
)
1010

1111
func setupModel(width, height int, lines int) Model {

internal/tui/renderer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/charmbracelet/lipgloss"
11-
"github.com/clarabennett2626/logpilot/internal/parser"
11+
"github.com/clarabennettdev/logpilot/internal/parser"
1212
)
1313

1414
// TimestampFormat controls how timestamps are displayed.

internal/tui/renderer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/clarabennett2626/logpilot/internal/parser"
8+
"github.com/clarabennettdev/logpilot/internal/parser"
99
)
1010

1111
var fixedNow = time.Date(2026, 2, 17, 20, 0, 0, 0, time.UTC)

0 commit comments

Comments
 (0)