You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(settings): Introduce the "auto-approve request count" feature from Cline
This is the first minor UI feature I've added, so please let me know if I'm missing anything! (translations, organization, etc!)
Please see commits for details
introduce allowedMaxRequests to globalSettingsSchema
update ExtensionState and its context with allowedMaxRequests
implement UI for setting max requests in AutoApproveMenu component
prompt user when auto-approval limit is reached with i18n support
increment consecutiveAutoApprovedRequestsCount and reset upon user approval
add translations for auto-approved request limit reached prompt in multiple languages
add new UI for "auto_approval_max_req_reached" in ChatRowContent
display prompt with title, description, and button for user action
🔧 chore(gitignore): add .idea to .gitignore to exclude IDE-specific files
- remove .idea/workspace.xml to clean up repository
Copy file name to clipboardExpand all lines: src/i18n/locales/ca/common.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,5 +96,12 @@
96
96
"groqApiKey": "Clau API de Groq",
97
97
"getGroqApiKey": "Obté la clau API de Groq"
98
98
}
99
+
},
100
+
"ask": {
101
+
"autoApprovedRequestLimitReached": {
102
+
"title": "Límit de Sol·licituds Aprovades Automàticament Assolit",
103
+
"description": "Roo ha assolit el límit de {{count}} sol·licituds d'API aprovades automàticament. Vols restablir el comptador i continuar amb la tasca?",
Copy file name to clipboardExpand all lines: src/i18n/locales/de/common.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,5 +96,12 @@
96
96
"groqApiKey": "Groq API-Schlüssel",
97
97
"getGroqApiKey": "Groq API-Schlüssel erhalten"
98
98
}
99
+
},
100
+
"ask": {
101
+
"autoApprovedRequestLimitReached": {
102
+
"title": "Limit für automatisch genehmigte Anfragen erreicht",
103
+
"description": "Roo hat das Limit von {{count}} automatisch genehmigten API-Anfragen erreicht. Möchten Sie den Zähler zurücksetzen und mit der Aufgabe fortfahren?",
0 commit comments