From 71ace2156b00e13536ec0f50f54dfb0d2a494301 Mon Sep 17 00:00:00 2001 From: Ryan Stecker Date: Sat, 15 Mar 2014 23:48:02 -0500 Subject: [PATCH] Update assembly info. --- .../SteamKit2/Properties/AssemblyInfo.cs | 4 +-- SteamKit2/SteamKit2/changes.txt | 29 +++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs b/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs index 9f707f6c1..7771a6d1a 100644 --- a/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs +++ b/SteamKit2/SteamKit2/Properties/AssemblyInfo.cs @@ -17,7 +17,7 @@ [assembly: AssemblyConfiguration( "" )] [assembly: AssemblyCompany( "SteamRE Team" )] [assembly: AssemblyProduct( "SteamKit2" )] -[assembly: AssemblyCopyright( "Copyright © SteamRE Team 2013" )] +[assembly: AssemblyCopyright( "Copyright © SteamRE Team 2014" )] [assembly: AssemblyTrademark( "" )] [assembly: AssemblyCulture( "" )] @@ -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.0.*" )] +[assembly: AssemblyVersion( "1.5.1.*" )] #if DEBUG [assembly: InternalsVisibleTo( "Tests" )] diff --git a/SteamKit2/SteamKit2/changes.txt b/SteamKit2/SteamKit2/changes.txt index 1f39f00f4..f3ca40f53 100644 --- a/SteamKit2/SteamKit2/changes.txt +++ b/SteamKit2/SteamKit2/changes.txt @@ -1,4 +1,33 @@ +------------------------------------------------------------------------------ +v 1.5.1 Mar 15, 2014 +------------------------------------------------------------------------------ + +* Added a parameterless public constructor to DepotManifest.ChunkData to support serialization. +* SteamWorkshop.RequestPublishedFileDetails has been obsoleted and is no longer supported. This functionality will be + dropped in a future SteamKit release. See the the PublishedFile WebAPI service for a functional replacement. +* Added the request and response messages for the PublishedFile service. +* Fixed an unhandled exception when requesting metadata-only PICS product info. +* Exposed the following additional fields in the LoggedOnCallback: VanityURL, NumLoginFailuresToMigrate, NumDisconnectsToMigrate. +* Exposed the HTTP url details for PICS product info, see: PICSProductInfoCallback.PICSProductInfo.HttpUri and UseHttp. +* Added EEconTradeResponse.InitiatorPasswordResetProbation and InitiatorNewDeviceCooldown. +* Fixed SteamGameServer.LogOn and LogOnAnonymous sending the wrong message. +* Added support for token authentication for game server logon. +* Added the request and response messages for the GameServers service. +* Added the ability to specify server type for game servers, see: SteamGameServer.SendStatus. +* Exposed a few more fields on TradeResultCallback: NumDaysSteamGuardRequired, NumDaysNewDeviceCooldown, + DefaultNumDaysPasswordResetProbation, NumDaysPasswordResetProbation. +* Fixed being unable to download depot manifests. +* Added SteamID.SetFromSteam3String. +* Obsoleted SteamApps.SendGuestPass. This functionality will be dropped in a future SteamKit release. +* Updated EResult with the following new fields: UnexpectedError, Disabled, InvalidCEGSubmission, RestrictedDevice. +* Updated EMsg list. +* Updated game related GC messages. + +BREAKING CHANGES +* Fixed ServiceMethodResponse.RpcName containing a leading '.'. + + ------------------------------------------------------------------------------ v 1.5.0 Oct 26, 2013 ------------------------------------------------------------------------------