Naman Dixit
Naman Dixit
Currently, all libraries are a part of the monorepo, which makes it harder for others to use. Also, since `bsnes` and `higan` share some of these libraries, keeping these in...
## Issue description ### Feature Request #### Problem to be solved After some time, when logged in to SCM Manager, the session expires, forcing the user to log in again....
Currently, if you run a command that continuously prints something to terminal and then scroll up using mouse scrolling; as soon as the command prints something new, the terminal scrolls...
`set-output` seems primed for deprecation [as documented here](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/). The page instructs us to replace it with shell redirection. The redirection syntax is inverted (redirection coming before `echo`) to prevent a...
For custom log formatting, one can use `SetLogOutputFunction`. However, after creating the log string, there is still the question of actually outputting it. SDL currently has no function to simply...
A wrapper around `fork`/`exec`, `CreateProcess`, etc. to allow launching child processes with arguments. This will make running an application with a server-client architecture ([similar to the original Quake](https://archive.gamedev.net/archive/reference/articles/article987.html)) easier. It's...
After [this commit](https://github.com/libsdl-org/SDL/commit/125ce7137987ec91b931b4fb97d9c3c7af88c377), `SDL_Log` doesn't print anything to the debugger if application is compiled with `/subsystem:windows`. If I use `OutputDebugStringA` or `OutputDebugStringW` manually, it works fine. Reverting to an [older...
In the absence of `chdir` (https://github.com/libsdl-org/SDL/issues/9428), one way to simulate a similar effect is to prefix an absolute base path to the relative path to get the absolute path of...
Now that ABI has been frozen, this won't get solved (unless another function gets added). But posting this here for the next decade when SDL 4 gets worked on :)...
Would there be interest in adding a function to get the MAC address of the machine in SDL? This would be useful in calculating UUIDv1. I could contribute the Windows...