From 47162916c00337925511d32e15d408e5db8eaa91 Mon Sep 17 00:00:00 2001 From: Ryan Stecker Date: Sat, 11 Oct 2014 22:11:40 -0500 Subject: [PATCH] Update assembly info. --- .../SteamKit2/Properties/AssemblyInfo.cs | 2 +- SteamKit2/SteamKit2/changes.txt | 40 +++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs b/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs index 7771a6d1a..374f05bb8 100644 --- a/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs +++ b/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs @@ -39,7 +39,7 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion( "1.5.1.*" )] +[assembly: AssemblyVersion( "1.6.0.*" )] #if DEBUG [assembly: InternalsVisibleTo( "Tests" )] diff --git a/SteamKit2/SteamKit2/changes.txt b/SteamKit2/SteamKit2/changes.txt index f3ca40f53..3da14d1df 100644 --- a/SteamKit2/SteamKit2/changes.txt +++ b/SteamKit2/SteamKit2/changes.txt @@ -1,4 +1,44 @@ +------------------------------------------------------------------------------ +v 1.6.0 Oct 11, 2014 +------------------------------------------------------------------------------ + +* Updated EOSType for newer Linux and Windows versions. +* A LoggedOnCallback with EResult.NoConnection is now posted when attempting to logon without being + connected to the remote Steam server. +* Fixed anonymous gameserver logon. +* CDNClient.Server's constructor now accepts a DnsEndPoint. +* Updated EResult with the following new fields: AccountLogonDeniedNeedTwoFactorCode, ItemDeleted, + AccountLoginDeniedThrottle, TwoFactorCodeMismatch +* Added public utility class for working with DateTime and unix epochs: DateUtils +* Added GetSingleFileInfo, ShareFile and related callbacks for dealing with Steam cloud files with the + SteamCloud handler. +* Fixed a potential crash when failing to properly deserialize network messages. +* Updated EMsg list. +* Refactored the internals of tcp connections to Steam servers to be more resiliant and threadsafe. +* CallbackMsg.Handle will now return a boolean indiciating that the passed in callback matches the + generic type parameter. +* Added support for logging into accounts with two-factor auth enabled. See the + SteamUser.LogOnDetails.TwoFactorCode field. +* Updated the bootstrap list of Steam CM servers that SteamKit will initially attempt to connect to. +* Added SteamFriends.FriendMsgEchoCallback for echoed messages sent to other logged in client + instances. +* Updated game related GC messages and protobufs. + +BREAKING CHANGES +* JobCallback API has been merged with Callback. For help with transitioning code, please see the following + wiki notes: https://github.com/SteamRE/SteamKit/wiki/JobCallback-Transition. +* UFSClient.UploadFileResponseCallback.JobID has been renamed to RemoteJobID in order to not conflict with + CallbackMsg's new JobID member. +* UFSClient.UploadDetails.JobID has been renamed to RemoteJobID. +* CDNClient has been refactored to support multiple authdepot calls for a single instance of the client + and to support CDN servers. +* The following EResult fields have been renamed: + PSNAccountNotLinked -> ExternalAccountUnlinked + InvalidPSNTicket -> PSNTicketInvalid + PSNAccountAlreadyLinked -> ExternalAccountAlreadyLinked + + ------------------------------------------------------------------------------ v 1.5.1 Mar 15, 2014 ------------------------------------------------------------------------------