Files
q-edit/docs/RELEASE_NOTES_v0.6.1.md
2025-09-02 18:43:09 -04:00

22 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Q-Edit v0.6.1 — Release Notes
**Date:** 2025-08-23
## Overview
This patch release fixes delete/overwrite publishing. Clicking the red X to “delete” an item now reliably publishes a minimal blank file, preventing a misleading disk-space error surfaced by the hub preflight check.
## Fixes
- **Delete publish:** Replaces 0-byte payload with a minimal 1-byte file to satisfy the hubs `/arbitrary/check/tmp?totalSize=...` preflight. This avoids the erroneous “Not enough space on your hard drive” message and completes the overwrite as intended.
- **Behavior preserved:** The resource is still effectively blanked (single newline), matching the apps “replace with a blank file” intent.
## Technical Notes
- The hub code rejects `totalSize=0` during chunked uploads. Q-Edit now sends a 1-byte `Blob` in delete mode so chunking and finalize proceed normally.
- No changes to the edit flow or metadata prompts; delete continues to clear optional metadata fields as before.
## Known
- Future improvement: allow base64 delete path to bypass chunking entirely. Current fix is minimal, robust, and backward-compatible.