@spatulox/simplediscordbot 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
  Date format : dd/mm/yyy
3
3
 
4
+ ### 08/04/2026 - 2.0.1
5
+ - Fix the README.md to match the new BotLog system
6
+
4
7
  ### 08/04/2026 - 2.0.0
5
8
  - GuildManager.find now seach in cache then fetch. Now can return Guild | null
6
9
  - BotLog now have separate channelId for each log type
package/README.md CHANGED
@@ -40,12 +40,10 @@ const config: BotConfig = {
40
40
  defaultSimpleColor: SimpleColor.blue,
41
41
  botName: "Simple Discord Bot",
42
42
  log: {
43
- logChannelId: "YOUR_LOG_CHANNEL_ID",
44
- errorChannelId: "YOUR_ERROR_CHANNEL_ID",
45
- info: { console: true, discord: true },
46
- error: { console: true, discord: true },
47
- warn: { console: true, discord: true },
48
- debug: { console: true, discord: false }
43
+ info: {channelId: "YOUR_LOG_CHANNEL_ID", console: true, discord: true},
44
+ error: {channelId: "YOUR_LOG_CHANNEL_ID", console: true, discord: true},
45
+ warn: {channelId: "YOUR_LOG_CHANNEL_ID", console: true, discord: true},
46
+ debug: {channelId: "YOUR_LOG_CHANNEL_ID", console: true, discord: false},
49
47
  }
50
48
  };
51
49
 
package/dist/index.js CHANGED
@@ -16132,7 +16132,7 @@ var SimpleMutex = class {
16132
16132
  // package.json
16133
16133
  var package_default = {
16134
16134
  name: "@spatulox/simplediscordbot",
16135
- version: "1.7.1",
16135
+ version: "2.0.0",
16136
16136
  author: "Spatulox",
16137
16137
  description: "Simple discord bot framework to set up a bot under 30 secondes",
16138
16138
  exports: {
package/dist/index.mjs CHANGED
@@ -16151,7 +16151,7 @@ var SimpleMutex = class {
16151
16151
  // package.json
16152
16152
  var package_default = {
16153
16153
  name: "@spatulox/simplediscordbot",
16154
- version: "1.7.1",
16154
+ version: "2.0.0",
16155
16155
  author: "Spatulox",
16156
16156
  description: "Simple discord bot framework to set up a bot under 30 secondes",
16157
16157
  exports: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spatulox/simplediscordbot",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "author": "Spatulox",
5
5
  "description": "Simple discord bot framework to set up a bot under 30 secondes",
6
6
  "exports": {