2 Commits

Author SHA1 Message Date
Rob Weber
5b57a3c0c3 added fix from helix 2015-05-08 19:52:39 -05:00
Andrew Brock
2dbc2fa71b Fix zip files getting an extra copy of each file on each run of the scheduler 2015-05-08 19:51:11 -05:00
3 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmcbackup"
name="XBMC Backup" version="0.6.0" provider-name="robweber">
name="XBMC Backup" version="0.6.1" provider-name="robweber">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>

View File

@@ -1,5 +1,9 @@
Version 0.6.0
fix for growing backups - thanks brokeh
Version 0.6.0
fixed typo in Dropbox rmfile command
Version 0.5.9

View File

@@ -551,12 +551,11 @@ class XbmcBackup:
rFile.close()
class FileManager:
fileArray = []
not_dir = ['.zip','.xsp','.rar']
vfs = None
def __init__(self,vfs):
self.vfs = vfs
self.fileArray = []
def walkTree(self,directory):