Skip to content

Commit

Permalink
Update logger and ssh libraries to latest versions Fixes #870
Browse files Browse the repository at this point in the history
  • Loading branch information
jimradford committed Jan 29, 2023
1 parent 635223f commit 68d5edb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
1.5.0
- Minor changes Fixes version issue with SuperPuTTY auto updater
1.4.10
- New Features from Sebastian Gemeiner
* Win+Shift Handling (Multi Monitor Setup)
Expand All @@ -18,7 +20,7 @@

1.4.0.8
- Fixes Issue #528 mintty (2.1.4) exiting and throwing exception due to default behavior change in mintty daemonize option.
- Fixes Issue #546 Option Added to override and allow -pw <password> command line option to be sent. Defaults to not allow the -pw option.
- Fixes Issue #546 Option Added to override and allow -pw <yourpassword> command line option to be sent. Defaults to not allow the -pw option.
- Updated Readme file to promote our Facebook page
- Resolves Issue #423 Support added to define shortcut key that will allow rename tab.
- Issue #530 Adds support to persist Command Bar History between sessions
Expand Down
8 changes: 4 additions & 4 deletions SuperPutty/SuperPutty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.13\lib\net45\log4net.dll</HintPath>
<Reference Include="log4net, Version=2.0.15.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.15\lib\net45\log4net.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="Renci.SshNet, Version=2020.0.1.0, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
<HintPath>..\packages\SSH.NET.2020.0.1\lib\net40\Renci.SshNet.dll</HintPath>
<Reference Include="Renci.SshNet, Version=2020.0.2.0, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
<HintPath>..\packages\SSH.NET.2020.0.2\lib\net40\Renci.SshNet.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.configuration" />
Expand Down
4 changes: 2 additions & 2 deletions SuperPutty/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="DockPanelSuite" version="3.1.0" targetFramework="net45" />
<package id="DockPanelSuite.ThemeVS2005" version="3.1.0" targetFramework="net45" />
<package id="log4net" version="2.0.13" targetFramework="net45" />
<package id="log4net" version="2.0.15" targetFramework="net48" />
<package id="Microsoft.VisualBasic" version="10.3.0" targetFramework="net45" />
<package id="SSH.NET" version="2020.0.1" targetFramework="net45" />
<package id="SSH.NET" version="2020.0.2" targetFramework="net48" />
</packages>
4 changes: 2 additions & 2 deletions SuperPuttyUnitTests/SuperPuttyUnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
<StartupObject>SuperPuttyUnitTests.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.13\lib\net45\log4net.dll</HintPath>
<Reference Include="log4net, Version=2.0.15.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.15\lib\net45\log4net.dll</HintPath>
</Reference>
<Reference Include="nunit-console-runner">
<HintPath>NUnit\nunit-console-runner.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion SuperPuttyUnitTests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<packages>
<package id="DockPanelSuite" version="3.1.0" targetFramework="net45" />
<package id="DockPanelSuite.ThemeVS2005" version="3.1.0" targetFramework="net45" />
<package id="log4net" version="2.0.13" targetFramework="net45" />
<package id="log4net" version="2.0.15" targetFramework="net48" />
</packages>

0 comments on commit 68d5edb

Please sign in to comment.