Skip to content
This repository has been archived by the owner on Mar 4, 2018. It is now read-only.

Commit

Permalink
Version 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
enen92 committed Dec 10, 2014
1 parent 142701e commit 415e699
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugin.video.p2p-streams/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.p2p-streams"
name="p2p-streams"
version="1.1.7h"
version="1.1.8"
provider-name="enen92,fightnight">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
Expand Down
11 changes: 11 additions & 0 deletions plugin.video.p2p-streams/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
===== Stable Versions ========
[B]v1.1.8 (10/12/2014)[/B]
-Updated android acestreamengine to version 3.0.3
-Added option to change port for the internal engine (8621,8622,8623 only) for android
-Added cache allocation option for android (memory vs disk)
-Fixed stop function in android
-Fixed auto-conf in android
-Renamed all utils entries to peertopeerutils to avoid script errors
-Parser sync & disclaimer bump
-Xbmc references 2 Kodi
-Several other bug fixes

[B]v1.1.7 (6/12/2014)[/B]
-Updated acestreamengine for general linux x64 distros to version 3.0.5
-Updated acestreamengine for openelec x64 to version 3.0.5
Expand Down
8 changes: 4 additions & 4 deletions plugin.video.p2p-streams/resources/core/autoconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,10 +731,10 @@ def configure_acestream(latest_version):
import stat
os.chmod(pythonbin, st.st_mode | stat.S_IEXEC)
if os.path.exists(orgacestreamenginefolder):
try:
os.system("chmod -R 777 "+orgacestreamenginefolder+"/*")
try:
os.system("chmod -R 777 "+orgacestreamenginefolder+"/*")
os.system("rm -r '"+orgacestreamenginefolder+"'")
except:
except: pass
try: xbmcvfs.mkdir(os.path.join('/sdcard','org.acestream.engine'))
except: pass
opcao= xbmcgui.Dialog().yesno(translate(40000), translate(70015),translate(70016))
Expand Down Expand Up @@ -788,4 +788,4 @@ def configure_acestream(latest_version):
return
else:
mensagemok(translate(40000),translate(50017))
return
return

0 comments on commit 415e699

Please sign in to comment.