feat: v0.0.10 — lib refactor, SQL helpers, UI context, IDAPython#18
Merged
feat: v0.0.10 — lib refactor, SQL helpers, UI context, IDAPython#18
Conversation
…ontext - Refactor lib: move header-only vtables to .cpp/.hpp pairs, add PCH - Add netnode_kv table with O(1) DELETE via entry_id rowid - Add bytes, fpos, make_code, gen_listing SQL helpers - Add label rename surfaces and UTF-8-safe query JSON - Add UI context provider for plugin selection awareness - Add IDAPython exec support - Simplify MCP server, remove embedded AI agent code - Fix set_numform to return false on metadata synthesis failure - Streamline CLI, server startup output, and clipboard text - Update README, CI workflow, and plugin metadata - Remove VERSION from CMakeLists.txt (canonical version in idasql_version.hpp)
On Linux/GCC, va_list is an array type and cannot be directly assigned via va_arg. Use va_list* as IDA's ui_msg passes it.
On GCC/Clang va_list is an array type (decays to pointer in varargs), on MSVC it's char* (passed by value). Use #ifdef _MSC_VER to handle both.
0xeb
added a commit
that referenced
this pull request
Mar 4, 2026
## Summary - Refactor library from header-only to compiled .cpp/.hpp modules - Add netnode_kv table, bytes/fpos/make_code/gen_listing SQL helpers - Add label rename and UI context provider - Add IDAPython execution support - Remove embedded AI agent (now handled externally via idasql-skills) - Streamline CLI and MCP server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary