Eugene
Eugene
@Tyriar the color was already `#00000000` at that point. There seems to be some weird handling specifically for `#000` in place: When `_getForegroundCss() == '#000000'`:  When `_getForegroundCss() == '#010101'`:...
Not sure what to do about this one though - looking at the event traces, it's due to the missing `compositionupdate` events. I'm very reluctant to "just" emulate them -...
What's weird is that VSCode terminal _already_ doesn't work for me in the stable release since it runs on 13.5.2. I'm starting to suspect it might be related to my...
It's specifically v12.0.9 and v13.1.7 that stopped working (haven't bisected later major releases, and don't need to) - the only overlap between the two is this commit: https://github.com/electron/electron/commit/2e096ac6bc91fd25b1f500d815a5e945314a3d64, which is...
No, sorry, I'm not one of the core developers.
`now` isn't "using" seconds, it's a `datetime` object.
Sea-ORM has now also recently gone to v1 in their update :+1:
Maybe the Object derive macro could also accept an `#[oai(generic_name_format="{}")]` and use it to generate the name
No, I've already worked around it by just modifying the generated JSON schema in my code.
Non-jquery version: ```js $rootScope.$watch(() => document.querySelectorAll('.modal').length, val => { // everytime the number of modals changes if (val > 0) { $uibModalStack.getTop().value.backdrop = 'static' } for (let modal of document.querySelectorAll('.modal'))...