Skip to content

Commit 175750d

Browse files
authored
Merge pull request #1 from lucidcode/fix-browser-launch
Fix browser launch
2 parents f9f2d28 + 53d1732 commit 175750d

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

Installer/Lucid Scribe Web.vdproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -351,15 +351,15 @@
351351
{
352352
"Name" = "8:Microsoft Visual Studio"
353353
"ProductName" = "8:Lucid Scribe Web"
354-
"ProductCode" = "8:{AD208D0C-5437-4DE7-823F-7A941AC50E9F}"
355-
"PackageCode" = "8:{1B04C2CA-2932-4CB2-B565-A0135C986547}"
354+
"ProductCode" = "8:{D1913A04-0AC3-4A67-BF19-38DCA9AE9411}"
355+
"PackageCode" = "8:{3F28393A-57FB-4BCC-8E26-B8AE6683132B}"
356356
"UpgradeCode" = "8:{43D08B97-E09B-45FA-97D2-B9B1971D8BDB}"
357357
"AspNetVersion" = "8:4.0.30319.0"
358358
"RestartWWWService" = "11:FALSE"
359359
"RemovePreviousVersions" = "11:TRUE"
360360
"DetectNewerInstalledVersion" = "11:TRUE"
361361
"InstallAllUsers" = "11:TRUE"
362-
"ProductVersion" = "8:1.0.0"
362+
"ProductVersion" = "8:1.0.5"
363363
"Manufacturer" = "8:lucidcode"
364364
"ARPHELPTELEPHONE" = "8:"
365365
"ARPHELPLINK" = "8:http://www.lucidcode.com/Contact"
@@ -883,7 +883,7 @@
883883
{
884884
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8A04AA9B98A94963AADF2135268ACC52"
885885
{
886-
"SourcePath" = "8:..\\Web\\obj\\Release\\lucidcode.LucidScribe.Plugout.Yocto.PowerRelay.dll"
886+
"SourcePath" = "8:..\\Web\\obj\\Release\\lucidcode.LucidScribe.Plugout.Web.dll"
887887
"TargetName" = "8:"
888888
"Tag" = "8:"
889889
"Folder" = "8:_491A001224CF4D699EA475B2FB5F2890"

Web/PlugoutHandler.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Diagnostics;
23
using System.Windows.Forms;
34
using System.Xml;
45

@@ -32,8 +33,13 @@ public override void Trigger()
3233
var settings = new XmlDocument();
3334
string path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\lucidcode\Lucid Scribe\Plugouts\Web.lsd";
3435
settings.Load(path);
35-
var url = settings.DocumentElement.SelectSingleNode("Plugout/Description");
36-
System.Diagnostics.Process.Start(url.InnerText);
36+
var url = settings.DocumentElement.SelectSingleNode("Plugout/Url").InnerText;
37+
var processStartInfo = new ProcessStartInfo("explorer.exe", url)
38+
{
39+
UseShellExecute = true,
40+
Verb = "open"
41+
};
42+
Process.Start(processStartInfo);
3743
}
3844
catch (Exception ex)
3945
{

Web/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.5.0")]
36+
[assembly: AssemblyFileVersion("1.0.5.0")]

Web/Web.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ProjectGuid>{9D2510C8-8722-4C77-BE58-A0B4D3DF069B}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>lucidcode.LucidScribe.Plugout.Yocto.PowerRelay</RootNamespace>
12-
<AssemblyName>lucidcode.LucidScribe.Plugout.Yocto.PowerRelay</AssemblyName>
11+
<RootNamespace>lucidcode.LucidScribe.Plugout.Web</RootNamespace>
12+
<AssemblyName>lucidcode.LucidScribe.Plugout.Web</AssemblyName>
1313
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<FileUpgradeFlags>

0 commit comments

Comments
 (0)