Jan Niklas Hasse

Results 121 comments of Jan Niklas Hasse

Yes (tested on Windows) edit: Btw this was with ANSI colors which got correctly stripped.

@ajohnson-ventera So what to use instead of webhooks? The README says to set it up using a webhook.

> So as far as rip is concerned, these are totally separate invocations. Isn't it one invocation with several arguments?

Can you add the D-tabcenter-parity label? This issue is also very important for me.

This should have the D-tabcenter-parity label, right?

You could use libappindicator. Together with [this extension](https://github.com/rgcjonas/gnome-shell-extension-appindicator) it will result in a menu in the top bar.

> * Have an application setting for "Run in the background" (could be a check box in the app menu) > * When run in the background is true, the...

For macOS: ```diff diff --git a/CMakeLists.txt b/CMakeLists.txt index de3e45fc..c05a3b65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -283,7 +283,16 @@ else() set_target_properties(jngl-test PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${PROJECT_SOURCE_DIR}/data/ios/jngl-test.in.plist") endif() else() - find_package(OpenAL REQUIRED) + if(APPLE)...

load could also return [std::jthread](https://en.cppreference.com/w/cpp/thread/jthread). C++20 (`std::jthread` in particular) compiler support: * [x] GCC 10: https://en.cppreference.com/w/cpp/compiler_support * [ ] Apple Clang * [x] MSVC * [ ] Android's Clang *...

This is how I include libtheora in my CMake project: ```cmake set(THEORA_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/theora) if ((NOT EXISTS ${THEORA_SRC_DIR}) OR (NOT EXISTS ${THEORA_SRC_DIR}/CMakeLists.txt)) execute_process(COMMAND git clone -b v1.1.1 https://git.xiph.org/theora.git WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/) endif()...