mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-14 20:35:48 +01:00
added new icon file as well as updated README information for usage
This commit is contained in:
parent
b307ceed57
commit
79f205dfb4
17
README.txt
17
README.txt
@ -0,0 +1,17 @@
|
||||
XBMC Backup
|
||||
|
||||
About:
|
||||
I've had to recover my database, thumbnails, and source configuration enough times that I just wanted a quick easy way to back them up. That is what this addon is meant to do.
|
||||
|
||||
Usage:
|
||||
|
||||
In the addon settings you can define a remote path for the destination of your xbmc files. You must also include a backup folder name, all of your files will be in this folder once the backup runs.
|
||||
|
||||
On the Backup Selection page you can select which items from your user profile folder will be sent to the backup location. By default all are turned on except the Addon Data directory.
|
||||
|
||||
What this Addon Will Not Do:
|
||||
|
||||
This is not meant as an XBMC file sync solution. If you have multiple frontends you want to keep in sync this addon may work in a "poor man's" sort of way but it is not intended for that.
|
||||
|
||||
Your remote folder will not be "pruned" of files you have deleted. Mostly this is due to limitations with the xbmcvfs python module, it cannot list files, only tell if they exist. This behavior may change in the future but right now it is up to you to remove obsolete items from the remote path. The easiest way is to just delete the remote folder before doing a full backup.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="script.xbmcbackup"
|
||||
name="XBMC Profile Backup" version="0.0.1" provider-name="robweber">
|
||||
name="XBMC Backup" version="0.0.2" provider-name="robweber">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.0"/>
|
||||
</requires>
|
||||
@ -8,8 +8,8 @@
|
||||
<provides>executable</provides>
|
||||
</extension>
|
||||
<extension point="xbmc.addon.metadata">
|
||||
<summary lang="en"></summary>
|
||||
<description lang="en"></description>
|
||||
<summary lang="en">Backup your XBMC database and configuration files before an upgrade or in the even of a crash.</summary>
|
||||
<description lang="en">Ever hosed your XBMC configuration and wished you'd had a backup? Now you can with one easy click. You can export your database, playlist, thumbnails, addons and other configuration details to any source writeable by XBMC.</description>
|
||||
<platform>all</platform>
|
||||
</extension>
|
||||
</addon>
|
||||
|
@ -0,0 +1,3 @@
|
||||
[b]Version 0.0.2[/b]
|
||||
|
||||
First version, should backup directories as needed
|
Loading…
Reference in New Issue
Block a user