1
0
mirror of synced 2024-11-28 17:40:51 +01:00

fix: Only 5 patterns per byte being highlighted

Fixes #1076
This commit is contained in:
WerWolv 2023-05-16 14:41:02 +02:00
parent 0dcfeaefb3
commit e28f2dfea1
2 changed files with 6 additions and 4 deletions

@ -1 +1 @@
Subproject commit 113917c4472d61692ac8e8feff922d416efcef1d
Subproject commit 1ae53df9d2469ed57a9e92ba8ebd763b07634606

View File

@ -17,12 +17,14 @@ namespace hex::plugin::builtin {
nlohmann::json result;
result["build"] = {
{ "version", IMHEX_VERSION },
{ "version", IMHEX_VERSION },
#if defined(GIT_COMMIT_HASH_LONG)
{ "commit", GIT_COMMIT_HASH_LONG },
{ "commit", GIT_COMMIT_HASH_LONG },
#endif
#if defined(GIT_BRANCH)
{ "branch", GIT_BRANCH },
{ "branch", GIT_BRANCH },
#endif
};