aboutsummaryrefslogtreecommitdiffstats
path: root/termui
diff options
context:
space:
mode:
authorsudoforge <no-reply@sudoforge.com>2024-08-24 08:08:00 -0700
committerGitHub <noreply@github.com>2024-08-24 08:08:00 -0700
commit2004fa79e6ae7645d964a03e2ae2dd808f7d486a (patch)
tree64f3d5291d6957bd57fdb168b6aa10452f0fa1cb /termui
parent63295b1106e0ad01bc1e0d682b71df14558b293a (diff)
downloadgit-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.tar.gz
feat: update references to the git-bug organization (#1249)
The repository was recently moved to the git-bug organization on github. This change refactors references to the repository to ensure that they use the updated owner URI. Closes: #1243 Change-Id: I799712354c6ba25cdd8b06286275850c52efe6ff
Diffstat (limited to 'termui')
-rw-r--r--termui/bug_table.go8
-rw-r--r--termui/help_bar.go2
-rw-r--r--termui/label_select.go4
-rw-r--r--termui/show_bug.go10
-rw-r--r--termui/termui.go10
5 files changed, 17 insertions, 17 deletions
diff --git a/termui/bug_table.go b/termui/bug_table.go
index 9db13ada..ff56e36a 100644
--- a/termui/bug_table.go
+++ b/termui/bug_table.go
@@ -10,10 +10,10 @@ import (
"github.com/awesome-gocui/gocui"
"github.com/dustin/go-humanize"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/query"
- "github.com/MichaelMure/git-bug/util/colors"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/query"
+ "github.com/git-bug/git-bug/util/colors"
)
const bugTableView = "bugTableView"
diff --git a/termui/help_bar.go b/termui/help_bar.go
index 9fc7c152..f5222ea4 100644
--- a/termui/help_bar.go
+++ b/termui/help_bar.go
@@ -6,7 +6,7 @@ import (
text "github.com/MichaelMure/go-term-text"
- "github.com/MichaelMure/git-bug/util/colors"
+ "github.com/git-bug/git-bug/util/colors"
)
type helpBar []struct {
diff --git a/termui/label_select.go b/termui/label_select.go
index 6721165e..5ae1c09a 100644
--- a/termui/label_select.go
+++ b/termui/label_select.go
@@ -7,8 +7,8 @@ import (
"github.com/awesome-gocui/gocui"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/entities/bug"
)
const labelSelectView = "labelSelectView"
diff --git a/termui/show_bug.go b/termui/show_bug.go
index 8bcae842..d5071b02 100644
--- a/termui/show_bug.go
+++ b/termui/show_bug.go
@@ -9,11 +9,11 @@ import (
text "github.com/MichaelMure/go-term-text"
"github.com/awesome-gocui/gocui"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/util/colors"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/util/colors"
)
const showBugView = "showBugView"
diff --git a/termui/termui.go b/termui/termui.go
index d640ed1c..8ca0792f 100644
--- a/termui/termui.go
+++ b/termui/termui.go
@@ -7,11 +7,11 @@ import (
"github.com/awesome-gocui/gocui"
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/cache"
- buginput "github.com/MichaelMure/git-bug/commands/bug/input"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/query"
- "github.com/MichaelMure/git-bug/util/text"
+ "github.com/git-bug/git-bug/cache"
+ buginput "github.com/git-bug/git-bug/commands/bug/input"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/query"
+ "github.com/git-bug/git-bug/util/text"
)
var errTerminateMainloop = errors.New("terminate gocui mainloop")