打包好的livecode,版本v-46

This commit is contained in:
yangxin
2025-06-11 22:23:49 +08:00
commit 1214258379
1323 changed files with 133464 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
# Backup / Restore
LiveCodes data can be backed-up, so that it can be later restored on the same or different device.
The Backup/Restore screen can be accessed from the Settings menu → Backup / Restore.
import RunInLiveCodes from '../../src/components/RunInLiveCodes.tsx';
<RunInLiveCodes params={{ screen: 'backup' }} linkText="direct link" />
## Backup
![LiveCode Backup](../../static/img/screenshots/backup-restore-1.jpg)
The backup can include one or more of the following:
- [Projects](./projects.html.md)
- [User Templates](./templates.html.md)
- [Code Snippets](./snippets.html.md)
- [Assets](./assets.html.md)
- [User Settings](./user-settings.html.md)
A zip file containing the (base64-encoded binary) backup data is downloaded. This file can be restored later on the same or different device.
## Restore
![LiveCode Restore](../../static/img/screenshots/backup-restore-2.jpg)
When restoring a backup, there are 2 options for managing the current data:
1. The current data can be deleted and replaced by the backup data. It cannot then be retrieved, so you may want to back it up first.
2. The backup data can be merged with the current data with best effort to preserve both.
## Related
- [Sync](./sync.html.md)
- [Export](./export.html.md)