Updated stuff and added more release notes
This commit is contained in:
parent
6a249ff1ef
commit
668360f4b8
9 changed files with 117 additions and 7 deletions
34
.astro/types.d.ts
vendored
34
.astro/types.d.ts
vendored
|
@ -189,9 +189,37 @@ declare module 'astro:content' {
|
|||
collection: "releases";
|
||||
data: InferEntrySchema<"releases">
|
||||
} & { render(): Render[".md"] };
|
||||
"5.0.8-beta.md": {
|
||||
id: "5.0.8-beta.md";
|
||||
slug: "508-beta";
|
||||
"5_0_8.md": {
|
||||
id: "5_0_8.md";
|
||||
slug: "5_0_8";
|
||||
body: string;
|
||||
collection: "releases";
|
||||
data: InferEntrySchema<"releases">
|
||||
} & { render(): Render[".md"] };
|
||||
"5_1_0.md": {
|
||||
id: "5_1_0.md";
|
||||
slug: "5_1_0";
|
||||
body: string;
|
||||
collection: "releases";
|
||||
data: InferEntrySchema<"releases">
|
||||
} & { render(): Render[".md"] };
|
||||
"5_1_1.md": {
|
||||
id: "5_1_1.md";
|
||||
slug: "5_1_1";
|
||||
body: string;
|
||||
collection: "releases";
|
||||
data: InferEntrySchema<"releases">
|
||||
} & { render(): Render[".md"] };
|
||||
"5_1_2.md": {
|
||||
id: "5_1_2.md";
|
||||
slug: "5_1_2";
|
||||
body: string;
|
||||
collection: "releases";
|
||||
data: InferEntrySchema<"releases">
|
||||
} & { render(): Render[".md"] };
|
||||
"5_1_3.md": {
|
||||
id: "5_1_3.md";
|
||||
slug: "5_1_3";
|
||||
body: string;
|
||||
collection: "releases";
|
||||
data: InferEntrySchema<"releases">
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
// You can import this data from anywhere in your site by using the `import` keyword.
|
||||
|
||||
export const SiteTitle = 'Ellie Notes';
|
||||
export const SiteDescription = 'The patchnotes of EllieBot!';
|
||||
export const SiteDescription = 'The patchnotes of EllieBot.';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Ellie Bot 4.3.17!'
|
||||
title: 'Ellie Bot 4.3.17.'
|
||||
date: '2023-09-06'
|
||||
versionNumber: '4.3.17'
|
||||
description: 'Ellie Bot version 4.3.17 release notes.'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Ellie Bot 4.3.18!'
|
||||
title: 'Ellie Bot 4.3.18.'
|
||||
date: '2023-12-26'
|
||||
versionNumber: '4.3.18'
|
||||
description: 'Ellie Bot version 4.3.18 release notes.'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Ellie Bot 5.0.8!'
|
||||
title: 'Ellie Bot 5.0.8.'
|
||||
date: '2024-06-21'
|
||||
versionNumber: '5.0.8'
|
||||
description: 'Ellie Bot version 5.0.8 release notes.'
|
||||
|
|
33
src/content/releases/5_1_0.md
Normal file
33
src/content/releases/5_1_0.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
title: 'Ellie Bot 5.1.0.'
|
||||
date: '2024-06-28'
|
||||
versionNumber: '5.1.0'
|
||||
description: 'Ellie Bot version 5.1.0 release notes.'
|
||||
---
|
||||
|
||||
### Added
|
||||
|
||||
- Added support for `gpt-4o` in `data/games.yml`
|
||||
- Added EllieAiToken to `creds.yml`
|
||||
|
||||
|
||||
### Changed
|
||||
|
||||
- Remind will now show a timestamp tag for durations
|
||||
- Only `Gpt35Turbo` and `Gpt4o` are valid inputs in games.yml now
|
||||
- `data/patron.yml` changed. It now has limits. The entire feature limit system has been reworked. Your previous settings will be reset
|
||||
- A lot of updates to bot strings
|
||||
- Improved cleanup command to delete a lot more data once cleanup is ran, not only guild configs (please don't use this command unless you have your database bakced up and you know 100% what you're doing)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed xp bg buy button not working, and possibly some other buttons too
|
||||
- Fixed shopbuy %user% placeholders and updated help text
|
||||
- All 'feed overloads should now work"
|
||||
- `'xpexclude` should will now work with forums too. If you exclude a forum you won't be able to gain xp in any of the threads.
|
||||
- Fixed remind not showing correct time
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed PoE related commands
|
||||
- dev: Removed patron quota data from the database, it will now be stored in redis
|
18
src/content/releases/5_1_1.md
Normal file
18
src/content/releases/5_1_1.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: 'Ellie Bot 5.1.1.'
|
||||
date: '2024-06-29'
|
||||
versionNumber: '5.1.1'
|
||||
description: 'Ellie Bot version 5.1.1 release notes.'
|
||||
---
|
||||
|
||||
### Added
|
||||
|
||||
- Added `'honeypot` command, which automatically softbans (ban and immediate unban) any user who posts in that channel.
|
||||
- Useful to auto softban bots who spam every channel upon joining
|
||||
- Users who run commands or expressions won't be softbanned.
|
||||
- Users who have ban member permissions are also excluded.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed `'betdraw` not respecting maxbet
|
||||
- Fixed `'xpshop` pagination for real this time?
|
10
src/content/releases/5_1_2.md
Normal file
10
src/content/releases/5_1_2.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: 'Ellie Bot 5.1.2.'
|
||||
date: '2024-06-30'
|
||||
versionNumber: '5.1.2'
|
||||
description: 'Ellie Bot version 5.1.2 release notes.'
|
||||
---
|
||||
|
||||
### Fixed
|
||||
|
||||
- Compile issues by disabling honeypot submodule for the time being, since the release below di not compile cause of it.
|
21
src/content/releases/5_1_3.md
Normal file
21
src/content/releases/5_1_3.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: 'Ellie Bot 5.1.3.'
|
||||
date: '2024-07-8'
|
||||
versionNumber: '5.1.3'
|
||||
description: 'Ellie Bot version 5.1.3 release notes.'
|
||||
---
|
||||
|
||||
### Added
|
||||
|
||||
- Added `'quran` command, which will show the provided ayah in english and arabic, including recitation by Alafasy
|
||||
|
||||
### Changed
|
||||
|
||||
- Replying to the bot's message in the channel where chatterbot is enabled will also trigger the ai response, as if you pinged the bot. This only works for chatterbot, but not for ellie ai command prompts
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed `'stickeradd` it now properly supports 300x300 image uploads.
|
||||
- Bot should now trim the invalid characters from chatterbot usernames to avoid openai errors
|
||||
- Fixed prompt triggering chatterbot responses twice
|
||||
- Honeypot commands now actually works
|
Loading…
Reference in a new issue