Skip to content

Commit 2259fc5

Browse files
committed
fix: removing number ordering
1 parent 2da2890 commit 2259fc5

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

reai_toolkit/features/ai_decompiler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, config=None):
1616

1717
def register(self):
1818
PluginCommand.register_for_address(
19-
"RevEng.AI\\7 - AI Decompiler",
19+
"RevEng.AI\\\u200b\u200b\u200bFunctions\\AI Decompiler",
2020
"Get the AI decompiler for the current function",
2121
self.show_ai_decompiler_dialog,
2222
self.is_valid

reai_toolkit/features/auto_unstrip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, config=None):
1111

1212
def register(self):
1313
PluginCommand.register(
14-
"RevEng.AI\\4 - Auto Unstrip",
14+
"RevEng.AI\\Auto Unstrip",
1515
"Attempt to recover stripped function names",
1616
self.show_auto_unstrip_dialog,
1717
self.is_valid

reai_toolkit/features/choose_source/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, config=None):
1111

1212
def register(self):
1313
PluginCommand.register(
14-
"RevEng.AI\\3 - Choose Source",
14+
"RevEng.AI\\Analysis\​​Choose Source",
1515
"Choose a source for the binary analysis",
1616
self.show_choose_source_dialog,
1717
self.is_valid

reai_toolkit/features/configuration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self):
1111

1212
def register(self):
1313
PluginCommand.register(
14-
"RevEng.AI\\1 - Configure",
14+
"RevEng.AI\\​​​​Configure",
1515
"Configure RevEng.AI settings",
1616
self.show_configuration
1717
)

reai_toolkit/features/match_current_function/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, config=None):
1111

1212
def register(self):
1313
PluginCommand.register_for_address(
14-
"RevEng.AI\\6 - Match Current Function",
14+
"RevEng.AI\\\u200b\u200b\u200bFunctions\\\u200bMatch Current Function",
1515
"Search and match the current function against RevEng.AI database",
1616
self.show_match_current_function_dialog,
1717
self.is_valid

reai_toolkit/features/match_functions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, config=None):
1111

1212
def register(self):
1313
PluginCommand.register(
14-
"RevEng.AI\\5 - Match Functions",
14+
"RevEng.AI\\\u200b\u200bMatch Functions",
1515
"Search and match functions against RevEng.AI database",
1616
self.show_match_functions_dialog,
1717
self.is_valid

reai_toolkit/features/upload/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, config=None):
1111

1212
def register(self):
1313
PluginCommand.register(
14-
"RevEng.AI\\2 - Process Binary",
14+
"RevEng.AI\\Analysis\​Process Binary",
1515
"Process current binary to RevEng.AI for analysis",
1616
self.show_upload_dialog,
1717
self.is_valid

reai_toolkit/features/view_function_in_portal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __init__(self, config=None):
1212

1313
def register(self):
1414
PluginCommand.register_for_address(
15-
"RevEng.AI\\8 - View Function in Portal",
15+
"RevEng.AI\\\u200b\u200b\u200bFunctions\\\u200b\u200bView Function in Portal",
1616
"View the current function in the RevEng.AI portal",
1717
self.show_match_current_function_dialog,
1818
self.is_valid

0 commit comments

Comments
 (0)