codeep 1.2.6 → 1.2.8
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/App.js +7 -4
- package/package.json +1 -1
package/dist/renderer/App.js
CHANGED
|
@@ -1189,14 +1189,17 @@ export class App {
|
|
|
1189
1189
|
logoutProviders: this.logoutProviders,
|
|
1190
1190
|
logoutCallback: this.logoutCallback,
|
|
1191
1191
|
};
|
|
1192
|
+
const syncState = () => {
|
|
1193
|
+
this.logoutOpen = state.logoutOpen;
|
|
1194
|
+
this.logoutIndex = state.logoutIndex;
|
|
1195
|
+
this.logoutCallback = state.logoutCallback;
|
|
1196
|
+
};
|
|
1192
1197
|
handleLogoutKeyComponent(event, state, {
|
|
1193
1198
|
onClose: () => { },
|
|
1194
|
-
onRender: () => this.render(),
|
|
1199
|
+
onRender: () => { syncState(); this.render(); },
|
|
1195
1200
|
onSelect: () => { },
|
|
1196
1201
|
});
|
|
1197
|
-
|
|
1198
|
-
this.logoutIndex = state.logoutIndex;
|
|
1199
|
-
this.logoutCallback = state.logoutCallback;
|
|
1202
|
+
syncState();
|
|
1200
1203
|
}
|
|
1201
1204
|
/**
|
|
1202
1205
|
* Handle login keys
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
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",
|