diff options
| -rw-r--r-- | Changelog | 4 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rwxr-xr-x | beinc_generic_client.py | 4 | ||||
| -rwxr-xr-x | beinc_pull.py | 4 | ||||
| -rwxr-xr-x | beinc_server.py | 4 | ||||
| -rw-r--r-- | beinc_weechat.py | 4 |
6 files changed, 13 insertions, 9 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | v4.3: | ||
| 2 | - remove obsolete SSL/TLS code | ||
| 3 | - use black alike coding style | ||
| 4 | |||
| 1 | v4.1: | 5 | v4.1: |
| 2 | - re-raise exceptions properly | 6 | - re-raise exceptions properly |
| 3 | - fix error when using Python 3.9 due to removed 'encoding' parameter | 7 | - fix error when using Python 3.9 due to removed 'encoding' parameter |
| @@ -1,4 +1,4 @@ | |||
| 1 | Copyright (C) 2014-2020 - Simeon Simeonov | 1 | Copyright (C) 2014-2022 - Simeon Simeonov |
| 2 | See the end of the file for license conditions. | 2 | See the end of the file for license conditions. |
| 3 | 3 | ||
| 4 | 4 | ||
diff --git a/beinc_generic_client.py b/beinc_generic_client.py index af1e74f..476287e 100755 --- a/beinc_generic_client.py +++ b/beinc_generic_client.py | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
| 2 | # -*- coding: utf-8 -*- | 2 | # -*- coding: utf-8 -*- |
| 3 | 3 | ||
| 4 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 | 4 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3 |
| 5 | # Copyright (C) 2013-2022 Simeon Simeonov | 5 | # Copyright (C) 2013-2022 Simeon Simeonov |
| 6 | 6 | ||
| 7 | # This program is free software: you can redistribute it and/or modify | 7 | # This program is free software: you can redistribute it and/or modify |
| @@ -30,7 +30,7 @@ import urllib.parse | |||
| 30 | import urllib.request | 30 | import urllib.request |
| 31 | 31 | ||
| 32 | __author__ = 'Simeon Simeonov' | 32 | __author__ = 'Simeon Simeonov' |
| 33 | __version__ = '4.2' | 33 | __version__ = '4.3' |
| 34 | __license__ = 'GPL3' | 34 | __license__ = 'GPL3' |
| 35 | 35 | ||
| 36 | 36 | ||
diff --git a/beinc_pull.py b/beinc_pull.py index 67b6e63..118a08a 100755 --- a/beinc_pull.py +++ b/beinc_pull.py | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
| 2 | # -*- coding: utf-8 -*- | 2 | # -*- coding: utf-8 -*- |
| 3 | 3 | ||
| 4 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 | 4 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3 |
| 5 | # Copyright (C) 2013-2022 Simeon Simeonov | 5 | # Copyright (C) 2013-2022 Simeon Simeonov |
| 6 | 6 | ||
| 7 | # This program is free software: you can redistribute it and/or modify | 7 | # This program is free software: you can redistribute it and/or modify |
| @@ -38,7 +38,7 @@ except ImportError: | |||
| 38 | 38 | ||
| 39 | 39 | ||
| 40 | __author__ = 'Simeon Simeonov' | 40 | __author__ = 'Simeon Simeonov' |
| 41 | __version__ = '4.2' | 41 | __version__ = '4.3' |
| 42 | __license__ = 'GPL3' | 42 | __license__ = 'GPL3' |
| 43 | 43 | ||
| 44 | 44 | ||
diff --git a/beinc_server.py b/beinc_server.py index 77aa35e..a105801 100755 --- a/beinc_server.py +++ b/beinc_server.py | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
| 2 | # -*- coding: utf-8 -*- | 2 | # -*- coding: utf-8 -*- |
| 3 | 3 | ||
| 4 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 | 4 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3 |
| 5 | # Copyright (C) 2013-2022 Simeon Simeonov | 5 | # Copyright (C) 2013-2022 Simeon Simeonov |
| 6 | 6 | ||
| 7 | # This program is free software: you can redistribute it and/or modify | 7 | # This program is free software: you can redistribute it and/or modify |
| @@ -38,7 +38,7 @@ except ImportError: | |||
| 38 | 38 | ||
| 39 | 39 | ||
| 40 | __author__ = 'Simeon Simeonov' | 40 | __author__ = 'Simeon Simeonov' |
| 41 | __version__ = '4.2' | 41 | __version__ = '4.3' |
| 42 | __license__ = 'GPL3' | 42 | __license__ = 'GPL3' |
| 43 | 43 | ||
| 44 | 44 | ||
diff --git a/beinc_weechat.py b/beinc_weechat.py index 2288b74..b3550d8 100644 --- a/beinc_weechat.py +++ b/beinc_weechat.py | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
| 2 | 2 | ||
| 3 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.0 | 3 | # Blackmore's Enhanced IRC-Notification Collection (BEINC) v4.3 |
| 4 | # Copyright (C) 2013-2022 Simeon Simeonov | 4 | # Copyright (C) 2013-2022 Simeon Simeonov |
| 5 | 5 | ||
| 6 | # This program is free software: you can redistribute it and/or modify | 6 | # This program is free software: you can redistribute it and/or modify |
| @@ -28,7 +28,7 @@ import urllib.request | |||
| 28 | import weechat | 28 | import weechat |
| 29 | 29 | ||
| 30 | __author__ = 'Simeon Simeonov' | 30 | __author__ = 'Simeon Simeonov' |
| 31 | __version__ = '4.2' | 31 | __version__ = '4.3' |
| 32 | __license__ = 'GPL3' | 32 | __license__ = 'GPL3' |
| 33 | 33 | ||
| 34 | 34 | ||
