-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
307 additions
and
398 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Copyright 2010 Jason Kirtland | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.module.blinker" name="blinker" version="1.4.0+matrix.2" provider-name="Jason Kirtand"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0"/> | ||
</requires> | ||
<extension point="xbmc.python.module" library="lib" /> | ||
<extension point="xbmc.addon.metadata"> | ||
<platform>all</platform> | ||
<summary lang="en_GB">Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or signals</summary> | ||
<description lang="en_GB">Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or signals</description> | ||
<license>MIT</license> | ||
<website>https://pythonhosted.org/blinker/</website> | ||
<source>https://pypi.org/project/blinker/</source> | ||
<assets> | ||
<icon>icon.png</icon> | ||
</assets> | ||
</extension> | ||
<addon id="script.module.blinker" name="blinker" version="1.7.0" provider-name="Jason Kirtland"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0" /> | ||
</requires> | ||
<extension point="xbmc.python.module" library="lib" /> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">Fast, simple object-to-object and broadcast signaling</summary> | ||
<description lang="en_GB">Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals".</description> | ||
<license>MIT</license> | ||
<platform>all</platform> | ||
<website>https://blinker.readthedocs.io/</website> | ||
<source>https://github.com/pallets-eco/blinker/</source> | ||
<assets> | ||
<icon>resources/icon.png</icon> | ||
</assets> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
from blinker.base import ( | ||
ANY, | ||
NamedSignal, | ||
Namespace, | ||
Signal, | ||
WeakNamespace, | ||
receiver_connected, | ||
signal, | ||
) | ||
from blinker.base import ANY | ||
from blinker.base import NamedSignal | ||
from blinker.base import Namespace | ||
from blinker.base import receiver_connected | ||
from blinker.base import Signal | ||
from blinker.base import signal | ||
from blinker.base import WeakNamespace | ||
|
||
__all__ = [ | ||
'ANY', | ||
'NamedSignal', | ||
'Namespace', | ||
'Signal', | ||
'WeakNamespace', | ||
'receiver_connected', | ||
'signal', | ||
] | ||
"ANY", | ||
"NamedSignal", | ||
"Namespace", | ||
"Signal", | ||
"WeakNamespace", | ||
"receiver_connected", | ||
"signal", | ||
] | ||
|
||
|
||
__version__ = '1.4' | ||
__version__ = "1.7.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.