mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
docs: updated pagination, upped version to 5.1.1
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
|
Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
|
||||||
|
|
||||||
## [5.1.1]
|
## [5.1.1] - 27.06.2024
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@@ -14,6 +14,7 @@ Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except da
|
|||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed `.betdraw` not respecting maxbet
|
- Fixed `.betdraw` not respecting maxbet
|
||||||
|
- Fixed `.xpshop` pagination for real this time?
|
||||||
|
|
||||||
## [5.1.0] - 25.06.2024
|
## [5.1.0] - 25.06.2024
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>true</ImplicitUsings>
|
<ImplicitUsings>true</ImplicitUsings>
|
||||||
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
||||||
<Version>5.1.0</Version>
|
<Version>5.1.1</Version>
|
||||||
|
|
||||||
<!-- Output/build -->
|
<!-- Output/build -->
|
||||||
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
|
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
|
||||||
|
@@ -156,7 +156,7 @@ public sealed class Creds : IBotCredentials
|
|||||||
|
|
||||||
public Creds()
|
public Creds()
|
||||||
{
|
{
|
||||||
Version = 8;
|
Version = 9;
|
||||||
Token = string.Empty;
|
Token = string.Empty;
|
||||||
UsePrivilegedIntents = true;
|
UsePrivilegedIntents = true;
|
||||||
OwnerIds = new List<ulong>();
|
OwnerIds = new List<ulong>();
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# DO NOT CHANGE
|
# DO NOT CHANGE
|
||||||
version: 7
|
version: 9
|
||||||
# Bot token. Do not share with anyone ever -> https://discordapp.com/developers/applications/
|
# Bot token. Do not share with anyone ever -> https://discordapp.com/developers/applications/
|
||||||
token: ''
|
token: ''
|
||||||
# List of Ids of the users who have bot owner permissions
|
# List of Ids of the users who have bot owner permissions
|
||||||
@@ -13,6 +13,12 @@ usePrivilegedIntents: true
|
|||||||
# note: If you are planning to have more than one shard, then you must change botCache to 'redis'.
|
# note: If you are planning to have more than one shard, then you must change botCache to 'redis'.
|
||||||
# Also, in that case you should be using NadekoBot.Coordinator to start the bot, and it will correctly override this value.
|
# Also, in that case you should be using NadekoBot.Coordinator to start the bot, and it will correctly override this value.
|
||||||
totalShards: 1
|
totalShards: 1
|
||||||
|
# Pledge 5$ or more on https://patreon.com/nadekobot and connect your discord account to Patreon.
|
||||||
|
# Go to https://dashy.nadeko.bot/me and login with your discord account
|
||||||
|
# Go to the Keys page and click "Generate New Key" and copy it here
|
||||||
|
# You and anyone else with the permission to run `.prompt` command will be able to use natural language to run bot's commands.
|
||||||
|
# For example '@Bot how's the weather in Paris' will return the current weather in Paris as if you were to run `.weather Paris` command.
|
||||||
|
nadekoAiToken:
|
||||||
# Login to https://console.cloud.google.com, create a new project, go to APIs & Services -> Library -> YouTube Data API and enable it.
|
# Login to https://console.cloud.google.com, create a new project, go to APIs & Services -> Library -> YouTube Data API and enable it.
|
||||||
# Then, go to APIs and Services -> Credentials and click Create credentials -> API key.
|
# Then, go to APIs and Services -> Credentials and click Create credentials -> API key.
|
||||||
# Used only for Youtube Data Api (at the moment).
|
# Used only for Youtube Data Api (at the moment).
|
||||||
@@ -56,7 +62,7 @@ patreon:
|
|||||||
botListToken: ''
|
botListToken: ''
|
||||||
# Official cleverbot api key.
|
# Official cleverbot api key.
|
||||||
cleverbotApiKey: ''
|
cleverbotApiKey: ''
|
||||||
# Official GPT-3 api key.
|
# OpenAi api key.
|
||||||
gpt3ApiKey: ''
|
gpt3ApiKey: ''
|
||||||
# Which cache implementation should bot use.
|
# Which cache implementation should bot use.
|
||||||
# 'memory' - Cache will be in memory of the bot's process itself. Only use this on bots with a single shard. When the bot is restarted the cache is reset.
|
# 'memory' - Cache will be in memory of the bot's process itself. Only use this on bots with a single shard. When the bot is restarted the cache is reset.
|
||||||
|
Reference in New Issue
Block a user