Georgi Gerganov

Results 420 comments of Georgi Gerganov

It uses the [Dear ImGui](https://github.com/ocornut/imgui) library. I think I was able to modify the CMake configuration to properly install targets. You can try with this release: https://github.com/ggerganov/imtui/releases/tag/v1.0.2 To build shared...

'libimtui' just renders the ImGui draw data into a memory buffer. You now need a way display this buffer on the screen and also provide input from the keyboard and/or...

Hi @carlosjoserg . Thanks for the info. > I recently synced our fork at master to test the install feature... but I wasn't able to build directly. Yes, I think...

@carlosjoserg I made a PR that should fix the CMake install targets: #26 Let me know if that works for you. @jubalh After we merge #26 I will make a...

@jubalh Just made the v1.0.4 release: https://github.com/ggerganov/imtui/releases/tag/v1.0.4 There is also a tarball attached. To build, use: ```bash tar -zxvf imtui-1.0.4.tar.gz cd imtui-1.0.4 mkdir build && cd build cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_PREFIX=/some/path/to/install...

I added the option and made release v1.0.5: https://github.com/ggerganov/imtui/releases/tag/v1.0.5 Use like this: ``` cmake -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_PREFIX=/some/path/to/install -DIMTUI_INSTALL_IMGUI_HEADERS=OFF .. ``` I am wondering if it would be better if I moved...

@jubalh Regarding the library versioning: I also find this page and I think I now understand how it works: https://www.sourceware.org/autobook/autobook/autobook_61.html I should make a new release with version `0.0.0` and...

Latest `master` branch should support now mouse wheel - give it a try

It seems this change was not very portable, since it does not work in some terminals. I reverted it for now. Looking at Stack Overflow comments, it seems that mouse...

Thanks for the report. You should be able to fix this visual artifact using: ```c++ ImGui::GetStyle().GrabMinSize = 1.0f; ``` By default, the value is `0.1f`: https://github.com/ggerganov/imtui/blob/85d141de111f638a129a7a7a166d09cf0c5b5749/src/imtui-impl-text.cpp#L266