Skip to content

Commit

Permalink
Merge pull request #21 from smitchell6879/Testing-SF
Browse files Browse the repository at this point in the history
031118
  • Loading branch information
smitchell6879 committed Mar 13, 2018
2 parents 0786ef5 + e2bd6d7 commit 219bb9f
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
== Release Beta 2.0.7 (031118) ==
* Fixed: Home playall item to play first item in playlist
* Fixed: Database Cleaner
* Fixed: General bugfixes

== Release Beta 2.0.6 (031018) ==
* Fixed: Home screen support for context menu, widget and video info
* Fixed: CPU load issues
Expand Down
2 changes: 1 addition & 1 deletion addon.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.specialfeatures"
version="2.0.5"
version="2.0.7"
name="Special Features"
provider-name="smitchell6879, evertiro">
<requires>
Expand Down
26 changes: 25 additions & 1 deletion lib/iteration.py
Expand Up @@ -285,17 +285,41 @@ def detchDb(self):
self.cst = 1
bgdc(lang(30000),lang(30053))
self.trAsh = list()
self.chkList = list()
self.query = 'movies'
self.query2 = 'tvshows'
self.result = QUERY().router(self.query)
self.result2 = QUERY().router(self.query2)
self.index = 0
try:
for self.item in self.result['result']['{}'.format(self.query)]:
self.chkList.append(self.item.get('file'))
self.index += 1
except:
info('No Movies')
try:
for self.item in self.result2['result']['{}'.format(self.query2)]:
self.chkList.append(self.item.get('file'))
self.index += 1
except:
info('No TV Shows')
self.range = len(self.chkList)
info(self.chkList)
info(self.range)
self.entry = self.sql.exeCute('all_special','','all')
for self.item in self.entry:
if mysql == 'true':
# self.verify = self.verIfy(self.item['file'])
self.verify = self.verIfy(self.item['bpath'])
if self.verify == 0:
self.trAsh.append(self.item['bpath'])
if not self.item['file'] in self.chkList:
self.trAsh.append(self.item['bpath'])
else:
self.verify = self.verIfy(self.item[2])
if self.verify == 0:
self.trAsh.append(self.item[2])
if not self.item[0] in self.chkList:
self.trAsh.append(self.item[2])
for self.item in self.trAsh:
self.sql.exeCute('d_special2',self.item,'com2')
self.trAsh = list()
Expand Down
Binary file modified lib/iteration.pyo
Binary file not shown.
Binary file modified lib/querylib.pyo
Binary file not shown.
Binary file modified lib/sys_init.pyo
Binary file not shown.

0 comments on commit 219bb9f

Please sign in to comment.