Admin message

BUG: Jobs from all GitLab Runners may fail to access private or internal Container Registry despite Job Token Permissions or Custom Permissions due to a bug in GitLab 18.11. There is no workaround available yet. We prefer to wait for a patch rather than risk problems with a downgrade. However, if you experience this problem and the functionality is critical for you, please let us know at gitlab@fi.muni.cz.

Input system does not update mouse position
`osi::mouse().position()->value()` is always `(0, 0)`. I needed mouse position and had to do a workaround using SDL directly: ```cpp float mouse_x = 0.0f; float mouse_y = 0.0f; SDL_GetMouseState(&mouse_x, &mouse_y); ``` Can be demonstrated by putting this code block into a `next_round` function of runner ```cpp float mouse_x = 0.0f; float mouse_y = 0.0f; SDL_GetMouseState(&mouse_x, &mouse_y); std::cout << "SDL mouse position: " << mouse_x << ", " << mouse_y << std::endl; vec2 osi_mouse = osi::mouse().position()->value(); std::cout << "Input system mouse position: " << osi_mouse.x << ", " << osi_mouse.y << std::endl; ```
issue