Skip to content
This repository has been archived by the owner on Nov 12, 2022. It is now read-only.

Releases: mirko93s/Chill

v14.0.1 timeout fix

22 Jul 15:58
1532ab4
Compare
Choose a tag to compare

Fixes:

/timeout works again using 28 days or more (auto capped at 27d 23h 59m 59s now)

v14.0.0 Discord.js v14, Modals etc...

19 Jul 18:24
e8feaa2
Compare
Choose a tag to compare

Chill has been updated to Discord.js v14

⚠️Breaking changes in 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 a language 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

19 Jul 14:46
Compare
Choose a tag to compare
v14 beta.3 Modals Pre-release
Pre-release

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

19 Jul 12:33
Compare
Choose a tag to compare
Pre-release

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

19 Jul 07:38
Compare
Choose a tag to compare
Pre-release

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

31 Mar 06:48
7c51f7a
Compare
Choose a tag to compare
v13 Multi Language Pre-release
Pre-release

New:

Multilanguage support has been added (after many hours of rewriting and moving strings 😫).
Guild Language is taken automatically from your Discord server settings SERVER 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 uploadtranslate.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

18 Mar 12:17
c5ce30b
Compare
Choose a tag to compare

Fixes:

added a draw case to /tictactoe
/emojifind using reply instead followUp

v12.9.0 perms

15 Mar 19:45
41adefb
Compare
Choose a tag to compare

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

15 Mar 13:36
838d4d1
Compare
Choose a tag to compare

Fixes:

#8 Fixed dependency typo in /emojifind 838d4d1

v12.8.1 calc fix

06 Mar 06:45
d2e35f6
Compare
Choose a tag to compare

Fixes:

/calc mathjs crashing bot, temporary fix using mathjs api instead