John Cass
John Cass
> I think this would also solve my issue that I get a FOREIGN KEY error when django-apscheduler tries to make a DjangoJobExecution object for the first time even though...
One issue with implementing a 'soft delete' feature like this is that, if a job is created that has the same name but vastly different semantic meaning and functionality than...
You will probably have to change the regular expressions in `RE_REG` and `RE_OPT` to cater for this. I don't have an answer for you off hand, but you could perhaps...
Would it perhaps be an option to be less strict when reading the sections and values, and just convert special characters to underscore before creating the variables? This is already...
I switched to using the 'next' branch which supports special characters in the section names. However I came across a complex example in one of the configuration files that I...
I've created pull request https://github.com/rudimeier/bash_ini_parser/pull/9 to add support for multiline values, and added a few other features similar to what can be found in Python's `RawConfigParser`. All of the tests...
Am I right in saying that an interim solution may just be to call `AudioListener.send('reached_end_of_stream')` somewhere here: https://github.com/jcass77/mopidy/blob/158a448e2b1e37305e59073f096546400d83ff00/mopidy/audio/actor.py#L373-L378 ...that should trigger the default skip-to-next-on-error behaviour when we encounter GST errors,...
@adamcik could you elaborate on this a little? What type of use cases are you referring to here?
I've done a bit of debugging on this issue. The problem arises when the next track starts to play, and the state is changed to `GST_STATE_PLAYING`. For some reason `self._playbin.get_property('volume')`...
@dRaiser does this happen on every track change or only for some types of tracks or playlists?