Skip to content

Commit

Permalink
chore: update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
mistakenelf committed Aug 16, 2023
1 parent eb80159 commit bd810bd
Show file tree
Hide file tree
Showing 17 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
strategy:
matrix:
go-version: [~1.20, ^1]
go-version: [~1.21, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# teacup

[![Release](https://img.shields.io/github/release/knipferrc/teacup.svg?style=flat-square)](https://github.com/knipferrc/teacup/releases/latest)
[![Release](https://img.shields.io/github/release/mistakenelf/teacup.svg?style=flat-square)](https://github.com/mistakenelf/teacup/releases/latest)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Go Report Card](https://goreportcard.com/badge/github.com/knipferrc/teacup?style=flat-square)](https://goreportcard.com/report/github.com/knipferrc/teacup)
[![Godoc](https://godoc.org/github.com/knipferrc/teacup?status.svg&style=flat-square)](http://godoc.org/github.com/knipferrc/teacup)
[![Go Report Card](https://goreportcard.com/badge/github.com/mistakenelf/teacup?style=flat-square)](https://goreportcard.com/report/github.com/mistakenelf/teacup)
[![Godoc](https://godoc.org/github.com/mistakenelf/teacup?status.svg&style=flat-square)](http://godoc.org/github.com/mistakenelf/teacup)

## About The Project

Expand All @@ -21,7 +21,7 @@ A collection of bubbles and utilities for creating bubbletea applications.
### Go

```
go get github.com/knipferrc/teacup@latest
go get github.com/mistakenelf/teacup@latest
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion code/code.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/charmbracelet/bubbles/viewport"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/dirfs"
"github.com/mistakenelf/teacup/dirfs"
)

type syntaxMsg string
Expand Down
2 changes: 1 addition & 1 deletion examples/code/code.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/code"
"github.com/mistakenelf/teacup/code"
)

// model represents the properties of the UI.
Expand Down
2 changes: 1 addition & 1 deletion examples/filetree/filetree.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/filetree"
"github.com/mistakenelf/teacup/filetree"
)

type model struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/help/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/help"
"github.com/mistakenelf/teacup/help"
)

// model represents the properties of the UI.
Expand Down
2 changes: 1 addition & 1 deletion examples/image/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/image"
"github.com/mistakenelf/teacup/image"
)

// model represents the properties of the UI.
Expand Down
2 changes: 1 addition & 1 deletion examples/markdown/markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/markdown"
"github.com/mistakenelf/teacup/markdown"
)

// model represents the properties of the UI.
Expand Down
2 changes: 1 addition & 1 deletion examples/pdf/pdf.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/pdf"
"github.com/mistakenelf/teacup/pdf"
)

// model represents the properties of the UI.
Expand Down
2 changes: 1 addition & 1 deletion examples/statusbar/statusbar.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/statusbar"
"github.com/mistakenelf/teacup/statusbar"
)

// model represents the properties of the UI.
Expand Down
2 changes: 1 addition & 1 deletion filetree/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/atotto/clipboard"
"github.com/charmbracelet/bubbles/list"
tea "github.com/charmbracelet/bubbletea"
"github.com/knipferrc/teacup/dirfs"
"github.com/mistakenelf/teacup/dirfs"
)

type getDirectoryListingMsg []list.Item
Expand Down
2 changes: 1 addition & 1 deletion filetree/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package filetree
import (
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/knipferrc/teacup/dirfs"
"github.com/mistakenelf/teacup/dirfs"
)

// Init initializes the filetree with files from the current directory.
Expand Down
2 changes: 1 addition & 1 deletion filetree/item.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"

"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/icons"
"github.com/mistakenelf/teacup/icons"
)

// fileIconWidth represents the width of the file icons.
Expand Down
2 changes: 1 addition & 1 deletion filetree/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/charmbracelet/bubbles/list"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/dirfs"
"github.com/mistakenelf/teacup/dirfs"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion filetree/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/knipferrc/teacup/dirfs"
"github.com/mistakenelf/teacup/dirfs"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/knipferrc/teacup
module github.com/mistakenelf/teacup

go 1.20
go 1.21

require (
github.com/alecthomas/chroma v0.10.0
Expand Down
2 changes: 1 addition & 1 deletion markdown/markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/glamour"
"github.com/charmbracelet/lipgloss"
"github.com/knipferrc/teacup/dirfs"
"github.com/mistakenelf/teacup/dirfs"
)

type renderMarkdownMsg string
Expand Down

0 comments on commit bd810bd

Please sign in to comment.