Skip to content

Commit

Permalink
Version 1.3.0+matrix.1
Browse files Browse the repository at this point in the history
  • Loading branch information
enen92 committed Apr 12, 2020
1 parent 8cfd134 commit 4ff1d34
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
11 changes: 5 additions & 6 deletions addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@
<license>GPL-3.0-only</license>
<source>https://github.com/XBMC-Addons/plugin.video.vimcasts</source>
<news>
Version 1.2.0
* Update to python3
* Update to new xbmcswift2
* Add duration
* Remove unplayable items
* New addon requirements
Version 1.3.0+matrix.1
* Dropped python 2
* Addon.xml updates for matrix
* Language updates for matrix
* Automated submissions for matrix
</news>
<summary lang="en_GB">Watch screencasts about Vim, the text editor, from http://vimcasts.org</summary>
<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>
Expand Down
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 1.3.0+matrix.1
-----------
* Dropped python 2
* Addon.xml updates for matrix
* Language updates for matrix
* Automated submissions for matrix


Version 1.2.0
-----------
* Update to python3
Expand Down
15 changes: 4 additions & 11 deletions resources/lib/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,13 @@
'''
import re
import sys
try:
import json
except ImportError:
import simplejson as json
import json

from xbmcswift2 import Plugin

PY3 = sys.version_info.major >= 3
from html.parser import HTMLParser
from urllib.request import urlopen

if PY3:
from html.parser import HTMLParser
from urllib.request import urlopen
else:
from HTMLParser import HTMLParser
from urllib2 import urlopen

PLUGIN_NAME = 'VimCasts'
PLUGIN_ID = 'plugin.video.vimcasts'
Expand Down

0 comments on commit 4ff1d34

Please sign in to comment.