[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-10-04 Thread matysek
** Changed in: openlp Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Wor

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-19 Thread Launchpad Bug Tracker
** Branch linked: lp:openlp -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentation Software: Fix Commi

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-16 Thread matysek
** Branch linked: lp:~mzibricky/openlp/bug-963894 ** Branch unlinked: lp:~briantmeyer/openlp/bug-963955 ** Changed in: openlp Status: Confirmed => Fix Committed -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.laun

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-16 Thread matysek
This fix didn't get into 1.9.12 code tree but should be part of OpenLP 1.9.12 osx build. -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-16 Thread Matthias Hub
works for me now, thanks a lot! -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentation Software: Fix C

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-14 Thread matysek
** Changed in: openlp Assignee: Brian Meyer (briantmeyer) => matysek (mzibricky) -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Sta

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-14 Thread Raoul Snyman
** Changed in: openlp Milestone: 1.9.12 => 2.0 -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentatio

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-11 Thread matysek
Hi Brian, what is the status of fix for this bug? Is the code in related branch ready for merging to trunk and be part of 1.9.12 being released this weekend? -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-09-05 Thread Raoul Snyman
** Changed in: openlp Milestone: None => 1.9.12 -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentati

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-21 Thread Brian Meyer
This code is already in a try statement inside vlcplayer.py, putting the try right around the dll loading allows it to indicate what is actually wrong when the issue happens, but it does not . I think i'd need to actually load the dll inside our codebase if vlc.py cannot be changed, recreating the

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-21 Thread Brian Meyer
Correction: missed finishing the first paragraph * but it does not seem to work from outside the function which actually loads the dll. -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title:

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-21 Thread Jonathan Corwin
My "If so" should be "If the latter" -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentation Software:

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-21 Thread Jonathan Corwin
Agreed that we can't change vlc.py since we it gets updated now and again. Is it an OpenLP specific fix, or a fix that other developers using vlc.py will benefit from? If so, I'd suggest offering it to the VLC community and see if they'll merge it. Otherwise a solution in vlcplayer.py will need t

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-21 Thread matysek
I confirm the issue with vlc not available is fixed. If vlc is not found it really cannot be activated in the available media players list. I think it would be better to have the fix in vlcplayer.py since oneday someone could replace vlc.py with newer version and vlc changes would be lost. --

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-20 Thread Brian Meyer
I have made changes to vlc.py seems to fix this issue. It is able to handle vlc not being present, or the 64 bit version being installed. To use VLC it requires the 32/64 bit version, or the 32 version of vlc. If not present, it marks VLC as disabled ( which grays out the checkbox in the UI and

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-08-12 Thread Matthias Hub
Yes, the issue is AFAIK in core/ui/media/vlcplayer.py, it reads here at the beginning: except OSError, e: if sys.platform.startswith('win'): if not isinstance(e, WindowsError) and e.winerror != 126: raise else: raise I expect that adding an else with elif

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-07-07 Thread matysek
It is not a bug in vlc.py. It's a bug in openlp. Openlp should handle the OSError exception if the vlc.py fails to detect the presence of installed VLC on Mac. I think it was also reported for other OSes. If it was fixed for other OSes then it could be probably fixed for Mac too. -- You receive

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-07-07 Thread Andreas Preikschat
Am I correct and this is a bug in vlc.py? -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentation Softwar

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-04-21 Thread Raoul Snyman
** Tags added: osx vlc -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac if vlc not available Status in OpenLP - Worship Presentation Software: Confirmed Bug

[Openlp-core] [Bug 963894] Re: openlp not starting on Mac if vlc not available

2012-04-04 Thread Jonathan Corwin
** Changed in: openlp Status: New => Confirmed ** Changed in: openlp Importance: Undecided => High -- You received this bug notification because you are a member of OpenLP Core, which is subscribed to OpenLP. https://bugs.launchpad.net/bugs/963894 Title: openlp not starting on Mac i