blockmine 1.16.1 → 1.16.2

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,18 @@
1
1
  # История версий
2
2
 
3
3
 
4
+ ### [1.16.2](https://github.com/blockmineJS/blockmine/compare/v1.16.1...v1.16.2) (2025-07-20)
5
+
6
+
7
+ ### 🐛 Исправления
8
+
9
+ * обновление плагинов починено ([6b3c536](https://github.com/blockmineJS/blockmine/commit/6b3c5360c490dda43b0fd8cbf5b77a6c4d329543))
10
+
11
+
12
+ ### 🛠 Рефакторинг
13
+
14
+ * удалены отладочные сообщения и неиспользуемый код из компонента InstalledPluginsView ([1b41026](https://github.com/blockmineJS/blockmine/commit/1b410264d1e844c76404c047c4547e86199bbb27))
15
+
4
16
  ### [1.16.1](https://github.com/blockmineJS/blockmine/compare/v1.16.0...v1.16.1) (2025-07-20)
5
17
 
6
18
 
@@ -837,6 +837,7 @@ class BotManager {
837
837
  if (child && !child.killed) {
838
838
  child.send({ type: 'plugins:reload' });
839
839
  console.log(`[BotManager] Sent plugins:reload to bot process ${botId}`);
840
+ const { getIO } = require('../real-time/socketHandler');
840
841
  getIO().emit('bot:plugins_reloaded', { botId });
841
842
  return { success: true, message: 'Команда на перезагрузку плагинов отправлена.' };
842
843
  }