summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2026-04-23 21:00:21 -0700
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-05-10 17:18:29 -0700
commitb05c5f837869582e89d235b57ad0ee5207039d2a (patch)
treebaf5d732f98e59a0043f1ee6b8a9280a98cdcf5c /plugins
parent73c8554b8d5d460ed8fc331e787b9b272882e9b1 (diff)
[BNTL] Rename commands root from "BNTL" to "Type Library"
Fixes https://github.com/Vector35/binaryninja-api/issues/8089
Diffstat (limited to 'plugins')
-rw-r--r--plugins/bntl_utils/src/lib.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/bntl_utils/src/lib.rs b/plugins/bntl_utils/src/lib.rs
index fb96746a..381ea211 100644
--- a/plugins/bntl_utils/src/lib.rs
+++ b/plugins/bntl_utils/src/lib.rs
@@ -24,37 +24,37 @@ fn plugin_init() -> Result<(), ()> {
binaryninja::tracing_init!("BNTL Utils");
binaryninja::command::register_command(
- "BNTL\\Create\\From Current View",
+ "Type Library\\Create\\From Current View",
"Create .bntl files from the current view",
command::create::CreateFromCurrentView {},
);
binaryninja::command::register_command_for_project(
- "BNTL\\Create\\From Project",
+ "Type Library\\Create\\From Project",
"Create .bntl files from the given project",
command::create::CreateFromProject {},
);
binaryninja::command::register_global_command(
- "BNTL\\Create\\From Directory",
+ "Type Library\\Create\\From Directory",
"Create .bntl files from the given directory",
command::create::CreateFromDirectory {},
);
binaryninja::command::register_global_command(
- "BNTL\\Diff",
+ "Type Library\\Diff",
"Diff two .bntl files and output the difference to a file",
command::diff::Diff {},
);
binaryninja::command::register_global_command(
- "BNTL\\Dump To Header",
+ "Type Library\\Dump To Header",
"Dump a .bntl file to a header file",
command::dump::Dump {},
);
binaryninja::command::register_global_command(
- "BNTL\\Validate",
+ "Type Library\\Validate",
"Validate a .bntl file and report the issues",
command::validate::Validate {},
);