diff --git a/README.txt b/README.txt index e69de29..81120f6 100644 --- a/README.txt +++ b/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. + diff --git a/addon.xml b/addon.xml index 1b776a5..7c6bcf0 100644 --- a/addon.xml +++ b/addon.xml @@ -1,6 +1,6 @@ + name="XBMC Backup" version="0.0.2" provider-name="robweber"> @@ -8,8 +8,8 @@ executable - - + Backup your XBMC database and configuration files before an upgrade or in the even of a crash. + 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. all diff --git a/changelog.txt b/changelog.txt index e69de29..c28aea7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -0,0 +1,3 @@ +[b]Version 0.0.2[/b] + +First version, should backup directories as needed diff --git a/icon.jpg b/icon.jpg new file mode 100644 index 0000000..7f8f39c Binary files /dev/null and b/icon.jpg differ