Release ForgeFlow 0.5.2

This commit is contained in:
NuklearRabbit
2026-07-25 01:07:54 +02:00
parent 602309b203
commit cf1f67a823
23 changed files with 550 additions and 72 deletions
+4
View File
@@ -62,6 +62,10 @@ contextBridge.exposeInMainWorld('forgeflow', Object.freeze({
stash: (localPath, message) => invoke('repository:stash', { localPath, message }),
stashList: (localPath) => invoke('repository:stash-list', { localPath }),
popStash: (localPath, ref) => invoke('repository:stash-pop', { localPath, ref }),
indexLockInfo: (localPath) => invoke('repository:index-lock', { localPath }),
repairIndexLock: (localPath) => invoke('repository:repair-index-lock', { localPath }),
setOrigin: (localPath, remoteUrl) => invoke('repository:set-origin', { localPath, remoteUrl }),
normalizeOrigins: () => invoke('repositories:normalize-origins'),
cloneRepository: (fullName, mode = 'default') => invoke('repository:clone', { fullName, mode }),
openPath: (localPath) => invoke('repository:open-path', { localPath }),
openExternal: (url) => invoke('external:open', { url }),