mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-14 20:35:48 +01:00
Version 1.6.3 - fix validatePath error (issue 166) (#167)
This commit is contained in:
parent
55b2ac83d4
commit
c9dd381037
@ -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="Backup" version="1.6.2" provider-name="robweber">
|
name="Backup" version="1.6.3" provider-name="robweber">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="3.0.0"/>
|
<import addon="xbmc.python" version="3.0.0"/>
|
||||||
<import addon="script.module.dateutil" version="2.8.0" />
|
<import addon="script.module.dateutil" version="2.8.0" />
|
||||||
@ -89,7 +89,9 @@
|
|||||||
<screenshot>resources/images/screenshot3.jpg</screenshot>
|
<screenshot>resources/images/screenshot3.jpg</screenshot>
|
||||||
<screenshot>resources/images/screenshot4.jpg</screenshot>
|
<screenshot>resources/images/screenshot4.jpg</screenshot>
|
||||||
</assets>
|
</assets>
|
||||||
<news>Version 1.6.2
|
<news>Version 1.6.3
|
||||||
|
- fixed validatePath error (issue #166)
|
||||||
|
Version 1.6.2
|
||||||
- replaced PNG screenshots with JPG
|
- replaced PNG screenshots with JPG
|
||||||
Version 1.6.1
|
Version 1.6.1
|
||||||
- added file transfer size to progress bar
|
- added file transfer size to progress bar
|
||||||
|
@ -571,7 +571,7 @@ class FileManager:
|
|||||||
if(recurse):
|
if(recurse):
|
||||||
# create all the subdirs first
|
# create all the subdirs first
|
||||||
for aDir in dirs:
|
for aDir in dirs:
|
||||||
dirPath = xbmc.validatePath(xbmc.translatePath(directory + self.pathSep + aDir))
|
dirPath = xbmcvfs.validatePath(xbmc.translatePath(directory + self.pathSep + aDir))
|
||||||
file_ext = aDir.split('.')[-1]
|
file_ext = aDir.split('.')[-1]
|
||||||
|
|
||||||
# check if directory is excluded
|
# check if directory is excluded
|
||||||
|
Loading…
Reference in New Issue
Block a user