mirror of
https://github.com/robweber/xbmcbackup.git
synced 2026-01-05 07:14:44 +01:00
Compare commits
4 Commits
matrix-1.7
...
gotham-0.6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b57a3c0c3 | ||
|
|
2dbc2fa71b | ||
|
|
31ea62c9bc | ||
|
|
7c740826c7 |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="script.xbmcbackup"
|
<addon id="script.xbmcbackup"
|
||||||
name="XBMC Backup" version="0.5.9" provider-name="robweber">
|
name="XBMC Backup" version="0.6.1" provider-name="robweber">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.14.0"/>
|
<import addon="xbmc.python" version="2.14.0"/>
|
||||||
</requires>
|
</requires>
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
Version 0.6.0
|
||||||
|
|
||||||
|
fix for growing backups - thanks brokeh
|
||||||
|
|
||||||
|
Version 0.6.0
|
||||||
|
|
||||||
|
fixed typo in Dropbox rmfile command
|
||||||
|
|
||||||
Version 0.5.9
|
Version 0.5.9
|
||||||
|
|
||||||
fixed dropbox unicode error
|
fixed dropbox unicode error
|
||||||
|
|||||||
@@ -551,12 +551,11 @@ class XbmcBackup:
|
|||||||
rFile.close()
|
rFile.close()
|
||||||
|
|
||||||
class FileManager:
|
class FileManager:
|
||||||
fileArray = []
|
|
||||||
not_dir = ['.zip','.xsp','.rar']
|
not_dir = ['.zip','.xsp','.rar']
|
||||||
vfs = None
|
|
||||||
|
|
||||||
def __init__(self,vfs):
|
def __init__(self,vfs):
|
||||||
self.vfs = vfs
|
self.vfs = vfs
|
||||||
|
self.fileArray = []
|
||||||
|
|
||||||
def walkTree(self,directory):
|
def walkTree(self,directory):
|
||||||
|
|
||||||
|
|||||||
@@ -195,7 +195,7 @@ class DropboxFileSystem(Vfs):
|
|||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def rmFile(self,aFile):
|
def rmfile(self,aFile):
|
||||||
aFile = self._fix_slashes(aFile)
|
aFile = self._fix_slashes(aFile)
|
||||||
if(self.client != None and self.exists(aFile)):
|
if(self.client != None and self.exists(aFile)):
|
||||||
self.client.file_delete(aFile)
|
self.client.file_delete(aFile)
|
||||||
|
|||||||
Reference in New Issue
Block a user