aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-09-11 14:35:32 +0200
committerWilliam Hergès <william@herges.fr>2025-09-11 14:35:32 +0200
commit8cec1c5a30f9bf679f3b4704b27684b4c4bf531b (patch)
treec0ed084a9c8064a3907ec9b14900df44aa40f0af
parentde7cb2acda502c4fa655b9c892757773e34958e6 (diff)
docs(info): add inter as deps in readme and credits
-rw-r--r--README.md5
-rw-r--r--commands/credits.go3
2 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index fea1593..6355f32 100644
--- a/README.md
+++ b/README.md
@@ -87,3 +87,8 @@ in `.env`)
- Go 1.24
- anhgelus/gokord
+
+## License
+
+This project uses [Inter](https://github.com/rsms/inter), an open font.
+Check its license [here](https://github.com/rsms/inter/blob/master/LICENSE.txt) (SIL OPEN FONT LICENSE Version 1.1).
diff --git a/commands/credits.go b/commands/credits.go
index f0a8c46..d58547e 100644
--- a/commands/credits.go
+++ b/commands/credits.go
@@ -11,7 +11,8 @@ func Credits(_ *discordgo.Session, i *discordgo.InteractionCreate, _ cmd.OptionM
msg := "**Les Copaings**, le bot gérant les serveurs privés de [anhgelus](<https://anhgelus.world/>).\n"
msg += "Code source : <https://git.anhgelus.world/anhgelus/les-copaings-bot>\n\n"
msg += "Host du bot : " + gokord.BaseCfg.GetAuthor() + ".\n\n"
- msg += "Utilise :\n- [anhgelus/gokord](<https://github.com/anhgelus/gokord>)"
+ msg += "Utilise :\n- [anhgelus/gokord](<https://github.com/anhgelus/gokord>)\n"
+ msg += "- [Inter](<https://github.com/rsms/inter>)"
err := resp.SetMessage(msg).Send()
if err != nil {
logger.Alert("commands/credits.go - Sending credits", err.Error(), "guild_id", i.GuildID)