Skip to content

Commit 4ff1d34

Browse files
committed
Version 1.3.0+matrix.1
1 parent 8cfd134 commit 4ff1d34

3 files changed

Lines changed: 17 additions & 17 deletions

File tree

addon.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@
1212
<license>GPL-3.0-only</license>
1313
<source>https://github.com/XBMC-Addons/plugin.video.vimcasts</source>
1414
<news>
15-
Version 1.2.0
16-
* Update to python3
17-
* Update to new xbmcswift2
18-
* Add duration
19-
* Remove unplayable items
20-
* New addon requirements
15+
Version 1.3.0+matrix.1
16+
* Dropped python 2
17+
* Addon.xml updates for matrix
18+
* Language updates for matrix
19+
* Automated submissions for matrix
2120
</news>
2221
<summary lang="en_GB">Watch screencasts about Vim, the text editor, from http://vimcasts.org</summary>
2322
<description lang="en_GB">Vimcasts publishes free screencasts about Vim, the text editor. Vim has been around in one form or another for over 20 years. The learning curve is famously difficult, but those who manage to climb it insist that nothing can match Vim's modal editing model for speed and efficiency.[CR][CR]The patterns of use that make a Vim master productive are not easily discovered. Trial and error will get you so far, but the best way to learn is to watch an experienced Vim user at work. By providing short videos with digestible advice, Vimcasts gives you something you can take away and use immediately to improve your productivity. Vimcasts aims to be the expert Vim colleague you never had.[CR][CR]Vimcasts is produced by Drew Neil (aka nelstrom), who came to Vim from TextMate. He made the switch when starting work at a company that uses Linux workstations. His choice of text editor was influenced by colleagues.</description>

changelog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 1.3.0+matrix.1
2+
-----------
3+
* Dropped python 2
4+
* Addon.xml updates for matrix
5+
* Language updates for matrix
6+
* Automated submissions for matrix
7+
8+
19
Version 1.2.0
210
-----------
311
* Update to python3

resources/lib/plugin.py

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,13 @@
99
'''
1010
import re
1111
import sys
12-
try:
13-
import json
14-
except ImportError:
15-
import simplejson as json
12+
import json
13+
1614
from xbmcswift2 import Plugin
1715

18-
PY3 = sys.version_info.major >= 3
16+
from html.parser import HTMLParser
17+
from urllib.request import urlopen
1918

20-
if PY3:
21-
from html.parser import HTMLParser
22-
from urllib.request import urlopen
23-
else:
24-
from HTMLParser import HTMLParser
25-
from urllib2 import urlopen
2619

2720
PLUGIN_NAME = 'VimCasts'
2821
PLUGIN_ID = 'plugin.video.vimcasts'

0 commit comments

Comments
 (0)