Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-lundin committed Dec 22, 2015
1 parent e87cccf commit 5b7eb0e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<addon id="plugin.video.dreamfilm" name="Dreamfilm" provider-name="Daniel Lundin" version="0.1.13">
<addon id="plugin.video.dreamfilm" name="Dreamfilm" provider-name="Daniel Lundin" version="0.1.14">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
Expand Down
10 changes: 9 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
import shutil
import zipfile

dirs = [
'vendor'
]
files = [
'LICENSE.txt',
'addon.xml',
Expand All @@ -12,7 +15,9 @@
'navigation.py',
'cloudflare.py',
'resolvers.py',
'models.py'
'models.py',
'vendor/__init__.py',
'vendor/packer.py',
]

with open("addon.xml") as f:
Expand All @@ -25,6 +30,9 @@
zipname = "plugin.video.dreamfilm-%s.zip" % version
os.mkdir(dirname)

for d in dirs:
os.mkdir(os.path.join(dirname, d))

for f in files:
shutil.copyfile(f, os.path.join(dirname, f))

Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ version 0.1.12
=============
Fix vkpass resolver

version 0.1.13
version 0.1.14
=============
Fix vkpass resolver yet again

0 comments on commit 5b7eb0e

Please sign in to comment.