From 460c5d1e793d0f0bae1b33256921f382a7258f34 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 31 May 2025 20:53:29 +0200 Subject: [PATCH] Add notification on repo update --- main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main.js b/main.js index 6f1707f..961f939 100644 --- a/main.js +++ b/main.js @@ -538,6 +538,7 @@ async function rewordCommitsSequentially(repoPath, commitMessageMap, hashes) { console.log(`[AutoGit] Reworded commit ${hash} ✔`); } console.log('[AutoGit] All specified commit messages updated!'); + win.webContents.send('repo-updated', folder); } //---- 6. Workflow ----