author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
105,979 | 13.10.2017 18:21:51 | -7,200 | b8c25c767f4076b6274a5882a99d70282695dfd3 | fix(profiles): Fixes unicode error | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -600,8 +600,8 @@ class KodiHelper:\n\"\"\"\nfor profile in profiles:\nurl = build_url({'action': action, 'profile_id': profile['id']})\n- url_save_autologin = build_url({'acti... | Python | MIT License | castagnait/plugin.video.netflix | fix(profiles): Fixes unicode error |
105,979 | 14.10.2017 18:21:30 | -7,200 | d384d338c6753a0b7a77053beaaa62c5459991bd | chore(perf): Avoids redundant login check request at each call | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -25,6 +25,12 @@ try:\nimport cPickle as pickle\nexcept:\nimport pickle\n+try:\n+ # Python 2.6-2.7\n+ from HTMLParser import HTMLParser\n+except ImportError:\n+ # Python 3\n+ f... | Python | MIT License | castagnait/plugin.video.netflix | chore(perf): Avoids redundant login check request at each call |
105,979 | 14.10.2017 20:32:30 | -7,200 | 58677be9d1867313f185e99b1e1b11104c6d0389 | chore(performance): Load cookies from memory if available | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixHttpRequestHandler.py",
"new_path": "resources/lib/NetflixHttpRequestHandler.py",
"diff": "# Module: NetflixHttpRequestHandler\n# Created on: 07.03.2017\n-import BaseHTTPServer\nimport json\n+import BaseHTTPServer\nfrom types import Functi... | Python | MIT License | castagnait/plugin.video.netflix | chore(performance): Load cookies from memory if available |
105,979 | 15.10.2017 11:54:54 | -7,200 | 16436f82e83411ababac838301401bc3fd143101 | refactor(NetflixHttpRequestHandler): Tiny improvements | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/MSLHttpRequestHandler.py",
"new_path": "resources/lib/MSLHttpRequestHandler.py",
"diff": "# Module: MSLHttpRequestHandler\n# Created on: 26.01.2017\n-import BaseHTTPServer\nimport base64\n+import BaseHTTPServer\nfrom urlparse import urlparse, par... | Python | MIT License | castagnait/plugin.video.netflix | refactor(NetflixHttpRequestHandler): Tiny improvements |
105,979 | 15.10.2017 22:07:57 | -7,200 | f41e8acb8af5fe99384a8c133f429923e8ac23d1 | fix(play): Check for maturity | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -82,7 +82,9 @@ class Navigation(object):\nif self.kodi_helper.get_setting ('autologin_enable') == 'true':\nprofile_id = self.kodi_helper.get_setting ('autologin_id')\nif profi... | Python | MIT License | castagnait/plugin.video.netflix | fix(play): Check for maturity |
105,979 | 16.10.2017 15:34:08 | -7,200 | f6f693ee8348352e4d87ed8ff92dab8a2d4eebe8 | refctor(Dialogs): Moves all dialog ui related methods into their own subclass | [
{
"change_type": "MODIFY",
"old_path": "makefile",
"new_path": "makefile",
"diff": "@@ -10,10 +10,11 @@ COVERAGE_FILE = ./.coverage\nCOVERAGE_DIR = ./coverage\nREPORT_DIR = ./report\nDOCS_DIR = ./docs\n-FLAKE_FILES = ./addon.py ./service.py ./setup.py ./resources/lib/utils.py ./resources/lib/MSLHttp... | Python | MIT License | castagnait/plugin.video.netflix | refctor(Dialogs): Moves all dialog ui related methods into their own subclass |
106,021 | 19.10.2017 10:06:10 | 14,400 | 84dce43ba513feb24ff501640c6886875f3c594c | Fixed parsing and decryption of chunked responses | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/MSL.py",
"new_path": "resources/lib/MSL.py",
"diff": "@@ -13,6 +13,7 @@ import json\nimport time\nimport base64\nimport random\n+import re\nfrom Cryptodome.Random import get_random_bytes\nfrom Cryptodome.Hash import HMAC, SHA256\nfrom Cryptodome.... | Python | MIT License | castagnait/plugin.video.netflix | Fixed parsing and decryption of chunked responses |
105,979 | 21.10.2017 12:55:22 | -7,200 | a22fdfa4ccc1d6fba9632e6f3d97edab4c867f90 | fix(NetflixSession): Unconvertable expires key | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -238,6 +238,7 @@ class NetflixSession(object):\nfor domains in cookies[0]:\nfor domain in cookies[0][domains].keys():\nfor cookie_key in cookies[0][domains][domain]:\n... | Python | MIT License | castagnait/plugin.video.netflix | fix(NetflixSession): Unconvertable expires key |
105,979 | 21.10.2017 13:02:08 | -7,200 | 312e65511ad423aefb423a200e9bf5ddab0f169c | fix(paths): Use xbmcvfs to store & acces data in the fs | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/MSL.py",
"new_path": "resources/lib/MSL.py",
"diff": "# Created on: 26.01.2017\n# License: MIT https://goo.gl/5bMj3H\n-import os\n+import re\nimport sys\nimport zlib\nimport gzip\n@@ -13,7 +13,6 @@ import json\nimport time\nimport base64\nimport ... | Python | MIT License | castagnait/plugin.video.netflix | fix(paths): Use xbmcvfs to store & acces data in the fs |
105,979 | 21.10.2017 13:27:24 | -7,200 | ca4ce810314c022f7fbc6d78bd2368a0db6a3190 | fix(login): Fixes issues with login not working | [
{
"change_type": "MODIFY",
"old_path": "makefile",
"new_path": "makefile",
"diff": "@@ -10,11 +10,11 @@ COVERAGE_FILE = ./.coverage\nCOVERAGE_DIR = ./coverage\nREPORT_DIR = ./report\nDOCS_DIR = ./docs\n-FLAKE_FILES = ./addon.py ./service.py ./setup.py ./resources/lib/utils.py ./resources/lib/MSLHttp... | Python | MIT License | castagnait/plugin.video.netflix | fix(login): Fixes issues with login not working |
105,979 | 21.10.2017 13:53:46 | -7,200 | 2c5511f31f2bc8c51e3cc8e79af31b0384a2432b | fix(NetflixSession): Fix quality indicator check | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.12.3\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | fix(NetflixSession): Fix quality indicator check |
106,018 | 23.10.2017 21:25:28 | -7,200 | 5e8966eb69f8889c3558f33f45f2d4ba41c0a723 | fix search and exported on user main menu | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -64,7 +64,7 @@ class Navigation(object):\n\"\"\"\nparams = self.parse_paramters(paramstring=paramstring)\naction = params.get('action', None)\n- p_type = params.get('action', ... | Python | MIT License | castagnait/plugin.video.netflix | fix search and exported on user main menu |
106,018 | 24.10.2017 00:28:29 | -7,200 | a7fe779c2233a77812890cecb134f8b143f8907e | fix missing dialogs link | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -168,7 +168,7 @@ class Navigation(object):\nreturn self.kodi_helper.refresh()\nelif action == 'removeexported':\n# adds a title to the users list on Netflix\n- term = self.kod... | Python | MIT License | castagnait/plugin.video.netflix | fix missing dialogs link |
105,979 | 24.10.2017 14:42:19 | -7,200 | 7cb916204e129b390d77e6a8cacaa56fa84bc7bd | fix(search): Adapt new Netflix search API | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -638,7 +638,7 @@ class KodiHelper(object):\n'action': actions[video['type']],\n'show_id': video_list_id\n}\n- params['pin'] = (True, False)[int(video['maturity']['level']) >= ... | Python | MIT License | castagnait/plugin.video.netflix | fix(search): Adapt new Netflix search API |
105,983 | 24.10.2017 15:28:50 | -7,200 | 0fbe3bb5e7acabe73f963b337c218876abe90255 | Fix assistive audio streams | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/MSL.py",
"new_path": "resources/lib/MSL.py",
"diff": "@@ -405,7 +405,7 @@ class MSL(object):\n# Multiple Adaption Set for audio\nfor audio_track in manifest['audioTracks']:\nimpaired = 'false'\n- if audio_track.get('trackType') != 'ASSISTIVE':\n+... | Python | MIT License | castagnait/plugin.video.netflix | Fix assistive audio streams |
105,979 | 24.10.2017 17:55:05 | -7,200 | dad1f7fa7f602c0cd127b6d488a9765cfc148625 | fix(search): Add proper item props to search results, reduce search to 1 request | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -9,7 +9,7 @@ script:\n- pip install pycryptodomex\n- make all\n- touch ./_build/.nojekyll\n- - if [ \"$TRAVIS_BRANCH\" == \"master\" ]; then codeclimate-test-reporter; fi\n+ - if [ \"$TRAVIS_BRANCH\" == \"ma... | Python | MIT License | castagnait/plugin.video.netflix | fix(search): Add proper item props to search results, reduce search to 1 request |
105,979 | 24.10.2017 18:02:00 | -7,200 | b2d54782d2a747adf1b3c115458f9f5878ccacd9 | ci(travis): Fixes build error | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -9,7 +9,7 @@ script:\n- pip install pycryptodomex\n- make all\n- touch ./_build/.nojekyll\n- - if [ \"$TRAVIS_BRANCH\" == \"master\" ]; then codeclimate-test-reporter; else exit 0; fi\n+ - if [ \"$TRAVIS_BRA... | Python | MIT License | castagnait/plugin.video.netflix | ci(travis): Fixes build error |
106,027 | 27.10.2017 17:57:40 | -7,200 | b45098b9fd5d4cb0574c31343f7847fb061e944c | fix fetch_episodes_by_season | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -1298,10 +1298,10 @@ class NetflixSession(object):\n'id': episode['summary']['id'],\n'episode': episode['summary']['episode'],\n'season': episode['summary']['season'],... | Python | MIT License | castagnait/plugin.video.netflix | fix fetch_episodes_by_season |
105,979 | 27.10.2017 20:49:58 | -7,200 | cf3bec87311a8d868557eb5a2138fe6edb2232a7 | chorer(version): Version bump | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.12.6\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | chorer(version): Version bump |
105,989 | 08.02.2018 16:59:24 | -3,600 | 2cc138650a5ad448234d487e146c794cfed74e2e | Automatically mark library items as watched | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -45,6 +45,9 @@ class KodiHelper(object):\nConsumes all the configuration data from Kodi as well as\nturns data into lists of folders and videos\"\"\"\n+ TAGGED_WINDOW_ID = 100... | Python | MIT License | castagnait/plugin.video.netflix | Automatically mark library items as watched |
105,989 | 08.02.2018 20:31:43 | -3,600 | eae327d021bb904083f94200116f404374021809 | Added fallback lookup method | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -54,8 +54,15 @@ class KodiMonitor(xbmc.Monitor):\n)\n# wait for player to start playing video\n- xbmc.sleep(7500)\n+ xbmc.sleep(3000)\nplayer_id = self.get_active_video_play... | Python | MIT License | castagnait/plugin.video.netflix | Added fallback lookup method |
105,989 | 09.02.2018 12:04:32 | -3,600 | bcaadc19891a3b75b732cdd059126e8ef89d78fb | Improve handling of non-netflix playbacks | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -46,7 +46,8 @@ class KodiHelper(object):\nturns data into lists of folders and videos\"\"\"\nTAGGED_WINDOW_ID = 10000\n- PROP_NETFLIX_PLAY = 'is_netflix_play'\n+ PROP_NETFLIX_... | Python | MIT License | castagnait/plugin.video.netflix | Improve handling of non-netflix playbacks |
105,989 | 14.02.2018 16:31:06 | -3,600 | d868d87b1ced22e70ed6398d3dfbc0178c5c755b | Add saving resume points to Kodi library | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -26,7 +26,7 @@ class KodiMonitor(xbmc.Monitor):\nmethod = 'Player.GetProperties'\nparams = {\n'playerid': player_id,\n- 'properties': ['percentage']\n+ 'properties': ['perce... | Python | MIT License | castagnait/plugin.video.netflix | Add saving resume points to Kodi library |
106,003 | 16.02.2018 17:49:10 | -3,600 | 5166e7d1d4465036623d97a6cb38be5184b6e8df | Added autorefresh for video_list_id in case no video_list_id was given.
This makes it possible for skinners to create a container with contents of the addons f.e. widgets.
Used parts of im85288's pull request but made a few corrections. | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -415,6 +415,9 @@ class Navigation(object):\nuser_data = self._check_response(self.call_netflix_service({\n'method': 'get_user_data'}))\nif user_data:\n+ user_list = ['queue', ... | Python | MIT License | castagnait/plugin.video.netflix | Added autorefresh for video_list_id in case no video_list_id was given.
This makes it possible for skinners to create a container with contents of the addons f.e. widgets.
Used parts of im85288's pull request but made a few corrections. |
106,003 | 16.02.2018 18:17:33 | -3,600 | e2c6052b1c68b58078739c1675f27bcd20217678 | fixup code climate | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -415,9 +415,10 @@ class Navigation(object):\nuser_data = self._check_response(self.call_netflix_service({\n'method': 'get_user_data'}))\nif user_data:\n- user_list = ['queue',... | Python | MIT License | castagnait/plugin.video.netflix | fixup code climate |
106,016 | 29.01.2018 18:35:21 | -3,600 | 24c690274e25da3f878b3df84a39a8c8b58aa97e | Implement inputstreamhelper | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<import addon=\"xbmc.python\" version=\"2.25.0\"/>\n<import addon=\"script.module.requests\" version=\"2.12.4\"/>\n<import addon=\"script.module.pycryptodome\" version=\"3.4.3\"/>\n- <import addon=\"inputstream.ada... | Python | MIT License | castagnait/plugin.video.netflix | Implement inputstreamhelper |
105,985 | 17.03.2018 09:37:59 | -3,600 | 8090520658360893d5fdc6439f9f6dbf2a0e2653 | Fix list_id with reference
Thx to securus | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -1419,21 +1419,21 @@ class NetflixSession(object):\nlist_to = FETCH_VIDEO_REQUEST_COUNT\npaths = [\n- ['lists', list_id, {'from': list_from, 'to': list_to}, ['summary'... | Python | MIT License | castagnait/plugin.video.netflix | Fix list_id with reference
Thx to securus |
105,992 | 18.03.2018 10:22:39 | -3,600 | 9acbed03d030529f208b85aa4a9fd37e4023cc35 | Version bump (0.12.8) | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.12.7\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump (0.12.8) |
105,989 | 19.03.2018 11:52:54 | -3,600 | 006d6218773073f37b4dfac83680b7ee4f6f46c4 | Add resuming from bookmarks saved in Kodi library | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -1126,15 +1126,17 @@ class KodiHelper(object):\nshowid=id,\nshowseason=infoLabels['season'],\nshowepisode=infoLabels['episode'])\n- if details is not False:\n- play_item.setIn... | Python | MIT License | castagnait/plugin.video.netflix | Add resuming from bookmarks saved in Kodi library |
105,989 | 19.03.2018 14:20:11 | -3,600 | 68dae99f4f8ca6db0e3de1a3aabc087308f18230 | Fixed issues due to change in RPC API | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -277,12 +277,10 @@ class KodiMonitor(xbmc.Monitor):\nif item is not None:\nif 'tvshowid' in item and item['tvshowid'] > 0:\ntvshowid = item['tvshowid']\n- params['tvshowid']... | Python | MIT License | castagnait/plugin.video.netflix | Fixed issues due to change in RPC API |
105,989 | 19.03.2018 14:20:31 | -3,600 | c08c99e56f01a296c54da3563c17ec76a293a3f6 | Improved retrieval of bookmarks (still not working due to Kodi internal StartOffset bug, but keeping it if this ever gets fixed). | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -1131,12 +1131,12 @@ class KodiHelper(object):\ndetails = self.get_movie_content_by_id(movieid=id)\nif details is not False:\n+ if 'resume' in details[0]:\n+ resume_point = de... | Python | MIT License | castagnait/plugin.video.netflix | Improved retrieval of bookmarks (still not working due to Kodi internal StartOffset bug, but keeping it if this ever gets fixed). |
105,989 | 19.03.2018 17:11:29 | -3,600 | aad4ceacc76d162532a4971a5d112af68513ef14 | Added metadata fetching for individual episodes on export to library. Fixes | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -630,9 +630,9 @@ class KodiHelper(object):\nlabel=video['title'],\niconImage=self.default_fanart)\n# add some art to the item\n- li = self._generate_art_info(entry=video, li=l... | Python | MIT License | castagnait/plugin.video.netflix | Added metadata fetching for individual episodes on export to library. Fixes #283 |
105,989 | 19.03.2018 17:26:04 | -3,600 | 7dc2d9dc06e63acc4fea83afab8e70b1e456b2c3 | Removed logging call left over from debugging. | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -584,7 +584,6 @@ class Navigation(object):\nif episode_list:\nfor episode in episode_list.itervalues():\nepisode['tvshowtitle'] = video['title']\n- self.log(msg='EPISODE: {}'.... | Python | MIT License | castagnait/plugin.video.netflix | Removed logging call left over from debugging. |
105,989 | 20.03.2018 16:47:13 | -3,600 | b67b58fd513df77e2a817b4fe77c39696872f011 | Code cleanup and improve code climate | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "-# pylint: skip-file\n# -*- coding: utf-8 -*-\n-# Module: KodiHelper\n-# Created on: 13.01.2017\n+# Author: caphm\n+# Module: KodiMonitor\n+# Created on: 08.02.2018\n+# License... | Python | MIT License | castagnait/plugin.video.netflix | Code cleanup and improve code climate |
105,989 | 21.03.2018 23:17:42 | -3,600 | 9247518182e42babf1f716da4695553449cdedc7 | Fix KeyError when setting art received via JSON-RPC and reset bookmark when marking as watched (to show proper indicator in default skin) | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -1540,18 +1540,22 @@ class KodiHelper(object):\nin_episode = episode['episode'] == showepisode\nif in_season and in_episode:\ninfos = {'mediatype': 'episode', 'dbid': episode[... | Python | MIT License | castagnait/plugin.video.netflix | Fix KeyError when setting art received via JSON-RPC and reset bookmark when marking as watched (to show proper indicator in default skin) |
105,989 | 21.03.2018 23:32:14 | -3,600 | ad0a5be4980c2fc9969a864284c5579781d9f2be | Fixed KeyError when quality information is not provided | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -1232,6 +1232,7 @@ class KodiHelper(object):\nli.setInfo('video', infos)\nif li_infos.get('is_playable'):\nli.setProperty('IsPlayable', 'true')\n+ if 'quality' in li_infos:\nl... | Python | MIT License | castagnait/plugin.video.netflix | Fixed KeyError when quality information is not provided |
105,989 | 22.03.2018 17:29:13 | -3,600 | 40f93b223710f5d2d929aa076945d6aa2e8637b5 | More codeclimate | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -52,55 +52,62 @@ def _get_active_video_player():\nNone)\n-def _match_episode(item, episode, fallback_data):\n- title = _get_safe_with_fallback(item, fallback_data, itemkey='... | Python | MIT License | castagnait/plugin.video.netflix | More codeclimate |
105,989 | 22.03.2018 18:27:11 | -3,600 | b9ceaf63738b4e48bcfe9ec87a1601d42499902b | Also attach title (and tvshowtitle if episode) from database to infoLabels | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -1523,7 +1523,8 @@ class KodiHelper(object):\ndef get_show_content_by_id(self, showid, showseason, showepisode):\nshowseason = int(showseason)\nshowepisode = int(showepisode)\... | Python | MIT License | castagnait/plugin.video.netflix | Also attach title (and tvshowtitle if episode) from database to infoLabels |
106,018 | 22.03.2018 18:58:48 | -3,600 | 47bd3ed3d2c8037c8597c543e6ac6a262b2ea05a | add view for exported | [
{
"change_type": "MODIFY",
"old_path": "resources/language/resource.language.en_gb/strings.po",
"new_path": "resources/language/resource.language.en_gb/strings.po",
"diff": "@@ -267,3 +267,8 @@ msgstr \"\"\nmsgctxt \"#30062\"\nmsgid \"Enable/disable adult pin. Active:\"\nmsgstr \"\"\n+\n+msgctxt \"#... | Python | MIT License | castagnait/plugin.video.netflix | add view for exported |
105,989 | 20.03.2018 11:36:20 | -3,600 | d5444adc3f21e3e087e7a25199246051a06e8e93 | Add updates of exported shows (export new episodes to library) | [
{
"change_type": "MODIFY",
"old_path": "resources/language/resource.language.en_gb/strings.po",
"new_path": "resources/language/resource.language.en_gb/strings.po",
"diff": "@@ -267,3 +267,11 @@ msgstr \"\"\nmsgctxt \"#30062\"\nmsgid \"Enable/disable adult pin. Active:\"\nmsgstr \"\"\n+\n+msgctxt \"... | Python | MIT License | castagnait/plugin.video.netflix | Add updates of exported shows (export new episodes to library) |
105,989 | 24.03.2018 15:39:20 | -3,600 | 0c2249dd9624b92f8e140923a326960a90eac38e | Schedule updates and automatically trigger them | [
{
"change_type": "MODIFY",
"old_path": "resources/language/resource.language.en_gb/strings.po",
"new_path": "resources/language/resource.language.en_gb/strings.po",
"diff": "@@ -275,3 +275,43 @@ msgstr \"\"\nmsgctxt \"#30064\"\nmsgid \"Export new episodes\"\nmsgstr \"\"\n+\n+msgctxt \"#30064\"\n+msg... | Python | MIT License | castagnait/plugin.video.netflix | Schedule updates and automatically trigger them |
105,989 | 25.03.2018 17:06:08 | -7,200 | 84220a2ae1d94a2655bccbc133aa200577f99bab | Added verbose debug logging | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Library.py",
"new_path": "resources/lib/Library.py",
"diff": "@@ -114,10 +114,12 @@ class Library(object):\nVideo fallback title for m3u\n\"\"\"\n+ self.log('Writing {}'.format(path))\nf = xbmcvfs.File(path, 'w')\nf.write('#EXTINF:-1,'+title_play... | Python | MIT License | castagnait/plugin.video.netflix | Added verbose debug logging |
106,018 | 25.03.2018 23:03:12 | -7,200 | adefeb012fc2c83f14221ed65e6fc190db626470 | fix conflict with pr | [
{
"change_type": "MODIFY",
"old_path": "resources/language/resource.language.en_gb/strings.po",
"new_path": "resources/language/resource.language.en_gb/strings.po",
"diff": "@@ -268,7 +268,7 @@ msgctxt \"#30062\"\nmsgid \"Enable/disable adult pin. Active:\"\nmsgstr \"\"\n-msgctxt \"#30065\"\n+msgctx... | Python | MIT License | castagnait/plugin.video.netflix | fix conflict with pr #317 |
105,989 | 26.03.2018 10:27:44 | -7,200 | 9a19680bc7aa3118143e4b228aec59a0639ce41a | Fixed unicode issue in logging call, duplicate str in strings.po and listitem label (wrong string id) | [
{
"change_type": "MODIFY",
"old_path": "resources/language/resource.language.en_gb/strings.po",
"new_path": "resources/language/resource.language.en_gb/strings.po",
"diff": "@@ -276,10 +276,6 @@ msgctxt \"#30064\"\nmsgid \"Export new episodes\"\nmsgstr \"\"\n-msgctxt \"#30064\"\n-msgid \"Export new ... | Python | MIT License | castagnait/plugin.video.netflix | Fixed unicode issue in logging call, duplicate str in strings.po and listitem label (wrong string id) |
106,018 | 28.03.2018 10:44:55 | -7,200 | 506a4e8715e0019eece38e4bcd63406cb6a528e2 | fix unicode bugs | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -621,7 +621,7 @@ class Navigation(object):\nfor title, meta in self.library.list_exported_shows().iteritems():\ntry:\nself.log('Exporting new episodes of {} (id={})'\n- .forma... | Python | MIT License | castagnait/plugin.video.netflix | fix unicode bugs |
105,989 | 28.03.2018 13:57:44 | -7,200 | 5be257f4be8e77aebc1645dbca4f3e360bd44c10 | Fetch netflix id if it's missing in internal db. | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Library.py",
"new_path": "resources/lib/Library.py",
"diff": "@@ -414,6 +414,12 @@ class Library(object):\nelse:\nself.log('Show is present in internal library: {}'\n.format(self.db[self.series_label][show_meta]))\n+ if 'netflix_id' not in self.d... | Python | MIT License | castagnait/plugin.video.netflix | Fetch netflix id if it's missing in internal db. |
106,018 | 01.04.2018 16:25:29 | -7,200 | 1eb4728a5ed91ac939da5cdff4d44b23f033867a | fix again unicode bugs | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Library.py",
"new_path": "resources/lib/Library.py",
"diff": "@@ -114,12 +114,12 @@ class Library(object):\nVideo fallback title for m3u\n\"\"\"\n- self.log('Writing {}'.format(path))\n+ self.log('Writing {}'.format(path.encode('utf-8')))\nf = xb... | Python | MIT License | castagnait/plugin.video.netflix | fix again unicode bugs |
106,018 | 01.04.2018 22:56:13 | -7,200 | dd43525eedc95261b007651c1de17921335b681d | fix missing fanart image | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -721,13 +721,14 @@ class KodiHelper(object):\n\"\"\"\naction = ['remove_from_library', self.get_local_string(30030), 'remove']\n+ li = xbmcgui.ListItem(\n+ label=self.get_loca... | Python | MIT License | castagnait/plugin.video.netflix | fix missing fanart image |
106,018 | 16.04.2018 13:59:53 | -7,200 | 18af801fb36b88df6ade95149d91daabaf5e8d7e | Make sure unicode wont break export caused by logging | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Library.py",
"new_path": "resources/lib/Library.py",
"diff": "@@ -114,12 +114,12 @@ class Library(object):\nVideo fallback title for m3u\n\"\"\"\n- self.log('Writing {}'.format(path.encode('utf-8')))\n+ self.log('Writing {}'.format(path.decode('a... | Python | MIT License | castagnait/plugin.video.netflix | Make sure unicode wont break export caused by logging |
106,018 | 16.04.2018 14:08:36 | -7,200 | 99f8ba6ce2211630437de3ae6d4e3605769112dc | Version bump (0.12.9) | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.12.8\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump (0.12.9) |
105,992 | 26.04.2018 14:15:22 | -7,200 | d54ea4480a6a100e348ccc7a4b8917159d5bb42d | fix _guess_episode scope | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -231,8 +231,8 @@ class KodiMonitor(xbmc.Monitor):\nexcept KeyError:\nself.log('Guessing video info (fallback={})'.format(fallback_data),\nxbmc.LOGWARNING)\n- return (self._g... | Python | MIT License | castagnait/plugin.video.netflix | fix _guess_episode scope |
105,992 | 26.04.2018 14:16:11 | -7,200 | eae88e0c839629f7b4cd74c7161ced8cd54c9235 | Version bump 0.13.0 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.12.9\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.0 |
105,992 | 26.04.2018 22:56:10 | -7,200 | 79194110fd46696a49c7ebb9e5006f8cd49ecc0f | Fix wrong constant location | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -131,7 +131,7 @@ class KodiMonitor(xbmc.Monitor):\nIndicates if a playback was initiated by the netflix addon by\nchecking the appropriate window property set by KodiHelper.... | Python | MIT License | castagnait/plugin.video.netflix | Fix wrong constant location |
105,992 | 26.04.2018 23:30:09 | -7,200 | a341d38c53685efbe60c306b26e9a52263892745 | Fix var naming in get_setting / decode -> encode for log message | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Library.py",
"new_path": "resources/lib/Library.py",
"diff": "@@ -115,7 +115,7 @@ class Library(object):\nVideo fallback title for m3u\n\"\"\"\n- self.log('Writing {}'.format(path.decode('ascii','ignore')))\n+ self.log('Writing {}'.format(path.en... | Python | MIT License | castagnait/plugin.video.netflix | Fix var naming in get_setting / decode -> encode for log message |
105,992 | 28.04.2018 13:00:15 | -7,200 | 899423341b0f1eff0152eeb3be0c6b926c072c9a | fix 336 / fix 337 / join threads on shutdown | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -201,10 +201,10 @@ class KodiHelper(object):\nautologin_id : :obj:`str`\nProfile id from netflix\n\"\"\"\n- self.set_setting('autologin_user', autologin_user)\n- self.set_sett... | Python | MIT License | castagnait/plugin.video.netflix | fix 336 / fix 337 / join threads on shutdown |
105,992 | 28.04.2018 15:37:49 | -7,200 | a1fab95400cb1a2af935a6fc9a8da224f9e2a8c1 | make travis hapy | [
{
"change_type": "MODIFY",
"old_path": "service.py",
"new_path": "service.py",
"diff": "@@ -102,14 +102,14 @@ class NetflixService(object):\ndef _start_servers(self):\n# start thread for MLS servie\n- self.msl_thread = threading.Thread(target=self.msl_server.serve_forever)\n- #self.msl_thread.daemon... | Python | MIT License | castagnait/plugin.video.netflix | make travis hapy |
105,992 | 28.04.2018 15:38:06 | -7,200 | ebaf58e36e0eea09ef30fe45cc3a988d730052ea | Version bump 0.13.1 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.0\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.1 |
105,992 | 29.04.2018 11:33:00 | -7,200 | 5f30df1126fbc285afa0b38b263f36699e96b66d | KodiHelper -> Library / Fix hang if ESN changed | [
{
"change_type": "MODIFY",
"old_path": "addon.py",
"new_path": "addon.py",
"diff": "import sys\nfrom resources.lib.NetflixCommon import NetflixCommon\nfrom resources.lib.Navigation import Navigation\n-from resources.lib.Library import Library\n# Setup plugin\nPLUGIN_HANDLE = int(sys.argv[1])\n@@ -24... | Python | MIT License | castagnait/plugin.video.netflix | KodiHelper -> Library / Fix hang if ESN changed |
105,992 | 29.04.2018 11:33:47 | -7,200 | b59c56ba8deab45ebfc558c4aa851baaa7dda60a | Version bump 0.13.2 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.1\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.2 |
105,992 | 05.05.2018 16:41:48 | -7,200 | d3debe779f4076408000c3f6004391a1cbbeabc7 | New profile style / update rsa-key on re-login | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/MSL.py",
"new_path": "resources/lib/MSL.py",
"diff": "@@ -660,7 +660,7 @@ class MSL(object):\n# If token expires in less then 10 hours or is expires renew it\nself.nx_common.log(msg='Expiration time: Key:' + str(valid_until) + ', Now:' + str(pres... | Python | MIT License | castagnait/plugin.video.netflix | New profile style / update rsa-key on re-login |
105,992 | 05.05.2018 16:46:31 | -7,200 | dc06c57731261a8713001075088e4a0c17b29fb0 | Version bump 0.13.3 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.2\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.3 |
105,992 | 05.05.2018 19:46:38 | -7,200 | 9cb07c928545bf84ed3e152ddbe822c184316323 | Don't refresh Container on play call (leads to double busy dialogs) | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -220,6 +220,7 @@ class Navigation(object):\nvideo_id=params['video_id'],\nstart_offset=params.get('start_offset', -1),\ninfoLabels=params.get('infoLabels', {}))\n+ return True... | Python | MIT License | castagnait/plugin.video.netflix | Don't refresh Container on play call (leads to double busy dialogs) |
105,992 | 06.05.2018 21:42:53 | -7,200 | 12d170b85c4fe8d8edd064de4473a60c662dd28c | Fix manifest_url | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -910,8 +910,7 @@ class KodiHelper(object):\nmsl_manifest_url += '&dolby=' + self.nx_common.get_setting('enable_dolby_sound')\nmsl_manifest_url += '&hevc=' + self.nx_common.get... | Python | MIT License | castagnait/plugin.video.netflix | Fix manifest_url |
105,992 | 06.05.2018 21:58:19 | -7,200 | 27fe99d079041d24b280ad954abdd533725ab102 | Version bump 0.13.4 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.3\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.4 |
105,992 | 11.05.2018 13:21:40 | -7,200 | 9de83e7a2670f5e0cfdb678e46ac91db7c9e9ebe | Remove log spam (KodiMonitor) | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -141,7 +141,7 @@ class KodiMonitor(xbmc.Monitor):\nreturn (self.video_info is not None and\nself._is_playback_status(PROP_PLAYBACK_TRACKING))\n- @log\n+ # @log\ndef update_p... | Python | MIT License | castagnait/plugin.video.netflix | Remove log spam (KodiMonitor) |
105,992 | 14.05.2018 16:51:23 | -7,200 | 3714e1444dd2f0265940169bca15540c379ca1fc | Fix issues after invalid login | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -798,15 +798,17 @@ class Navigation(object):\n# check if we have user settings, if not, set em\nif credentials['email'] == '':\nemail = self.kodi_helper.dialogs.show_email_dia... | Python | MIT License | castagnait/plugin.video.netflix | Fix issues after invalid login |
105,992 | 14.05.2018 18:54:57 | -7,200 | f71b5205e1780655c750e8fdf90442f9edfb342d | Remove more log spam | [
{
"change_type": "MODIFY",
"old_path": "service.py",
"new_path": "service.py",
"diff": "@@ -191,9 +191,11 @@ class NetflixService(object):\ntimedelta(minutes=self.schedule_check_interval))\nif not self.freq or now <= next_schedule_check:\n+ '''\nself.nx_common.log('Auto-update disabled or schedule c... | Python | MIT License | castagnait/plugin.video.netflix | Remove more log spam |
105,992 | 16.05.2018 10:08:56 | -7,200 | 4f0be7ebc2352adc81dbfcc8291474e9348e3c41 | Version bump 0.13.5 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.4\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.5 |
105,992 | 20.05.2018 00:46:21 | -7,200 | e7977ce21e083cf151b7b64600e881cc9741d5b2 | Fix search sort order | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -19,6 +19,8 @@ import urllib\nimport urllib2\nfrom urlparse import parse_qsl, urlparse\nfrom datetime import datetime\n+from collections import OrderedDict\n+\nimport xbmc\nim... | Python | MIT License | castagnait/plugin.video.netflix | Fix search sort order |
105,992 | 21.05.2018 23:38:46 | -7,200 | 4e9be1598b4fe203d5d69fd202e4bdf30ed39882 | Remove initialization segment / add audio attributes | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/MSL.py",
"new_path": "resources/lib/MSL.py",
"diff": "@@ -377,23 +377,31 @@ class MSL(object):\ntag='SegmentBase',\nindexRange='0-' + str(init_length),\nindexRangeExact='true')\n- ET.SubElement(\n- parent=segment_base,\n- tag='Initialization',\n-... | Python | MIT License | castagnait/plugin.video.netflix | Remove initialization segment / add audio attributes |
105,992 | 22.05.2018 18:53:43 | -7,200 | 5dac8d5fef3049d1ed97addd2b79a94eff401618 | Fix issues regarding falkorcache retrieval / profiles | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -141,9 +141,9 @@ class NetflixSession(object):\nself.nx_common.log(msg='Parsing inline data...')\nitems = self.page_items if items is None else items\nuser_data = {'gp... | Python | MIT License | castagnait/plugin.video.netflix | Fix issues regarding falkorcache retrieval / profiles |
105,992 | 23.05.2018 10:29:44 | -7,200 | 6bc775d369d916919b60bd085ab612cb2d6e0f76 | Version bump 0.13.6 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.5\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.6 |
106,024 | 28.05.2018 11:09:54 | -7,200 | c2a641d8eb46c469c1bc628c04c2f9cc66781d04 | Refactoring extracting json and regex
Refactoring regex and json.loads call's
Add a method for extracting json from content
Change regex for grabbing multiline (if endline in string)
Permits json.loads to parse endline in string too. | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -12,7 +12,7 @@ import sys\nimport json\nfrom time import time\nfrom urllib import quote, unquote\n-from re import compile as recompile\n+from re import compile as reco... | Python | MIT License | castagnait/plugin.video.netflix | Refactoring extracting json and regex
Refactoring regex and json.loads call's
-Add a method for extracting json from content
-Change regex for grabbing multiline (if endline in string)
-Permits json.loads to parse endline in string too. |
105,992 | 28.05.2018 20:35:02 | -7,200 | 9242fa237d6036b3b3d784a92cbaeb8b3035c95a | Version bump 0.13.7 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.6\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.7 |
106,024 | 28.05.2018 21:11:04 | -7,200 | 0ab2f0bf863ba83d143bf41cc0d2c3f0c277268f | Resolve issue for rating a movie
Fixed a typographical error? to re-allow to evaluate a movie | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -439,7 +439,7 @@ class NetflixSession(object):\n\"\"\"\n# dirty rating validation\n- ratun = int(rating)\n+ rating = int(rating)\nif rating > 10 or rating < 0:\nreturn... | Python | MIT License | castagnait/plugin.video.netflix | Resolve issue for rating a movie
Fixed a typographical error? to re-allow to evaluate a movie |
105,992 | 07.06.2018 10:48:36 | -7,200 | 27b4d2f2e37f9e634825b49d5ea6807058be360c | [Fix] don't pass opener in socket::read(self, size=-1) | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -980,7 +980,7 @@ class Navigation(object):\nif urlparse(url).hostname in ('localhost', '127.0.0.1', '::1'):\nopener = urllib2.build_opener(urllib2.ProxyHandler({}))\nurllib2.i... | Python | MIT License | castagnait/plugin.video.netflix | [Fix] don't pass opener in socket::read(self, size=-1) |
105,992 | 07.06.2018 13:36:59 | -7,200 | 033a0e2f6678ce023aed34261aea0a7a588feba6 | Fix resource location in addon.xml | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<description lang=\"en_GB\">Netflix VOD Services Addon</description>\n<disclaimer lang=\"en_GB\">Some parts of this addon may not be legal in your country of residence - please check with your local laws before ins... | Python | MIT License | castagnait/plugin.video.netflix | Fix resource location in addon.xml |
105,992 | 07.06.2018 13:38:50 | -7,200 | f29f030ba4b301284e4ed7fc10a75d3313b64f4c | Version bump 0.13.8 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.7\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.8 |
105,989 | 11.06.2018 19:43:55 | -7,200 | 007b2bc5960aa6ef001f7d5dd2fc1f0c8d299110 | Use correct poster, landscape and fanart artworks. | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -995,16 +995,19 @@ class KodiHelper(object):\n'landscape': '',\n'thumb': '',\n'fanart': '',\n- 'poster': ''\n+ 'poster': '',\n+ 'clearlogo': ''\n})\nif 'boxarts' in dict(entry... | Python | MIT License | castagnait/plugin.video.netflix | Use correct poster, landscape and fanart artworks. |
106,024 | 13.06.2018 23:48:49 | -7,200 | f0c525652850250ed356695c568682d79174e3d2 | Add continueWatching to user_list
Add 'continueWatching' to user_list to permit retrieving list_id of it. | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -427,7 +427,7 @@ class Navigation(object):\nuser_data = self._check_response(self.call_netflix_service({\n'method': 'get_user_data'}))\nif user_data:\n- user_list = ['queue', ... | Python | MIT License | castagnait/plugin.video.netflix | Add continueWatching to user_list
Add 'continueWatching' to user_list to permit retrieving list_id of it. |
105,992 | 14.06.2018 11:42:17 | -7,200 | 729550102b7b06c4635da0cfc963b86d601e0ef0 | Fix login / adapt netflix typo correction | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -188,7 +188,7 @@ class NetflixSession(object):\ndef get_profiles(self, content):\n\"\"\"ADD ME\"\"\"\nprofiles = {}\n- falkor_cache = self.extract_json(content, 'falko... | Python | MIT License | castagnait/plugin.video.netflix | Fix login / adapt netflix typo correction |
105,989 | 14.06.2018 12:01:17 | -7,200 | 2cb77113ed54a5780d169e390d7825df1035f087 | Add query parameter widget_display to suppress setting custom view modes | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -266,7 +266,8 @@ class KodiHelper(object):\nreturn xbmcplugin.endOfDirectory(handle=self.plugin_handle)\n- def build_main_menu_listing(self, video_list_ids, user_list_order, a... | Python | MIT License | castagnait/plugin.video.netflix | Add query parameter widget_display to suppress setting custom view modes |
105,992 | 14.06.2018 12:18:22 | -7,200 | 1e2be7349f5ed5909a1a10f832bfa89a7bba2665 | Version bump 0.13.9 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.8\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | Version bump 0.13.9 |
105,992 | 16.06.2018 11:46:07 | -7,200 | 7325d08d9b826b053e2292f6ae80e617096f1b6c | version bump 0.13.10 | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n-<addon id=\"plugin.video.netflix\" name=\"Netflix\" version=\"0.13.9\" provider-name=\"libdev + jojo + asciidisco\">\n+<addon id=\"plugin.video.netfli... | Python | MIT License | castagnait/plugin.video.netflix | version bump 0.13.10 |
105,992 | 02.07.2018 18:04:46 | -7,200 | 6fbe820e9391b9f5567e9f3c5eaacaaed7ff76a4 | raise systemexit to allow proper shutdown | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -2000,6 +2000,9 @@ class NetflixSession(object):\nparams=params,\nheaders=headers,\nverify=self.verify_ssl)\n+ except SystemExit:\n+ self.nx_common.log(msg='[POST] sys... | Python | MIT License | castagnait/plugin.video.netflix | raise systemexit to allow proper shutdown |
105,989 | 26.07.2018 01:11:38 | -7,200 | 516ad8af7328e7e49f9c744188209a6df08f9329 | Add skip intro and skip recap feature | [
{
"change_type": "MODIFY",
"old_path": "resources/language/resource.language.en_gb/strings.po",
"new_path": "resources/language/resource.language.en_gb/strings.po",
"diff": "@@ -317,13 +317,25 @@ msgid \"View for exported\"\nmsgstr \"\"\nmsgctxt \"#30075\"\n-msgid \"Ask to skip credits\"\n+msgid \"A... | Python | MIT License | castagnait/plugin.video.netflix | Add skip intro and skip recap feature |
105,989 | 31.07.2018 11:59:16 | -7,200 | 23871be29842f0b45fcb13ceb8542d0ba74194ab | Move library item identification logic into own module | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "\"\"\"Playback tracking & update of associated item properties in Kodi library\"\"\"\n-import json\ntry:\nimport cPickle as pickle\n-except:\n+except ImportError:\nimport pickl... | Python | MIT License | castagnait/plugin.video.netflix | Move library item identification logic into own module |
105,989 | 31.07.2018 13:18:00 | -7,200 | 44d0f26146d76e92b73d6a40eeb484304b1a59fa | De-clutter KodiMonitor, move stuff to utils | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "# Module: KodiMonitor\n# Created on: 08.02.2018\n# License: MIT https://goo.gl/5bMj3H\n-# pylint: disable=line-too-long\n+# pylint: disable=import-error\n\"\"\"Playback trackin... | Python | MIT License | castagnait/plugin.video.netflix | De-clutter KodiMonitor, move stuff to utils |
105,989 | 31.07.2018 14:00:55 | -7,200 | ce37225a34bd6e82422339bb155faf198d7ade5d | Decompose skipping logic | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "@@ -55,50 +55,19 @@ class KodiMonitor(xbmc.Monitor):\nAUTOCLOSE_COMMAND = 'AlarmClock(closedialog,Dialog.Close(all,true),' \\\n'{:02d}:{:02d},silent)'\n+ SKIPPABLE_SECTIONS = [... | Python | MIT License | castagnait/plugin.video.netflix | Decompose skipping logic |
105,989 | 31.07.2018 18:27:33 | -7,200 | 9569c4506c2c4c7df1b3a093288d62942c2c24d1 | Move skipping logic into own class, simplify marker extraction | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiMonitor.py",
"new_path": "resources/lib/KodiMonitor.py",
"diff": "\"\"\"Playback tracking & update of associated item properties in Kodi library\"\"\"\n-try:\n- import cPickle as pickle\n-except ImportError:\n- import pickle\n-\nfrom json imp... | Python | MIT License | castagnait/plugin.video.netflix | Move skipping logic into own class, simplify marker extraction |
105,989 | 31.07.2018 22:04:20 | -7,200 | 1bc93af669b610d05e2bb852cc12f147ea5c9def | Massive declutter, use addonsignals | [
{
"change_type": "MODIFY",
"old_path": "addon.xml",
"new_path": "addon.xml",
"diff": "<import addon=\"script.module.requests\" version=\"2.12.4\"/>\n<import addon=\"script.module.pycryptodome\" version=\"3.4.3\"/>\n<import addon=\"script.module.inputstreamhelper\" version=\"0.3.3\"/>\n+ <import addo... | Python | MIT License | castagnait/plugin.video.netflix | Massive declutter, use addonsignals |
105,989 | 31.07.2018 22:51:12 | -7,200 | 85b7fff272ee27e96b8b3b49adb35e5c4c3aa0c5 | Codeclimate again | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/Navigation.py",
"new_path": "resources/lib/Navigation.py",
"diff": "@@ -30,6 +30,26 @@ from resources.lib.section_skipping import (\nSKIPPABLE_SECTIONS, OFFSET_CREDITS, OFFSET_WATCHED_TO_END)\n+def _get_offset_markers(metadata):\n+ return {\n+ ma... | Python | MIT License | castagnait/plugin.video.netflix | Codeclimate again |
105,989 | 01.08.2018 18:04:48 | -7,200 | ca6dcaa6867d63fcc80c34f08cde4c6400f82ed6 | Fix for missing fanart images on non-netflix originals | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -24,7 +24,7 @@ except:\nFETCH_VIDEO_REQUEST_COUNT = 26\n-ART_BILLBOARD_SIZE = '_1920x1080'\n+ART_FANART_SIZE = '1080'\nART_MOMENT_SIZE_SMALL = '_665x375'\nART_MOMENT_S... | Python | MIT License | castagnait/plugin.video.netflix | Fix for missing fanart images on non-netflix originals |
105,989 | 01.08.2018 20:59:25 | -7,200 | e8093f6b72fd26111978675bc56a736f3e03ada5 | Fix fanart extraction, lower quality for fanart to distinguish it from interestingMoment | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -24,13 +24,15 @@ except:\nFETCH_VIDEO_REQUEST_COUNT = 26\n-ART_FANART_SIZE = '1080'\n+# Fanart: lower quality than 1080, but provides more variance\n+# (1080 is usuall... | Python | MIT License | castagnait/plugin.video.netflix | Fix fanart extraction, lower quality for fanart to distinguish it from interestingMoment |
105,989 | 01.08.2018 21:07:05 | -7,200 | 1d12dd4c73deffd956326efcc4212a9923bb6f1d | Only reduce fanart quality for episodes | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -24,9 +24,10 @@ except:\nFETCH_VIDEO_REQUEST_COUNT = 26\n-# Fanart: lower quality than 1080, but provides more variance\n-# (1080 is usually the same as interestingMom... | Python | MIT License | castagnait/plugin.video.netflix | Only reduce fanart quality for episodes |
105,989 | 07.08.2018 12:53:05 | -7,200 | 1aeb2ee08fa111cef1da04da89d56f80b650a4f4 | Add save and restore of audio/subtitle settings across all episodes of a show. Heavily refactor code for action to be taken during playback (KodiMonitor) | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -963,9 +963,12 @@ class KodiHelper(object):\nplay_item.setInfo('video', details[0])\nplay_item.setArt(details[1])\nsignal_data.update({\n+ 'dbinfo': {\n'dbid': details[0]['dbi... | Python | MIT License | castagnait/plugin.video.netflix | Add save and restore of audio/subtitle settings across all episodes of a show. Heavily refactor code for action to be taken during playback (KodiMonitor) |
105,989 | 07.08.2018 12:55:21 | -7,200 | c753d809f58db501eef4b756a8d8762000275f37 | Exclude new skins directory from codeclimate checks | [
{
"change_type": "MODIFY",
"old_path": ".codeclimate.yml",
"new_path": ".codeclimate.yml",
"diff": "@@ -18,6 +18,7 @@ exclude_paths:\n- \"resources/lib/UniversalAnalytics/\"\n- \"resources/language/\"\n- \"resources/media/\"\n+ - \"resources/skins/\"\n- \"resources/fanart.jpg\"\n- \"resources/icon.p... | Python | MIT License | castagnait/plugin.video.netflix | Exclude new skins directory from codeclimate checks |
105,989 | 08.08.2018 16:24:54 | -7,200 | a93dc37cd996c6915e9a5d4f0c7d5bca930171d4 | Clean up package structure | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/KodiHelper.py",
"new_path": "resources/lib/KodiHelper.py",
"diff": "@@ -15,7 +15,7 @@ import xbmc\nimport xbmcgui\nimport xbmcplugin\nimport inputstreamhelper\n-from resources.lib.kodi.Dialogs import Dialogs\n+from resources.lib.ui.Dialogs import... | Python | MIT License | castagnait/plugin.video.netflix | Clean up package structure |
105,989 | 08.08.2018 17:21:57 | -7,200 | d01c7835bda635f84e9ca168514772f5746770f3 | Fix login problems | [
{
"change_type": "MODIFY",
"old_path": "resources/lib/NetflixSession.py",
"new_path": "resources/lib/NetflixSession.py",
"diff": "@@ -302,13 +302,13 @@ class NetflixSession(object):\nuser_data, profiles = self.extract_inline_netflix_page_data(\ncontent=page.content)\nlogin_payload = {\n- 'email': ac... | Python | MIT License | castagnait/plugin.video.netflix | Fix login problems |
105,992 | 09.08.2018 17:21:13 | -7,200 | 097cff8c3856b9450560b6c38d149d9e29c996c4 | check regular for ESN changes | [
{
"change_type": "MODIFY",
"old_path": "service.py",
"new_path": "service.py",
"diff": "@@ -102,9 +102,6 @@ class NetflixService(object):\nself.ns_thread = threading.Thread(\ntarget=self.ns_server.serve_forever)\n- if self.ns_server.esn_changed():\n- self.msl_server.reset_msl_data()\n-\ndef _start_s... | Python | MIT License | castagnait/plugin.video.netflix | check regular for ESN changes |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.