caffeinepills

Results 101 comments of caffeinepills

While I like this idea and have been wanting something like it for a while. I have a feeling in the back of my mind that this is a bandaid...

> The problem is, that it doesn't solve the problem that you mention. Suppose two handlers both specify priority -1, wanting to be called at the end. Which one will...

Just to add, we added XInput support, which is for Xbox-type controllers. There are programs that convert a controller to an XInput device (like ds4windows, ds4 to xinput wrappers, etc)....

I have seen this only once or twice before in thousands of launches, and it's not reproducible. Sometimes the `_view_hwnd` returns a crazy long number like 12908519258019200, when normally it's...

It should be 64 or 32 bit depending on machine. See this code in `libs\win32\types.py` ```py class c_void(Structure): # c_void_p is a buggy return type, converting to int, so #...

According to https://developer.apple.com/documentation/appkit/nsapplication/1428485-nexteventmatchingmask, where the event comes from (as well as `send_super` function) It should only return a `NSEvent` which is guaranteed to have a `type`. `NSSingleObjectArrayI` isn't even mentioned...

It's planned, but no specific date.

I want to say it was created to only support up to 16 bit audio. https://github.com/pyglet/pyglet/blob/916b9563fd68dcefa89d225b02b79a7b838496ec/pyglet/media/codecs/ffmpeg.py#L513 You can try modifying this line to `(8, 16, 32)` instead of just `(8,...

I just tested this and was able to play a 24 bit FLAC's (from test FLACs) with that line change on Windows. Can you post an example of a FLAC...

You are running `pyglet.app.run` twice. You only need to call it once. Refer to this example on multiple windows: https://github.com/pyglet/pyglet/blob/pyglet-1.5-maintenance/examples/multiple_windows.py