commit ea86a2e

delthas  ·  2023-12-04 17:41:07 +0000 UTC
parent e92997b
Move from ~taiite to ~senpai
11 files changed,  +18, -16
M app.go
M go.mod
+7, -5
 1@@ -4,7 +4,7 @@
 2 
 3 **A modern terminal IRC client.**
 4 
 5-![a screenshot of your senpai feat. simon!](https://taiite.srht.site/senpai.png)
 6+![a screenshot of your senpai feat. simon!](senpai.png)
 7 
 8 senpai is an IRC client that works best with bouncers:
 9 
10@@ -28,7 +28,7 @@ Your nick will be set to your SSH username.
11 
12 From source (requires Go):
13 ```shell
14-git clone https://git.sr.ht/~taiite/senpai
15+git clone https://git.sr.ht/~delthas/senpai
16 cd senpai
17 make
18 sudo make install
19@@ -36,7 +36,7 @@ sudo make install
20 
21 For a simple Go local installation:
22 ```shell
23-git clone https://git.sr.ht/~taiite/senpai
24+git clone https://git.sr.ht/~delthas/senpai
25 cd senpai
26 go install ./cmd/senpai
27 ```
28@@ -61,9 +61,9 @@ To debug IRC traffic, run senpai with the `-debug` argument (or put `debug true`
29 
30 ## Issue tracker
31 
32-Browse tickets at <https://todo.sr.ht/~taiite/senpai>.
33+Browse tickets at <https://todo.sr.ht/~delthas/senpai>.
34 
35-To create a ticket, visit the page above, or simply send an email to: [u.taiite.senpai@todo.sr.ht](mailto:u.taiite.senpai@todo.sr.ht) (does not require an account)
36+To create a ticket, visit the page above, or simply send an email to: [u.delthas.senpai@todo.sr.ht](mailto:u.delthas.senpai@todo.sr.ht) (does not require an account)
37 
38 ## Contributing
39 
40@@ -97,6 +97,8 @@ This senpai is open source! Please use it under the ISC license.
41 
42 Copyright (C) 2021 The senpai Contributors
43 
44+*senpai was created by taiite, who later handed development over to delthas. This is not a fork, but a continuation of the project initially hosted at https://sr.ht/~taiite/senpai/*
45+
46 [bouncer-networks]: https://git.sr.ht/~emersion/soju/tree/master/item/doc/ext/bouncer-networks.md
47 [CHATHISTORY]: https://ircv3.net/specs/extensions/chathistory
48 [SEARCH]: https://github.com/ircv3/ircv3-specifications/pull/496
M app.go
+2, -2
 1@@ -13,8 +13,8 @@ import (
 2 	"unicode"
 3 	"unicode/utf8"
 4 
 5-	"git.sr.ht/~taiite/senpai/irc"
 6-	"git.sr.ht/~taiite/senpai/ui"
 7+	"git.sr.ht/~delthas/senpai/irc"
 8+	"git.sr.ht/~delthas/senpai/ui"
 9 	"github.com/gdamore/tcell/v2"
10 	"golang.org/x/net/context"
11 	"golang.org/x/net/proxy"
+1, -1
1@@ -12,7 +12,7 @@ import (
2 	"syscall"
3 	"time"
4 
5-	"git.sr.ht/~taiite/senpai"
6+	"git.sr.ht/~delthas/senpai"
7 	"github.com/gdamore/tcell/v2"
8 )
9 
+2, -2
 1@@ -9,8 +9,8 @@ import (
 2 	"strings"
 3 	"time"
 4 
 5-	"git.sr.ht/~taiite/senpai/irc"
 6-	"git.sr.ht/~taiite/senpai/ui"
 7+	"git.sr.ht/~delthas/senpai/irc"
 8+	"git.sr.ht/~delthas/senpai/ui"
 9 	"github.com/delthas/go-libnp"
10 	"github.com/gdamore/tcell/v2"
11 	"golang.org/x/net/context"
+1, -1
1@@ -3,7 +3,7 @@ package senpai
2 import (
3 	"strings"
4 
5-	"git.sr.ht/~taiite/senpai/ui"
6+	"git.sr.ht/~delthas/senpai/ui"
7 )
8 
9 func (app *App) completionsChannelMembers(cs []ui.Completion, cursorIdx int, text []rune) []ui.Completion {
+1, -1
1@@ -9,7 +9,7 @@ import (
2 	"strconv"
3 	"strings"
4 
5-	"git.sr.ht/~taiite/senpai/ui"
6+	"git.sr.ht/~delthas/senpai/ui"
7 
8 	"github.com/gdamore/tcell/v2"
9 
+1, -1
1@@ -286,5 +286,5 @@ _name_ is matched case-insensitively.  It can be one of the following:
2 
3 Creator/Sensei: Hubert Hirtz <hubert@hirtzfr.eu>!++
4 Current maintainer: delthas <delthas@dille.cc>.++
5-Sources are available at <https://git.sr.ht/~taiite/senpai>.++
6+Sources are available at <https://git.sr.ht/~delthas/senpai>.++
7 Patches are welcome by email at <~delthas/senpai-dev@lists.sr.ht>.
M go.mod
+1, -1
1@@ -1,4 +1,4 @@
2-module git.sr.ht/~taiite/senpai
3+module git.sr.ht/~delthas/senpai
4 
5 go 1.16
6 
+0, -0
+1, -1
1@@ -6,7 +6,7 @@ import (
2 	"sync/atomic"
3 	"time"
4 
5-	"git.sr.ht/~taiite/senpai/irc"
6+	"git.sr.ht/~delthas/senpai/irc"
7 	"github.com/gdamore/tcell/v2"
8 )
9 
+1, -1
1@@ -4,7 +4,7 @@ import (
2 	"strings"
3 	"time"
4 
5-	"git.sr.ht/~taiite/senpai/ui"
6+	"git.sr.ht/~delthas/senpai/ui"
7 )
8 
9 const welcomeMessage = "senpai dev build. Enter /help for a list of commands."