Skip to content

Commit c4df871

Browse files
Merge pull request #43 from flowdevs-io/update-docs-link
Update docs link
2 parents a5405f0 + 53c41ca commit c4df871

2 files changed

Lines changed: 59 additions & 2 deletions

File tree

FlowVision/Form1.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -883,12 +883,12 @@ private void documentationToolStripMenuItem_Click(object sender, EventArgs e)
883883
{
884884
try
885885
{
886-
System.Diagnostics.Process.Start("https://github.com/flowdevs-io/Recursive-Control/wiki");
886+
System.Diagnostics.Process.Start("https://flowdevs-io.github.io/Recursive-Control");
887887
}
888888
catch
889889
{
890890
MessageBox.Show("Could not open documentation.\n\n" +
891-
"Visit: https://github.com/flowdevs-io/Recursive-Control/wiki",
891+
"Visit: https://flowdevs-io.github.io/Recursive-Control",
892892
"Documentation",
893893
MessageBoxButtons.OK,
894894
MessageBoxIcon.Information);

UI_DOCS_LINK_UPDATE.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# UI Documentation Link Updated
2+
3+
## Changes Made
4+
5+
Updated the documentation link in the FlowVision UI to point to the new GitHub Pages documentation site.
6+
7+
### File Modified
8+
- **`FlowVision/Form1.cs`** - Updated `documentationToolStripMenuItem_Click` method
9+
10+
### Changes
11+
**Before:**
12+
- URL: `https://github.com/flowdevs-io/Recursive-Control/wiki`
13+
- Fallback message: `Visit: https://github.com/flowdevs-io/Recursive-Control/wiki`
14+
15+
**After:**
16+
- URL: `https://flowdevs-io.github.io/Recursive-Control`
17+
- Fallback message: `Visit: https://flowdevs-io.github.io/Recursive-Control`
18+
19+
## Location in UI
20+
21+
Users can access documentation via:
22+
- **Menu**: Help → Documentation
23+
- This opens the comprehensive GitHub Pages documentation site
24+
25+
## What Users Will See
26+
27+
When clicking the documentation menu item, users will now be taken to:
28+
https://flowdevs-io.github.io/Recursive-Control
29+
30+
This provides:
31+
- Complete installation guide
32+
- Getting started tutorial
33+
- API reference for developers
34+
- Multi-agent architecture explanation
35+
- Troubleshooting guide
36+
- FAQ section
37+
38+
## Branch & Pull Request
39+
40+
- **Branch**: `update-docs-link`
41+
- **Base**: `master`
42+
- **Files Changed**: 1 file, 2 lines modified
43+
44+
## Next Steps
45+
46+
1. Create pull request: https://github.com/flowdevs-io/Recursive-Control/pull/new/update-docs-link
47+
2. Review and merge the PR
48+
3. Users will get the new documentation link in the next build
49+
50+
## Note
51+
52+
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.
53+
54+
---
55+
56+
**Status**: ✅ Changes committed and pushed to `update-docs-link` branch
57+
**Ready for**: Pull request and merge

0 commit comments

Comments
 (0)