Narfinger
Narfinger
Adding a list of self organized sessions similar to talks at the moment. This seems to be a list of all of them (time and place can be found on...
I tried everything to add a cospend project into this app but it always reports that it cannot find the server. The QR code gives me a giant red X...
When the library has some invalid items, the api requests can return an undefined ItemId. In the current version after editing the library it spins endlessly instead of changing or...
This creates a new method in shared/compositing/lib to generate image keys that are send over the webview. This does not immediately return the keys but goes over the constellation to...
Currently we allocate an extra string on the heap for each javascript string we convert. It should be possible to use the lifetime of the javascript engine string to avoid...
This includes some small refactoring and some small breaking changes as listed below. Other than these I tried to keep the functionality exactly the same but because in the old...
Somewhere in the transition to SafeJSContext, I did not merge correctly and used the DOMString::from_String method instead of the DOMString::from_js_string method, hence, defeating the lazyness. This fixes this. Signed-off-by: Narfinger...
This replaces the RasterImage::bytes which was IpcSharedMemory to the ImageCache having ImageByteStorage which is a RwLock. The RasterImage now only owns the opaque type ImageByteStorageIndex and queries the ImageCache via...
RasterImage is now not seralizeable and backed by Vec storage. Add a new struct `SharedRasterImage` that allows serializeing. This can be constructed from RasterImage. Requires merge of https://github.com/servo/servo/pull/40453. This introduces...
RasterImage and SharedRasterImage are now using a common base struct. Testing: Does not change functionality.