Skip to content

Commit f1cbc7a

Browse files
committed
Update module name to kaeru
1 parent d00e8db commit f1cbc7a

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# RibbIRC
1+
# Kaero
22

3-
RibbIRC is a simple IRC client made in Golang.
3+
Kaero is a simple IRC client made in Golang.
44

55
It is actively WIP.
66

7-
![image](https://github.com/bourgeoisor/ribbirc/assets/3271352/67ede3bf-dac2-47cc-863d-82b5e18dfd96)
7+
![image](https://github.com/bourgeoisor/kaero/assets/3271352/67ede3bf-dac2-47cc-863d-82b5e18dfd96)
88

99

1010
## How to run
1111

1212
Clone the repository.
1313
```sh
14-
git clone https://github.com/bourgeoisor/ribbirc
14+
git clone https://github.com/bourgeoisor/kaero
1515
```
1616

1717
Fetch the packages and build the binary.
@@ -22,5 +22,5 @@ go build
2222

2323
Run the binary.
2424
```sh
25-
./ribbirc
25+
./kaero
2626
```

application.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"fmt"
55
"github.com/gdamore/tcell/v2"
6-
"ribbirc/client"
7-
"ribbirc/utils"
6+
"kaero/client"
7+
"kaero/utils"
88
"unicode"
99
)
1010

@@ -26,7 +26,7 @@ type Application struct {
2626
func New() (*Application, error) {
2727
// @todo: temporary
2828
listener := make(chan int)
29-
server := client.New(listener, "irc.libera.chat", 6697, "ribbirc")
29+
server := client.New(listener, "irc.libera.chat", 6697, "kaero-client")
3030
err := server.Connect()
3131
if err != nil {
3232
return nil, err
@@ -176,7 +176,7 @@ func (a *Application) drawTopBar() {
176176
}
177177

178178
channel := a.currentChannel()
179-
text := fmt.Sprintf("RibbIRC v0.1.0")
179+
text := fmt.Sprintf("Kaero v0.1.0")
180180
if channel != nil {
181181
text += fmt.Sprintf(" / %s [%d users]", a.channelTab, len(channel.Nicks))
182182
if channel.Topic != "" {

client/channel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package client
22

33
import (
44
"fmt"
5-
"ribbirc/utils"
5+
"kaero/utils"
66
"sync"
77
)
88

client/commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package client
22

33
import (
44
"fmt"
5-
"ribbirc/utils"
5+
"kaero/utils"
66
"strconv"
77
"strings"
88
"time"

client/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package client
22

33
import (
44
"fmt"
5-
"ribbirc/utils"
5+
"kaero/utils"
66
"strconv"
77
"strings"
88
"time"

client/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"bufio"
55
"crypto/tls"
66
"fmt"
7+
"kaero/utils"
78
"log"
8-
"ribbirc/utils"
99
"sort"
1010
"strings"
1111
)

0 commit comments

Comments
 (0)