codeep 1.1.13 → 1.1.14
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/dist/renderer/main.js +2 -1
- package/package.json +1 -1
package/dist/renderer/main.js
CHANGED
|
@@ -1485,7 +1485,8 @@ Commands (in chat):
|
|
|
1485
1485
|
// Check project permissions
|
|
1486
1486
|
const isProject = isProjectDirectory(projectPath);
|
|
1487
1487
|
let hasRead = hasReadPermission(projectPath);
|
|
1488
|
-
|
|
1488
|
+
// Always ask for permission if not already granted (for both projects and regular folders)
|
|
1489
|
+
const needsPermissionDialog = !hasRead;
|
|
1489
1490
|
// If already has permission, load context
|
|
1490
1491
|
if (hasRead) {
|
|
1491
1492
|
hasWriteAccess = hasWritePermission(projectPath);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|