Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "ship-v0.6.11"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Two web-UI changes in
web/static/index.html.#196 — in-app confirm dialogs
Adds a
confirmdlg<dialog>and anaskConfirm(message)helper (Promise, modeled on the existingaskNamethat already replacedprompt()), and swaps all six nativeconfirm()calls — delete, trash purge, revoke share, revoke app password, peering revoke, peering remove — toawait askConfirm(...). All six sites were already insideasynchandlers.#185 — folder picker for Move
Adds a
pickdlg<dialog>+pickFolder({title, start})that navigates the caller's own tree (lists folders via/api/v1/files,..to go up, "Select this folder" to choose).moveItemnow opens the picker instead ofaskName-typing a destination path. Post-#177 the picker is naturally scoped to the caller's own home/spaces; legal holds on other users' data still take typed backend paths (the tracked #177 consequence).New i18n key
pickSelect(en/de/fr/it).Validation
One-shot:
node --checkon the edited inline script (verified classic-JS syntax before and after),go vet ./...,go test ./..., dual-arch build (embeds the new index.html). No Go changed.Closes #196. Closes #185.