Empirically speaking, any tests that involve copying multiple files should be slightly slower due to COPY command now outputting names of files as they are copied. I'm guessing that's the source of the delay.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8200#note_108646
--
v2: winex11: Add an option to use the new EGL OpenGL backend.
winex11: Remove now unnecessary x11drv_context structure.
win32u: Move EGL make_current context function out of the drivers.
win32u: Add an EGLSurface pointer to opengl_drawable struct.
win32u: Add traces to wglGetExtensionsString*.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8485
F1 and F3 allow partial retrieval of previous entry from console history. They are used as shortcuts such that if the following were entered at the command line:
```
md tmptmp
cd <F3>
```
F3 will retrieve the previous line from history past the cursor position, and be auto-completed to "cd tmptmp". F1 works in a similar fashion, but with one character at a time.
--
v3: conhost: Implement F1 and F3 support for history retrieval.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8467