Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FlowVision/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -883,12 +883,12 @@ private void documentationToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("https://github.com/flowdevs-io/Recursive-Control/wiki");
System.Diagnostics.Process.Start("https://flowdevs-io.github.io/Recursive-Control");
}
catch
{
MessageBox.Show("Could not open documentation.\n\n" +
"Visit: https://github.com/flowdevs-io/Recursive-Control/wiki",
"Visit: https://flowdevs-io.github.io/Recursive-Control",
"Documentation",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
Expand Down
57 changes: 57 additions & 0 deletions UI_DOCS_LINK_UPDATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# UI Documentation Link Updated

## Changes Made

Updated the documentation link in the FlowVision UI to point to the new GitHub Pages documentation site.

### File Modified
- **`FlowVision/Form1.cs`** - Updated `documentationToolStripMenuItem_Click` method

### Changes
**Before:**
- URL: `https://github.com/flowdevs-io/Recursive-Control/wiki`
- Fallback message: `Visit: https://github.com/flowdevs-io/Recursive-Control/wiki`

**After:**
- URL: `https://flowdevs-io.github.io/Recursive-Control`
- Fallback message: `Visit: https://flowdevs-io.github.io/Recursive-Control`

## Location in UI

Users can access documentation via:
- **Menu**: Help → Documentation
- This opens the comprehensive GitHub Pages documentation site

## What Users Will See

When clicking the documentation menu item, users will now be taken to:
https://flowdevs-io.github.io/Recursive-Control

This provides:
- Complete installation guide
- Getting started tutorial
- API reference for developers
- Multi-agent architecture explanation
- Troubleshooting guide
- FAQ section

## Branch & Pull Request

- **Branch**: `update-docs-link`
- **Base**: `master`
- **Files Changed**: 1 file, 2 lines modified

## Next Steps

1. Create pull request: https://github.com/flowdevs-io/Recursive-Control/pull/new/update-docs-link
2. Review and merge the PR
3. Users will get the new documentation link in the next build

## Note

The "About" dialog (Help → About) still shows the main repository link (`github.com/flowdevs-io/Recursive-Control`) which is correct - that points to the project home, while the documentation link now specifically points to the documentation site.

---

**Status**: ✅ Changes committed and pushed to `update-docs-link` branch
**Ready for**: Pull request and merge