Skip to content

Commit 536894c

Browse files
committed
move to view menu
1 parent a08ce32 commit 536894c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To verify the status of AI controls on end-user machines, the Phoenix Code AI Co
114114
### Checking Status in Desktop App
115115

116116
1. Open Phoenix Code
117-
2. Navigate to File → Check AI Control Status
117+
2. Navigate to View → AI Control Status
118118
3. A dialog will appear showing your current configuration:
119119
- AI Status (Enabled/Disabled)
120120
- Platform information
@@ -126,7 +126,7 @@ To verify the status of AI controls on end-user machines, the Phoenix Code AI Co
126126

127127
1. Open Phoenix Code in your web browser
128128
2. Install the extension (File → Extension Manager → "Phoenix Code AI Control")
129-
3. Navigate to File → Check AI Control Status
129+
3. Navigate to View → AI Control Status
130130
4. The browser will check if `ai.phcode.dev` is accessible:
131131
- First shows "Checking if AI is disabled..."
132132
- Then displays whether AI is available or blocked
@@ -157,7 +157,7 @@ The browser version of Phoenix Code will automatically detect if the domain is u
157157

158158
### How do I know if AI control is working?
159159

160-
In both the desktop and browser versions, go to File → Check AI Control Status to see a detailed report.
160+
In both the desktop and browser versions, go to View → AI Control Status to see a detailed report.
161161

162162
### Can I allow specific users to access AI features?
163163

@@ -187,7 +187,7 @@ Simply run the installation script again with the new parameters. The script wil
187187

188188
### How can I verify that the firewall is properly blocking AI access?
189189

190-
In the browser version, use the "Check AI Control Status" option which will attempt to connect to the AI service and report whether it's accessible or blocked.
190+
In the browser version, use the View → AI Control Status option which will attempt to connect to the AI service and report whether it's accessible or blocked.
191191

192192
## Support
193193

main.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,11 @@ define(function (require, exports, module) {
6464

6565
// Register command for AI Control Status check
6666
var AI_CONTROL_STATUS_ID = "phoenix.aiControlStatus";
67-
CommandManager.register("Check AI Control Status", AI_CONTROL_STATUS_ID, checkAIControlStatus);
67+
CommandManager.register("AI Control Status", AI_CONTROL_STATUS_ID, checkAIControlStatus);
6868

69-
// Add menu item to File menu
70-
var menu = Menus.getMenu(Menus.AppMenuBar.FILE_MENU);
69+
// Add menu item to View menu, below theme settings
70+
var menu = Menus.getMenu(Menus.AppMenuBar.VIEW_MENU);
71+
menu.addMenuDivider();
7172
menu.addMenuItem(AI_CONTROL_STATUS_ID);
7273

7374
// Initialize extension once shell is finished initializing

0 commit comments

Comments
 (0)