Skip to content

Commit

Permalink
Fixed TopMost/jumping window
Browse files Browse the repository at this point in the history
added new about-page
  • Loading branch information
Manawyrm committed Apr 5, 2018
1 parent 7fec05f commit e23683d
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 3 deletions.
138 changes: 136 additions & 2 deletions PlutoSDR/PlutoSDRControllerDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions PlutoSDR/PlutoSDRControllerDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,5 +197,24 @@ private void agcEnabledCheckBox_CheckedChanged(object sender, EventArgs e)
}
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://tbspace.de");
}

private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/Manawyrm/sdrsharp-plutosdr/blob/master/LICENSE");
}

private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/Manawyrm/sdrsharp-plutosdr/issues");
}

private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("mailto:[email protected]");
}
}
}
1 change: 1 addition & 0 deletions PlutoSDR/PlutoSDRDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ public bool createContext()

try
{
//MessageBox.Show(_gui.deviceUriTextbox.Text);
_ctx = new iio.Context(_gui.deviceUriTextbox.Text);

_gui.libiioVersionLabel.Text = _ctx.backend_version.git_tag;
Expand Down
2 changes: 1 addition & 1 deletion PlutoSDR/SDRSharp.PlutoSDR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\..\..\..\Downloads\sdrsharp-x86\</OutputPath>
<OutputPath>..\..\..\..\SDR\sdrsharp-x86\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
Expand Down

0 comments on commit e23683d

Please sign in to comment.