The Local Recovery Save command adds a Local Recovery Save entry to the Fusion File dropdown on the Quick Access Toolbar (QAT). When you select it, Fusion writes a local recovery checkpoint for the active document to disk without creating a new cloud version. This protects work in progress between formal saves.
In team environments, each cloud save can trigger out-of-date notifications for collaborators. Local Recovery Save lets you checkpoint local work frequently without generating that version noise.
| Capability | Details |
|---|---|
| Create a local recovery checkpoint | Writes a recovery file to disk for the active document |
| Avoid version increment | Does not create a new cloud version or notify collaborators |
| Quick access from the QAT | Available from the File dropdown on the Quick Access Toolbar |
- A Fusion design document must be open and active.
- This command delegates directly to Fusion's internal
AutoSaveFilesCommand. - It creates a local recovery checkpoint without creating a new cloud version.
Select Local Recovery Save from the File dropdown on the Quick Access Toolbar (QAT).
The Local Recovery Save command is a thin wrapper around Fusion's built-in AutoSaveFilesCommand. It registers a button control in the QAT File dropdown during add-in startup and delegates execution directly to the internal Fusion command on click.
PTND-autoSave
- The add-in registers the command definition and inserts a button after the Save as Latest control in the QAT File dropdown.
- The user selects Local Recovery Save.
- The
command_executehandler retrieves the internalAutoSaveFilesCommandcommand definition from the Fusion UI. AutoSaveFilesCommandis executed, writing the local recovery checkpoint.
C4Component
title Local Recovery Save – Component Architecture
Person(user, "Designer", "Fusion user working on a design")
Component(addin, "PowerTools Add-In", "Python, Fusion API", "Hosts and registers all PowerTools commands")
Component(cmd, "Local Recovery Save", "autosave/entry.py", "Registers QAT button control and delegates to Fusion on execute")
Component(fusion, "AutoSaveFilesCommand", "Fusion Internal API", "Writes local recovery checkpoint to disk")
Rel(user, addin, "Loads add-in on Fusion start")
Rel(addin, cmd, "Calls start() – registers button in QAT File dropdown")
Rel(user, cmd, "Clicks Local Recovery Save in QAT File menu")
Rel(cmd, fusion, "Executes AutoSaveFilesCommand")
Copyright © 2026 IMA LLC. All rights reserved.
