Added changelogs.
This commit is contained in:
parent
dff954592d
commit
63d93e7107
10 changed files with 784 additions and 475 deletions
35
.astro/astro/content.d.ts
vendored
35
.astro/astro/content.d.ts
vendored
|
@ -183,6 +183,41 @@ declare module 'astro:content' {
|
||||||
collection: "releases";
|
collection: "releases";
|
||||||
data: InferEntrySchema<"releases">
|
data: InferEntrySchema<"releases">
|
||||||
} & { render(): Render[".md"] };
|
} & { render(): Render[".md"] };
|
||||||
|
"5_1_11.md": {
|
||||||
|
id: "5_1_11.md";
|
||||||
|
slug: "5_1_11";
|
||||||
|
body: string;
|
||||||
|
collection: "releases";
|
||||||
|
data: InferEntrySchema<"releases">
|
||||||
|
} & { render(): Render[".md"] };
|
||||||
|
"5_1_12.md": {
|
||||||
|
id: "5_1_12.md";
|
||||||
|
slug: "5_1_12";
|
||||||
|
body: string;
|
||||||
|
collection: "releases";
|
||||||
|
data: InferEntrySchema<"releases">
|
||||||
|
} & { render(): Render[".md"] };
|
||||||
|
"5_1_13.md": {
|
||||||
|
id: "5_1_13.md";
|
||||||
|
slug: "5_1_13";
|
||||||
|
body: string;
|
||||||
|
collection: "releases";
|
||||||
|
data: InferEntrySchema<"releases">
|
||||||
|
} & { render(): Render[".md"] };
|
||||||
|
"5_1_14.md": {
|
||||||
|
id: "5_1_14.md";
|
||||||
|
slug: "5_1_14";
|
||||||
|
body: string;
|
||||||
|
collection: "releases";
|
||||||
|
data: InferEntrySchema<"releases">
|
||||||
|
} & { render(): Render[".md"] };
|
||||||
|
"5_1_15.md": {
|
||||||
|
id: "5_1_15.md";
|
||||||
|
slug: "5_1_15";
|
||||||
|
body: string;
|
||||||
|
collection: "releases";
|
||||||
|
data: InferEntrySchema<"releases">
|
||||||
|
} & { render(): Render[".md"] };
|
||||||
"5_1_2.md": {
|
"5_1_2.md": {
|
||||||
id: "5_1_2.md";
|
id: "5_1_2.md";
|
||||||
slug: "5_1_2";
|
slug: "5_1_2";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"_variables": {
|
"_variables": {
|
||||||
"lastUpdateCheck": 1727179497177
|
"lastUpdateCheck": 1729668851846
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
|
@ -10,8 +10,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "0.9.2",
|
"@astrojs/check": "0.9.4",
|
||||||
"astro": "^4.15.9",
|
"astro": "4.16.7",
|
||||||
"sass": "^1.77.8",
|
"sass": "^1.77.8",
|
||||||
"sharp": "^0.33.3",
|
"sharp": "^0.33.3",
|
||||||
"typescript": "^5.3.3"
|
"typescript": "^5.3.3"
|
||||||
|
|
24
src/content/releases/5_1_11.md
Normal file
24
src/content/releases/5_1_11.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
title: 'Ellie Bot 5.1.11.'
|
||||||
|
date: '2024-10-03'
|
||||||
|
versionNumber: '5.1.11'
|
||||||
|
description: 'Ellie Bot version 5.1.11 release notes.'
|
||||||
|
---
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added `%user.displayname%` placeholder. It will show users nickname, if there is one, otherwise it will show the username.
|
||||||
|
- Nickname won't be shown in bye messages.
|
||||||
|
- Added initial version of grpc api. Beta
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed a bug which caused `.bye` and `.greet` messages to be randomly disabled
|
||||||
|
- Fixed `.lb -c` breaking sometimes, and fixed pagination
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Youtube now always uses `yt-dlp`. Dropped support for `youtube-dl`
|
||||||
|
- If you've previously renamed your yt-dlp file to youtube-dl, please rename it back.
|
||||||
|
- ytProvider in data/searches.yml now also controls where you're getting your song streams from.
|
||||||
|
- (Invidious support added for .q)
|
15
src/content/releases/5_1_12.md
Normal file
15
src/content/releases/5_1_12.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: 'Ellie Bot 5.1.12.'
|
||||||
|
date: '2024-10-04'
|
||||||
|
versionNumber: '5.1.12'
|
||||||
|
description: 'Ellie Bot version 5.1.12 release notes.'
|
||||||
|
---
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added support for `seq` for logging. If you fill in seq url and apiKey in creds.yml, bot will sends logs to it
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the Check for updates service not using the right URL and spitting an error in the console.
|
||||||
|
- Fixed another bug in `.greet` / `.bye` system, which caused it to show wrong message on a wrong server occasionally
|
11
src/content/releases/5_1_13.md
Normal file
11
src/content/releases/5_1_13.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
title: 'Ellie Bot 5.1.13.'
|
||||||
|
date: '2024-10-05'
|
||||||
|
versionNumber: '5.1.13'
|
||||||
|
description: 'Ellie Bot version 5.1.13 release notes.'
|
||||||
|
---
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Grpc api server will no longer start unless enabled in creds
|
||||||
|
- Seq comment in creds fixed
|
14
src/content/releases/5_1_14.md
Normal file
14
src/content/releases/5_1_14.md
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
title: 'Ellie Bot 5.1.14.'
|
||||||
|
date: '2024-10-06'
|
||||||
|
versionNumber: '5.1.14'
|
||||||
|
description: 'Ellie Bot version 5.1.14 release notes.'
|
||||||
|
---
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
|
||||||
|
- Improved `.xplb -c`, it will now correctly only show users who are still in the server with no count limit
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Fixed marmalade load error on startup
|
25
src/content/releases/5_1_15.md
Normal file
25
src/content/releases/5_1_15.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
title: 'Ellie Bot 5.1.15.'
|
||||||
|
date: '2024-10-21'
|
||||||
|
versionNumber: '5.1.15'
|
||||||
|
description: 'Ellie Bot version 5.1.15 release notes.'
|
||||||
|
---
|
||||||
|
|
||||||
|
## Added
|
||||||
|
|
||||||
|
- Added -c option for `.xpglb`
|
||||||
|
|
||||||
|
## Change
|
||||||
|
|
||||||
|
- Leaderboards will now show 10 users per page
|
||||||
|
- A lot of internal changes and improvements
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Fixed a big issue which caused several features to not get loaded on bot restart
|
||||||
|
- Alias collision fix `.qse` is now quotesearch, `.qs` will stay `.queuesearch`
|
||||||
|
- Fixed some migrations which would prevent users from updating from ancient versions
|
||||||
|
- Waifulb will no longer show #0000 discrims
|
||||||
|
- More `.greet` command fixes
|
||||||
|
- Author name will now be counted as content in embeds. Embeds can now only have author fields and still be valid
|
||||||
|
- Grpc api fixes, and additions
|
Loading…
Reference in a new issue