Skip to content

Commit

Permalink
[plugin.library.node.editor] 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
enen92 committed Jan 7, 2020
1 parent 58c6c5f commit f8aaaa8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.library.node.editor" name="Library Node Editor" version="1.0.10" provider-name="Unfledged, Team-Kodi">
<addon id="plugin.library.node.editor" name="Library Node Editor" version="1.0.11" provider-name="Unfledged, Team-Kodi">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.unidecode" version="0.4.16"/>
Expand Down Expand Up @@ -41,7 +41,7 @@
<icon>icon.png</icon>
</assets>
<news>
1.0.10 (5/1/2020)
1.0.11 (7/1/2020)
- Fixes parent nodes
</news>
</extension>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.0.11 (7/1/2020)
- Fixes parent nodes

1.0.10 (5/1/2020)
- Fixes parent nodes

Expand Down
2 changes: 1 addition & 1 deletion resources/lib/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def newNodeRule( self, actionPath, ruleNum ):

#def editNodeRule( self, actionPath, originalRule, newRule ):
def editNodeRule( self, actionPath, ruleNum, match, operator, value ):
( filePath, fileName ) = os.path.split( actionPath )
( filePath, fileName ) = os.path.split( unquote(actionPath) )
# Update the rule in the rules file
if self.ltype.startswith('video'):
rulesfile = 'videorules.xml'
Expand Down

0 comments on commit f8aaaa8

Please sign in to comment.