Philip Whitfield
Philip Whitfield
Add directory watching features to le_file_watch. The API is a little bit of a mess for backwards compatibility. It all started with the problem that I wanted to have the...
The implementation uses libvlc. Mainly because it is easy to use, cross platform and plays pretty much every video format. It might also be useful to implement le_audio sometime The...
I just wrote into the wrong main.cpp because I didn't realize that it was the file from the older project and not the new one
I have the following CMakeLists.txt: ``` FILE(GLOB_RECURSE SOURCES "src/*") add_executable(server ${SOURCES}) ## SAMPLE APP FILE(GLOB_RECURSE SOURCES_SAMPLE "sample/*") add_executable(sample ${SOURCES_SAMPLE}) ``` Compile and Run opens the server executable. Is there a...
I use std::shared_mutex in my project. And it compiles fine. But autocomplete does not find the type and declares my whole class as useless. I dont really know what you...
Would be nice to have some sort of file template system. Where you could just replace some placeholders. That way it would be easy to add a new class with...
Is there a way to enable GL_VERTEX_PROGRAM_POINT_SIZE within the opengl renderer?
I have a django cabinet custom File that inherits the TranslatableModel something like: ``` # models.py class File(TranslatableModel, AbstractFile, ImageMixin): FILE_FIELDS = ['image_file'] # Add caption and copyright, makes FileAdmin...