Felix Niklas
Felix Niklas
> Maybe we could also increase the UUID length a bit in the same step. With 18 chars the collision probability will be roughly unchanged. Feedback on the thought of...
I know. That's why I wrote "the thought of changing the UUID length". I read that comment by yesterday Lukas yesterday and stumbled over the `char(16)` today so I thought...
I changed my commit: initially I was checking if `this.source` exists and if not I wouldn't queue `requestVideoFrameCallback`. Which would stop the whole thing. Not what I want. I investigated...
The bug is still very much there: I'm using both `text-translate` and `icon-translate` to offset symbols so that the pin points to the exact location. I would like to use...
@kubapelc thanks for looking into this and sharing your work. I tested it with http://kvaleya.gitlab.io/maplibre/aligndemo2/maplibre-gl-dev.js. Unfortunately the labels all move into the top left corner of the canvas:  How it should be placed: ([live version](https://www.chateauroyalberlin.com/en/art-and-restaurants-guide)) ![Screenshot 2024-04-08...
Nice addition with the `willReadFrequently` option on get context to optimize the `getImageData` calls. So you decreased the `areaThreshold` and `dimensionsThreshold` in `dimensions.js` from `6` to `4`. I don't know...
I can reproduce the bug in Chrome 126.
I ran into the same issue, both on the production server as well as my local environment. Both running PHP 8.1. Running `kirby()->site()->getEmbedData('https://youtu.be/s2R6bD2trz4?si=9TAkSLNA3e62QeQU')` produced an error status response with an...
I found a cleaner way to ignore the error – embed has a built in way: In `siteMethods.php` you can change: ```php $embed = new Embed\Embed(); ``` To: ```php use...