Skip to content

Commit

Permalink
3.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
anxdpanic committed Nov 27, 2017
1 parent 4759846 commit 623923d
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 824 deletions.
3 changes: 1 addition & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.playthis"
name="PlayThis"
version="3.4.5"
version="3.4.6"
provider-name="anxdpanic">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
Expand All @@ -14,7 +14,6 @@
</extension>
<extension point="xbmc.addon.metadata">
<news>
- fix resolving urls with spaces
</news>
<assets>
<icon>icon.png</icon>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
3.4.6
- cosmetic

3.4.5
- fix resolving urls with spaces

Expand Down
5 changes: 3 additions & 2 deletions resources/lib/addon_lib/cache.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
tknorris shared module
Copyright (C) 2016 tknorris
Copyright (C) 2015 tknorris
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -15,6 +15,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""

import functools
import log_utils
import time
Expand Down
2 changes: 0 additions & 2 deletions resources/lib/addon_lib/kodi.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""
Original Source can be found included in the original_sources/ directory
SALTS XBMC Addon
Copyright (C) 2015 tknorris
This program is free software: you can redistribute it and/or modify
Expand Down
19 changes: 14 additions & 5 deletions resources/lib/addon_lib/log_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
"""
Original Source can be found included in the original_sources/ directory
Copyright (C) 2015 tknorris
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""

import time
Expand All @@ -11,10 +24,6 @@


def log(msg, level=LOGDEBUG):
# override message level to force logging when addon logging turned on
if kodi.get_setting('addon_debug') == 'true' and level == LOGDEBUG:
level = LOGNOTICE

try:
if isinstance(msg, unicode):
msg = '%s (ENCODED)' % msg.encode('utf-8')
Expand Down
339 changes: 0 additions & 339 deletions resources/lib/addon_lib/original_sources/LICENSE.txt

This file was deleted.

124 changes: 0 additions & 124 deletions resources/lib/addon_lib/original_sources/cache.py

This file was deleted.

Loading

0 comments on commit 623923d

Please sign in to comment.