Merge pull request #7080 from emveepee/nextpvr-6.1.1.nexus

[le11] nextpvr: update to 6.1.1
This commit is contained in:
Rudi Heitbaum 2022-11-07 10:49:41 +11:00 committed by GitHub
commit 06a6d1789a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 4 deletions

View File

@ -1,2 +1,5 @@
101
- Clean up after dtv scan table download
- Update to new NextPVR version
100 100
- Initial release - Initial release

View File

@ -2,9 +2,9 @@
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="nextpvr" PKG_NAME="nextpvr"
PKG_VERSION="6.1.0~Nexus" PKG_VERSION="6.1.1~Nexus"
PKG_ADDON_VERSION="6.1.0" PKG_ADDON_VERSION="6.1.1"
PKG_REV="100" PKG_REV="101"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="prop." PKG_LICENSE="prop."
PKG_SITE="https://nextpvr.com" PKG_SITE="https://nextpvr.com"

View File

@ -51,7 +51,8 @@ class Controller():
for folder in SCANTABLES: for folder in SCANTABLES:
shutil.copytree(os.path.join(temp_folder, folder), os.path.join(dest_folder, folder)) shutil.copytree(os.path.join(temp_folder, folder), os.path.join(dest_folder, folder))
if os.path.exists(temp_folder): shutil.rmtree(temp_folder)
os.remove(archive)
xbmcgui.Dialog().notification(ADDON_NAME, LS(30039), xbmcgui.NOTIFICATION_INFO) xbmcgui.Dialog().notification(ADDON_NAME, LS(30039), xbmcgui.NOTIFICATION_INFO)
except URLError as e: except URLError as e:
xbmc.log('Could not download file: %s' % e.reason, xbmc.LOGERROR) xbmc.log('Could not download file: %s' % e.reason, xbmc.LOGERROR)