Skip to content

Commit

Permalink
#26: Fixed Project url in about box
Browse files Browse the repository at this point in the history
  • Loading branch information
jirkapok committed Jun 16, 2017
1 parent 0fb4fd2 commit 93e02f2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/Terminals/Forms/AboutForm.Designer.cs

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

2 changes: 1 addition & 1 deletion Source/Terminals/Localization/LocalizedValues.Designer.cs

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

2 changes: 1 addition & 1 deletion Source/Terminals/Localization/LocalizedValues.resx
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
<value>Are you sure you want to delete this folder?</value>
</data>
<data name="TerminalsURL" xml:space="preserve">
<value>terminals.codeplex.com</value>
<value>https://github.com/terminals-Origin/Terminals</value>
</data>
<data name="UnableToRemoteShutdown" xml:space="preserve">
<value>Terminals was not able to shutdown the machine remotely.</value>
Expand Down
4 changes: 2 additions & 2 deletions Source/Terminals/Updates/UpdateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal Task<ReleaseInfo> CheckForUpdates(bool automaticallyUpdate)

private ReleaseInfo PerformCheck(bool automaticallyUpdate)
{
ReleaseInfo downLoaded = this.CheckForCodeplexRelease(Program.Info.Version);
ReleaseInfo downLoaded = this.CheckForPublishedRelease(Program.Info.Version);

// todo the automatic updates point to wrong URL this feature is not working
bool autoUpdate = automaticallyUpdate; // obtain from command line arguments
Expand All @@ -53,7 +53,7 @@ private ReleaseInfo PerformCheck(bool automaticallyUpdate)
return downLoaded;
}

internal ReleaseInfo CheckForCodeplexRelease(Version currentVersion)
internal ReleaseInfo CheckForPublishedRelease(Version currentVersion)
{
try
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Tests/UpdateManagerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private ReleaseInfo RunUpdateCheck()
]";

var updateManager = new UpdateManager(() => CreateRss);
return updateManager.CheckForCodeplexRelease(this.currentVersion);
return updateManager.CheckForPublishedRelease(this.currentVersion);
}

private void AssertLastUpdateCheck()
Expand Down

0 comments on commit 93e02f2

Please sign in to comment.