Skip to content

Commit 134c129

Browse files
committed
update README.md, fix MainForm link
1 parent 0a9fa5c commit 134c129

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,9 @@ The **Universal Robots SDK** enables seamless integration with Universal Robots
1717

1818
---
1919

20-
<p align="center">
21-
<a href="https://github.com/underautomation/UniversalRobots.NET/stargazers"><b>⭐ Star if you like it !</b></a>
22-
</p>
23-
<p align="center">
24-
<a href="https://github.com/underautomation/UniversalRobots.NET/watchers"><b>👁️ Watch to be notified of latest updates !</b></a>
25-
</p>
20+
[⭐ Star if you like it !](https://github.com/underautomation/UniversalRobots.NET/stargazers)
21+
22+
[👁️ Watch to be notified of latest updates !](https://github.com/underautomation/UniversalRobots.NET/watchers)
2623

2724
---
2825

@@ -35,7 +32,7 @@ The **Universal Robots SDK** enables seamless integration with Universal Robots
3532
✔️ **Multi-Platform** – Works on Windows, Linux, and macOS
3633
✔️ **Commercial License** – Deploy with no royalties
3734

38-
📹 **Watch Introduction Video :**
35+
📹 **Watch Introduction Video**
3936

4037
https://user-images.githubusercontent.com/47540360/143318635-6d6aaaf4-5642-457a-8ff1-4322f2defe82.mp4
4138

UnderAutomation.UniversalRobots.Showcase.Forms/MainForm.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3+
using System.Diagnostics;
34
using System.Drawing;
45
using System.Linq;
56
using System.Windows.Forms;
@@ -139,7 +140,16 @@ internal void SelectNode(TreeNode node)
139140
// Open browser to documentation page
140141
private void lblLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
141142
{
142-
System.Diagnostics.Process.Start("https://underautomation.com/universal-robots/documentation?f");
143+
try
144+
{
145+
var ps = new ProcessStartInfo("https://underautomation.com/universal-robots")
146+
{
147+
UseShellExecute = true,
148+
Verb = "open"
149+
};
150+
Process.Start(ps);
151+
}
152+
catch { }
143153
}
144154
#endregion
145155

0 commit comments

Comments
 (0)