opencode-pollinations-plugin 6.1.0-beta.30 → 6.1.0-beta.31
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.
|
@@ -74,7 +74,10 @@ Use 'action=update' to change these. NEVER confuse Chat Mode with Tools Protecti
|
|
|
74
74
|
saveConfig(updates);
|
|
75
75
|
const newConfig = loadConfig();
|
|
76
76
|
if (newConfig.statusBar) {
|
|
77
|
-
const changedDetails = Object.keys(updates).map(k =>
|
|
77
|
+
const changedDetails = Object.keys(updates).map(k => {
|
|
78
|
+
const val = updates[k];
|
|
79
|
+
return `${k}=${typeof val === 'object' ? JSON.stringify(val) : val}`;
|
|
80
|
+
}).join(", ");
|
|
78
81
|
let toastMsg = "⚙️ Configuration modifiée par l'Agent";
|
|
79
82
|
if (changedDetails.length > 0) {
|
|
80
83
|
toastMsg += ` (${changedDetails})`;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-pollinations-plugin",
|
|
3
3
|
"displayName": "Pollinations AI (V5.9)",
|
|
4
|
-
"version": "6.1.0-beta.
|
|
4
|
+
"version": "6.1.0-beta.31",
|
|
5
5
|
"description": "Native Pollinations.ai Provider Plugin for OpenCode",
|
|
6
6
|
"publisher": "pollinations",
|
|
7
7
|
"repository": {
|