Selaa lähdekoodia

Update license and module path

ayn2op 3 vuotta sitten
vanhempi
sitoutus
74d731a0e1
8 muutettua tiedostoa jossa 10 lisäystä ja 10 poistoa
  1. 1 1
      LICENSE
  2. 2 2
      README.md
  3. 1 1
      go.mod
  4. 2 2
      main.go
  5. 1 1
      ui/application.go
  6. 1 1
      ui/builder.go
  7. 1 1
      ui/login_view.go
  8. 1 1
      ui/messages_view.go

+ 1 - 1
LICENSE

@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2021 ayntgl
+Copyright (c) 2021 ayn2op
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

+ 2 - 2
README.md

@@ -1,4 +1,4 @@
-# Discordo · [![ci](https://github.com/ayntgl/discordo/actions/workflows/ci.yml/badge.svg)](https://github.com/ayntgl/discordo/actions/workflows/ci.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/ayntgl/discordo)](https://goreportcard.com/report/github.com/ayntgl/discordo) [![license](https://img.shields.io/github/license/ayntgl/discordo?logo=github)](https://github.com/ayntgl/discordo/blob/master/LICENSE)
+# Discordo · [![ci](https://github.com/ayn2op/discordo/actions/workflows/ci.yml/badge.svg)](https://github.com/ayn2op/discordo/actions/workflows/ci.yml) [![Go Report Card](https://goreportcard.com/badge/github.com/ayn2op/discordo)](https://goreportcard.com/report/github.com/ayn2op/discordo) [![license](https://img.shields.io/github/license/ayn2op/discordo?logo=github)](https://github.com/ayn2op/discordo/blob/master/LICENSE)
 
 Discordo is a lightweight, secure, and feature-rich Discord terminal client. Heavily work-in-progress, expect breaking changes.
 
@@ -42,7 +42,7 @@ You can download and install a [prebuilt binary here](https://nightly.link/ayn2o
 ### Building from source
 
 ```bash
-git clone https://github.com/ayntgl/discordo
+git clone https://github.com/ayn2op/discordo
 cd discordo
 make build
 

+ 1 - 1
go.mod

@@ -1,4 +1,4 @@
-module github.com/ayntgl/discordo
+module github.com/ayn2op/discordo
 
 go 1.19
 

+ 2 - 2
main.go

@@ -6,8 +6,8 @@ import (
 	"os"
 	"path/filepath"
 
-	"github.com/ayntgl/discordo/config"
-	"github.com/ayntgl/discordo/ui"
+	"github.com/ayn2op/discordo/config"
+	"github.com/ayn2op/discordo/ui"
 	"github.com/zalando/go-keyring"
 )
 

+ 1 - 1
ui/application.go

@@ -7,7 +7,7 @@ import (
 	"runtime"
 	"strings"
 
-	"github.com/ayntgl/discordo/config"
+	"github.com/ayn2op/discordo/config"
 	"github.com/diamondburned/arikawa/v3/api"
 	"github.com/diamondburned/arikawa/v3/discord"
 	"github.com/diamondburned/arikawa/v3/gateway"

+ 1 - 1
ui/builder.go

@@ -5,7 +5,7 @@ import (
 	"strings"
 	"time"
 
-	"github.com/ayntgl/discordo/discordmd"
+	"github.com/ayn2op/discordo/discordmd"
 	"github.com/diamondburned/arikawa/v3/discord"
 )
 

+ 1 - 1
ui/login_view.go

@@ -4,7 +4,7 @@ import (
 	"context"
 	"log"
 
-	"github.com/ayntgl/discordo/config"
+	"github.com/ayn2op/discordo/config"
 	"github.com/diamondburned/arikawa/v3/api"
 	"github.com/rivo/tview"
 	"github.com/zalando/go-keyring"

+ 1 - 1
ui/messages_view.go

@@ -3,7 +3,7 @@ package ui
 import (
 	"log"
 
-	"github.com/ayntgl/discordo/discordmd"
+	"github.com/ayn2op/discordo/discordmd"
 	"github.com/diamondburned/arikawa/v3/discord"
 	"github.com/gdamore/tcell/v2"
 	"github.com/rivo/tview"