From f312b78b143836cbf501dbb8ab9c437d83461e08 Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Sun, 1 Oct 2023 16:33:11 +0200 Subject: [PATCH] fix: :speech_balloon: update link from github to zyner git Updated about command from github to zyner git --- .releaserc | 11 ----------- src/commands/utils/subcommands/about/index.ts | 2 +- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.releaserc b/.releaserc index 5f3d739..5fbcaa9 100644 --- a/.releaserc +++ b/.releaserc @@ -17,17 +17,6 @@ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", - [ - "@semantic-release/git", - { - "assets": [ - "dist/**/*.{js,css}", - "docs", - "package.json" - ], - "message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}" - } - ], "@semantic-release/gitlab" ] } diff --git a/src/commands/utils/subcommands/about/index.ts b/src/commands/utils/subcommands/about/index.ts index cd72331..ddeaa89 100644 --- a/src/commands/utils/subcommands/about/index.ts +++ b/src/commands/utils/subcommands/about/index.ts @@ -49,7 +49,7 @@ export const execute = async (interaction: CommandInteraction) => { }); const uptimeString = formatDuration(uptimeDuration); - const botDescription = `This bot, developed by [**Zyner**](https://zyner.org), serves **${guildCount}** servers and has a vast user base of **${memberCount}**. The current version is **${version}**, accessible on [**GitHub**](https://github.com/ZynerOrg/xyter). It has been active since the last restart, with an uptime of **${uptimeString}**.`; + const botDescription = `This bot, developed by [**Zyner**](https://zyner.org), serves **${guildCount}** servers and has a vast user base of **${memberCount}**. The current version is **${version}**, accessible on [**Zyner Git**](https://git.zyner.org/zyner/xyter/bot). It has been active since the last restart, with an uptime of **${uptimeString}**.`; const interactionEmbed = new EmbedBuilder() .setDescription(botDescription)