Releases: mirko93s/Chill
v14.0.1 timeout fix
v14.0.0 Discord.js v14, Modals etc...
Chill has been updated to Discord.js v14
Some entries in the database (server settings toggles) have been changed from strings to boolean. If you are updating from an older version you MUST run this code once to update the database.
⚠️ CODE TO COPY
client.guilds.cache.forEach(guild => {
[`musicchannelonly`, `autodeletecmds`, `xpmodule`, `welcomemessage`, `welcomerole`, `djrequired`].forEach(key => {
if (client.settings.get(guild.id, key) === `true`) client.settings.set(guild.id, true, key);
else if (client.settings.get(guild.id, key) === `false`) client.settings.set(guild.id, false, key);
});
});
New:
/setconfig
got alanguage
option, you can now set the server language also using that command ( you can still change the language using the discord server settings like in v13)
Other:
update dependencies to latest release
Check the changelog of the past betas for more info:
14.0.0-beta.3
/announce
, /bug
, /say
now use Modals
Changed command string options to use minLength
and maxLength
( removed unnecessary checks etc... )
14.0.0-beta.2
weather is back with a new api, with more info and a new embed style
14.0.0-beta.1
Everything should now work fine with the latest djs v14, hopefully.
Notes:
/weather
api stopped working. there will be a new weather command in the final v14 release of the bot.
multilanguage system isn't fully working in this release.
instagram has been removed, rate limits are too low. maybe it will be back if I find a workaround
v14 beta.3 Modals
THIS IS A BETA!
/announce
, /bug
, /say
now use Modals
Changed command string options to use minLength
and maxLength
( removed unnecessary checks etc... )
multilanguage is the next and the last before v14 final release
v14 beta.2 new weather api
THIS IS A BETA!
weather is back with a new api, with more info and a new embed style
multilanguage is still half broken
v14 beta.1 Updated to Discord.js v14
THIS IS A BETA!
Everything should now work fine with the latest djs v14, hopefully.
Notes:
/weather
api stopped working. there will be a new weather command in the final v14 release of the bot.
multilanguage system isn't fully working in this release.
instagram has been removed, rate limits are too low. maybe it will be back if I find a workaround
v13 Multi Language
New:
Multilanguage support has been added (after many hours of rewriting and moving strings 😫).
Guild Language is taken automatically from your Discord server settingsSERVER SETTINGS > OVERVIEW > SERVER PRIMARY LANGUAGE
(the blank one is english). So you just set the language in there and that's all, if that language is already available it will be used in your server.
Also I opened a crowdin project where you can help me translate in your language. Check it here: https://translate.chill.ovh/
Fixes:
Forgot to upload
translate.js
file so translator was never really added
missing
./commands
folder in root was causing errors, decided to still keep it if someone want to add chat commands
/report
permissions
music supports live streams now (kinda, they don't give errors anymore but they stop randomly and often (ytdl's fault from what i read online)
Changes:
greatly reduced ram usage in music (maybe it will be improved more, need time between tests)
reduced bandwith usage in music (choosen and ordered qualities for ytdl options)
added a "requested by" footer in song messages
/activities
updated all links and activities list as of 26 March 2022
v12.9.1
v12.9.0 perms
Changes:
Most of the commands got their proper user and bot permissions checks
Fixes:
/today
bug if no event was found in a day
v12.8.2
v12.8.1 calc fix
Fixes:
/calc
mathjs crashing bot, temporary fix using mathjs api instead