Skip to content

Commit

Permalink
[script.module.websocket] 0.59.0 (#2540)
Browse files Browse the repository at this point in the history
  • Loading branch information
L2501 authored Dec 2, 2023
1 parent a4f6960 commit aea0675
Show file tree
Hide file tree
Showing 18 changed files with 1,005 additions and 593 deletions.
11 changes: 0 additions & 11 deletions script.module.websocket/LICENSE

This file was deleted.

503 changes: 503 additions & 0 deletions script.module.websocket/LICENSE.txt

Large diffs are not rendered by default.

276 changes: 0 additions & 276 deletions script.module.websocket/README.rst

This file was deleted.

16 changes: 8 additions & 8 deletions script.module.websocket/addon.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.websocket" name="websocket library" version="0.57.0" provider-name="liris">
<addon id="script.module.websocket" name="websocket-client" version="0.59.0" provider-name="liris">
<requires>
<import addon="xbmc.python" version="2.26.0" />
<import addon="script.module.six" version="1.13.0" />
<import addon="script.module.backports.ssl_match_hostname" version="3.7.0.1" />
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<assets>
<icon>icon.png</icon>
</assets>
<summary lang="en_GB">websocket library repacked for Kodi</summary>
<source>https://github.com/pkscout/script.module.websocket</source>
<summary lang="en_GB">WebSocket client for Python with low level API options</summary>
<description lang="en_GB">WebSocket client for Python with low level API options</description>
<source>https://github.com/websocket-client/websocket-client</source>
<website>https://github.com/websocket-client/websocket-client</website>
<license>LGPL-2.1</license>
<platform>all</platform>
<license>BSD-3-Clause</license>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>
5 changes: 2 additions & 3 deletions script.module.websocket/lib/websocket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1335 USA
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""
from ._abnf import *
Expand All @@ -26,4 +25,4 @@
from ._logging import *
from ._socket import *

__version__ = "0.57.0"
__version__ = "0.59.0"
Loading

0 comments on commit aea0675

Please sign in to comment.