Merge pull request #1638 from pandabear41/update-tls

Update Manager now uses TLS.
This commit is contained in:
Hussein Farran 2018-10-03 20:31:10 -04:00 committed by GitHub
commit 18fe7f8412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
This is the rolling changelog for TShock for Terraria. Use past tense when adding new entries; sign your name off when you add or change something. This should primarily be things like user changes, not necessarily codebase changes unless it's really relevant or large. This is the rolling changelog for TShock for Terraria. Use past tense when adding new entries; sign your name off when you add or change something. This should primarily be things like user changes, not necessarily codebase changes unless it's really relevant or large.
## Upcoming Changes ## Upcoming Changes
* Update tracker now uses TLS (@pandabear41)
* API: Added return in OnNameCollision if hook has been handled. (@Patrikkk) * API: Added return in OnNameCollision if hook has been handled. (@Patrikkk)
* API: Added hooks for item, projectile and tile bans (@deadsurgeon42) * API: Added hooks for item, projectile and tile bans (@deadsurgeon42)
* API: Changed `PlayerHooks` permission hook mechanisms to allow negation from hooks (@deadsurgeon42) * API: Changed `PlayerHooks` permission hook mechanisms to allow negation from hooks (@deadsurgeon42)

View file

@ -33,7 +33,7 @@ namespace TShockAPI
/// </summary> /// </summary>
public class UpdateManager public class UpdateManager
{ {
private const string UpdateUrl = "http://update.tshock.co/latest/"; private const string UpdateUrl = "https://update.tshock.co/latest/";
private HttpClient _client = new HttpClient(); private HttpClient _client = new HttpClient();
/// <summary> /// <summary>