Kodi Community Forum
Release Dropbox addon - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: Release Dropbox addon (/showthread.php?tid=172902)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22


Dropbox addon - ed_davidson - 2016-09-01

You'll have to adjust the addon.xml file to read 0.9.6b


Sent from my iPhone


RE: Dropbox addon - R247yan - 2016-09-01

I just installed the zip file to my normal Dropbox app. It's not in dbmc because I can't get it to open. Keep getting error. I hope I. Not confusing you. Sorry if I am. I'm in no way a developer or Bill gates.


Dropbox addon - ed_davidson - 2016-09-01

I'll send you my version. In the meantime open a archive.org account. It makes installing zips a breeze.


Sent from my iPhone


RE: Dropbox addon - R247yan - 2016-09-01

Ok.
Email
[email protected]


RE: Dropbox addon - R247yan - 2016-09-01

Sorry but when I try to reply to your post let's chat on here it says I'm not allowed. I created a archive.org account thou


Dropbox addon - ed_davidson - 2016-09-01

Okay. I'll email the zip to you.


Sent from my iPhone


RE: Dropbox addon - mattmartinolc - 2016-09-01

Is is possible to manually edit the settings to use the special:// paths instead of the /storage/.kodi etc or c:\Users\username\appdata\roaming kodi to be able to synchronize machines running on different platforms?? I want to sync even the dbmc settings so that if I change one, they all change.


RE: Dropbox addon - Vicki1981 - 2016-09-01

Can some body send me working dbmc zip please would appreciate it, [email protected], thank you.


RE: Dropbox addon - ed_davidson - 2016-09-02

Here is the link to Dbmc version 0.9.3. I actually called it 0.9.6b in the addon.xml, so when 0.9.7 comes out it will get overwritten. I take no responsibility for this addon and am NOT the developer. Install at your own risk.

https://www.dropbox.com/s/j35j8iuxr7jnku2/plugin.dbmc-0.9.6b.zip?dl=1


RE: Dropbox addon - hellcatsagogo - 2016-09-23

Is there a way to rollback using a firestick? I used esfile explorer to install kodi first time. Hoping to figure out a way to fix this quickly. Thank you all!


Dropbox addon - ed_davidson - 2016-09-23

Add this source and install from zip.
http://archive.org/download/Ryansrepo


Sent from my iPhone


RE: Dropbox addon - inventati - 2016-09-25

I had urllib3 problem as well while installing on kodi 12.5

output of
Code:
python -c "import sys; print(sys.path)"

['', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', '/usr/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages/PIL', '/usr/lib/pymodules/python2.7']

so I have installed the library by:

Code:
apt-get install python-urllib3

and then edited the code in /home/pi/.kodi/addons/plugin.dbmc/resources/lib/dropbox/rest.py

from:
Code:
try:
   import urllib3
   except ImportError:
      raise ImportError('Dropbox python client requires urllib3.')
to:

Code:
try:
   import urllib3
except ImportError:
   try:
      import requests.packages.urllib3 as urllib3
   except ImportError:
      raise ImportError('Dropbox python client requires urllib3.')
as suggested here

The above solves the urllib3 library problem and I was able to follow the procedure until "

" Select/click on the "Finish adding account..." list item."

However.. a new error appears at this point:

Code:
..
Error Type: <type 'exceptions.TypeError'>
Error Contents: __init__() got an unexpected keyword argument 'ssl_version'
..

which sounds like a compatibility error

I hope this could be helpful


RE: Dropbox addon - hellcatsagogo - 2016-09-26

(2016-09-23, 05:46)ed_davidson Wrote: Add this source and install from zip.
http://archive.org/download/Ryansrepo


Look at this iPhone porn!

Thank you!!! This did the trick. Cant tell you how much i appreciate it!!!


RE: Dropbox addon - GoodGuy98 - 2016-10-07

(2016-09-23, 05:46)ed_davidson Wrote: Add this source and install from zip.
http://archive.org/download/Ryansrepo


typie typie on iPhone

It also fixed it for me. Thank you for your help.


RE: Dropbox addon - srnairn - 2016-10-14

Hi there. Absolutely love this app; thanks to the creators for this.

The plan with my OSMC Pi 3 setup is to synchronise pictures from Dropbox and display them in slideshow on a TV. So far this is working perfectly with the built in OSMC slideshow. But what I would like is for the slideshow to be able to change according to changes in the Dropbox folder. So if I add or delete pictures in Dropbox on another PC, the Pi would synchronise and the slideshow would change without having to access the Pi and restart the slideshow.

Does anyone know of any slideshow apps, or any scripts, that might do this?