Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[script.module.websocket@leia] 0.59.0 #2540

Merged
merged 1 commit into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading