release history fun

Upload: zaco

Post on 05-Oct-2015

38 views

Category:

Documents


0 download

DESCRIPTION

This is the release history of a game called BlankZone. I find it as a very fun game. Another great example of a game.

TRANSCRIPT

* release_history.txt* Release history for the DotNet Photon Client Library (DotNet / Unity3D / Windows 8 RT / Windows Phone 8 / PlayStation Mobile)(C) 2014 Exit Games GmbH, http://www.exitgames.comQuestions? Visit:https://www.exitgames.comhttp://doc.exitgames.comhttp://forum.exitgames.com*** Version 4.0.0.8 (14. January 2015 - rev2765) Fixed: Serialization of custom types with nested Serialize-calls. In this case, re-using a specific memory stream breaks it.*** Version 4.0.0.7 (12. January 2015 - rev2763) Fixed: Serialization of arrays of custom-types.Chat API Internal: Changed code for UserID from 7 to 225. The latter is used in LoadBalancing, too, so we want to re-use the code here.*** Version 4.0.0.6 (05. December 2014 - rev2758) Added: ChatApi and LoadBalancingApi folders to Unity SDK. They are needed in any Photon project with Unity. When updating, copy and paste the files over existing ones and make sure to replace the assembly-files, too. Changed: Protocol to save more memory or re-use it. The idea is to have less Garbage Collection (primarily for Unity/PUN and custom types). Added: New CustomType de/serialization methods which provide the MemoryStream, instead of a byte[] COPY from the stream. Changed: Now using one method to identify a Type. This was duplicated code before. Changed: De/Serialization of some types. Note: The drawback is now, that there are more places with: lock(). This is far from optimal but the alternative would be to make Protocol instances per thread. As most is static at the moment, this would not be an easy task. Added: position check for DeserializeStreamFunction() call. Stream position must be "previous + customtype length". It gets corrected but at the moment no error is thrown. Changed: DispatchIncomingCommands() no longer instantiates the commandsToRemove each call. This is reused and thus saves memory. Changed: net_fx build will now check IsConstructedGenericType to detect if something is a dictionaryLoadBalancing ADDED: LoadBalancingClient.OpJoinOrCreateRoom overload which has lobby as parameter. If a room gets created, this defines in which lobby it belongs. CHANGED: LoadBalancingPeer: Added new error code PluginMismatch, documentation for Plugins parameter code.*** Version 4.0.0.5 (23. September 2014 - rev2738) Updated: AddFriends and RemoveFriends doc.Changed: Logging level for two cases. Dropping a package due to failed CRC-check is now logged for INFO. It's expected and certainly not an error. Dropping a package when the incoming challenge does not match is also not an ERROR. It is expected when you switch servers and packages arrive late. This is now debug level ALL.*** Version 4.0.0.4 (19. September 2014 - rev2736) Fixed: Fragmentation when CRC checks are enabled. This kept clients from sending fragmented commands when the additional 4 bytes CRC were included later on. Fixed: An issue in the ChatClient which was referring to a class from Photon Unity networking. This caused compile issues in the Unity Chat Demo. Updated: Reference doc generation.*** Version 4.0.0.3 (15. September 2014 - rev2731) Updated: Doc generation settings and style. Note: This version has no code changes to rev2728 described below. That version is already released in the Unity Asset Store in PUN.*** Version 4.0.0.3 (11. September 2014 - rev2728) Fixed: A simple "order of things" issue when detecting a timeout (due to resends). We first have to set "Zombie" state so that any Disconnect() call created a disconnect-command with reserved byte = 2 = "due to timeout". Fixed: Chat to be compatible with native sockets of PUN+ (iOS and Android exports from Unity). Fixed: Access to native sockets (in classes SocketUdpNativeDynamic and SocketUdpNativeStatic) is now using a lock(). The native methods are not thread safe but we need more than one socket for PUN+ and Chat (with native sockets, too). Changed: Logging for the case "Ignoring received package due to wrong challenge". This got logged on log-level ERROR but maybe is better as WARNING only. Now this should log less often. Internal: Updated to a newer native-sockets interface. Internal: Updated to a newer native-sockets interface (affects PUN+ only). Cleaned up precompile defines and #if usage.*** Version 4.0.0.2 (01. August 2014 - rev2715) Added: PhotonPing class and subclasses per platform. Allows clients to use regular UDP messages to ping our servers and find the best region. Added: Native and Win8 support for PhotonPing. Known Issue: Native ping has to be done "one by one" and without any other connection in Unity. It's not yet thread safe (but that is ok as we don't want to ping most of the time but only rarely and out of game). Added: PhotonPing class/file to Win8 platforms. Changed: The extern static methods for the native libs are now internal (instead of private). Pings are using them, too. Changed: WebRpcResponse.ReturnCode comment to include fail code. Changed: OpWebRpc doc is now much more complete and helpful. Updated: Unity SDK Particle Demo (more) and LoadBalancing Demo (just a bit).*** Version 4.0.0.1 (17. June 2014 - rev2663) Fixed: DotNet assembly no longer contains classes that try to include our Unity native socket libs. This was causing issues in some cases. Added: PhotonPeer.CommandInfoCurrentDispatch. This property gives you the debug string of the currently dispatched command (events or responses). Only useful for UDP.LoadBalancing: Added: LoadBalancingClient.OpRaiseEvent(). Now that LoadBalancingClient USES a loadBalancingPeer (and doesn't extend it), things are much easier by offering this method, too! Added: LoadBalancingClient.IsConnected and .IsConnectedAndReady to LB API. Going to be part of the API from now on. Removed: Unused fields clientId and clientCount. Changed: Field for internal use "lastJoinActorNumber" is now private as intended. Changed: LoadBalancingClient.Disconnect is now setting it's own state to Disconnected if the connection got closed (as expected).Chat: Changed: How the server responds to Subscribe and Unsubscribe. Events will now contain success/failure of those. This allows us to send the answer after calling a WebHook if needed and we can even send it to multiple clients (which authenticated with the same userID). Changed: Handling of subscription responsed. This is done to allow web services to subscribe a client remotely and to be able to prevent joining some channel that a user should not join (the channel of some guild or another team, e.g.). Changed: Debug loggging. In Unity we can't use Debug.Assert, etc. So we have to log more cleanly. This works in Editor and several platforms (but not all). Changed: Folder for Chat API. It now begins with "Photon" which provides some context no matter where you copy the files. Easier to find in Unity projects. Changed: Operation FriendList and method SendFriendList renamed to AddFriends Added: Operation RemoveFriends and corresponding method in ChatClient.cs Added: Console Demo has new command 'fr' to remove friends*** Version 4.0.0.0 (23. May 2014 - rev2614) Changed: This version contains a few features that are not compatible with the Photon Server SDK v3.x. Notable features that are not in the Server SDK are: NameServer, WebHooks and Turnbased API features. Changed: This SDK is the first that contains all current APIs for Realtime, Turnbased and Chat. Fixed: Release build of the Unity assembly now also excludes native-socket using code, fixing a Unity Free export issue. We only use the debug assembly in our demos though and suggest you do the same.LoadBalancing: Changed: LoadBalancingClient.FriendList creation/update is delayed until the server's response is available. This avoids cases where the friends are offline for the moment between requesting the update and getting it. Initially, it is null as before. Added: some methods to Player to find next player, etc. Useful for turnbased games to find an opponent. Added: LoadBalancingClient.UserId, which is the ID of a user(account). This is used in FindFriends and when you fetch account-related data (like save-games for Turnbased games). Set it before Connect*(). As fallback when empty during connect, the PlayerName is used instead. Removed: LoadBalancingPeer.OpSetCustomPropertiesOfActor and OpSetPropertyOfRoom which were too special to be so low level. Could be implemented to LBClient.Turnbased: Fixed: OpJoinRandomRoom and OpCreateRoom which didn't reset the ActorNr to claim when entering the room. Depending on previous actions, some calls of those methods did fail when the actorNumber wasn't available. Changed: OperationCode.Rpc is now called OperationCode.WebRpc. It's simply much cleaner (considering PUN has RPCs as well but in a different context). Changed: WebRpcResponse reading to be able to handle additional data. Added: Parameter webForward to: OpSetCustomPropertiesOfRoom and OpSetPropertiesOfRoom. The "old" overloads of these methods are still there, too. If webForward is true, the properties are sent to the WebHooks.Chat: Added: SendPrivateMessage() overload that has option to encrypt private messages. Public messages don't need encryption. Removed: lastId and LastMessageIndex from channels. Those were impractical and should be removed from the API. Changed: UserStatus class to ChatUserStatus. Changed: Most classes are defined in their own file now. Removed: Folders "Shared" and their subfolders. This gives a much better overview. Added: Handling for event SubscribeResponse. This is not actually a response but gives you info about channels that got subscribed (e.g. when you re-login quickly or when a user is logged in in multiple clients). Added: HandleSubscriptionResults() method to handle the event and proper responses.*** Version 3.2.2.6 (13. May - rev2575) Fixed: Windows Store and Windows Phone libraries now only send the bytes they should send. This means we have to copy the payload from the "complete package buffer" in order to send it. Fixed: SocketTcp now handles all exceptions during reading. Still, abort-by-server is treated as ServerDisconnect. Everything else as client side disconnect. This fix is especially for iOS exports from Unity. The iOS Power-button will immediately cut any connection. The Home-button allows us to keep the connection if we return the app to focus within a few seconds. Fixed: TPeer.StopConnection() now clears the incoming queue when it disconnects. This avoids getting any more (already received) commands. Changed: TPeer.Disconnect() now uses StopConnection instead of implementing the same code again.*** Version 3.2.2.5 (30. April - rev2566)LoadBalancing: Added: TypedLobby class to replace lobby name/type pair. Added: LoadbalancingClient.CurrentLobby property. CurrentLobbyName and CurrentLobbyType are obsolete. Added: New overloads in LoadbalancingClient with TypedLobby parameter instead of separate lobby name and type: OpJoinLobby, OpJoinRandomRoom. Old methods marked obsolete. Added: New overloads in LoadbalancingClient for OpJoinOrCreateRoom, OpCreateRoom, CreateRoom with parameters packed in RoomOptions class. Old methods marked obsolete. Breaking: LoadbalancingClient.CreateRoom parameters changed to (string roomName, RoomOptions opt). Internal: Removed obsolete LoadBalancingPeer overloads of OpCreateRoom and OpJoinRoom Internal: Added 'onGameServer' parameter to LoadBalancingPeer OpCreateRoom, OpJoinRoom; used to avoid sending extra data to master (player- and room-props) Internal: Loadbalancing Room constructor(string roomName, RoomOptions opt). Internal: Added use of the "JoinMode" parameter which is used in context of Turnbased games. Fixed: Bug in OpLeaveLobby which joined the default lobby instead of leaving any lobby.General: Fixed: Server ports were read as short, which was wrong. We now use the correct unsigned short to convert from the address string). Fixed: A minor issue in the SupportClass ToString conversion which used a Hashtable's key type instead of the value's type in one place.*** Version 3.2.2.4 (21. March 2014 - rev2519) Internal: For Unity, the classes that handle native sockets can now be compiled in a variant that does not actually reference the native-socket-libs. The dll for PUN+ uses native sockets and need the native libs. Any regular dll will have the (not used and empty) classes for build-compatibility reasons. Added: Values to enum EventCaching: SliceIncreaseIndex, SliceSetIndex, SlicePurgeIndex and SlicePurgeUpToIndex. They are in Lite but used in LoadBalancing. This is likely to be cleaned up in the next major release. Changed: EventCaching MergeCache, ReplaceCache and RemoveCache as they belong to an outdated form of caching. The "RoomCache" is the better option in any case.LoadBalancing: Added: RaiseEventOptions class. It's used for OpRaiseEvent to avoid further parameter- and overload-clutter for this operation. While it's still not optimal for all cases, the fields in the RaiseEventOptions class are hopefully more clear how to use. Maybe some constructors will be added soon. Changed: All OpRaiseEvent variants, except the one with RaiseEventOptions is now obsolete. Added: Event Cache Slicing. Cached events can now be organized into "slices" which allows you to handle them in chunks. You can purge events in specific slices (e.g. get rid of the previous game-rounds events).Turnbased: Added: RaiseEventOptions.ForwardToWebhook which allows you to forward an event to a webhook (to be defined in Dashboard). Use this rarely, as it has an impact on (server) performance!*** Version 3.2.2.3 (18. February 2013 - rev2493) Added: const PhotonPeer.NoSocket, so programs using our assemblies can detect if they must provide an external SocketImplementation. Some builds avoid using the Socket class (cause Unity Free doesn't support it on all platforms). Added: PhotonPeer.SendMessage method in order to send any serializable object to server. Added: IPhotonPeerListener.OnMessage in order to be notified about getting message from server. Added: new 'Connect' method, which accepts as third parameter any serializable object. You may use this object on server before creating peer. Added: OnMessage callback to samples Changed: TCP and UDP both set the socket to null explicitly in Disconnect(). Hopefully this fixes a misbehaviour in Unity Editor which locked up often. Changed: SocketTCP now has a syncer object and locks in Disconnect(), so only one Disconnect call can be made anytime. Fixed: Nullreference when calling DispatchIncomingCommands() before Connect(). This was due to a (new) use of the socket wrapper. Commented this out until needed. Fixed: Nullreference when calling SendAcksOnly() before Connect() with a new non-null check. Fixed: breaking issue in Hashtable replacement class. Enumerators used in 2 "foreach" loops were breaking with a nullreference. Fix: No caching of enumerator. Changed: AutoJoinLobby now uses this.CurrentLobbyName and this.CurrentLobbyType to join a specified lobby. Changed: EnetPeer.StopConnection will always reset the state to be able to re-connect. Changed: Disconnect() in SocketTcp and SocketUdp sets this.socket = null, even if socket.Close() caused an exception. This is what was expected. Added: SocketUdpNativeDynamic and SocketUdpNativeStatic to "regular" Unity Lib, to improve compatibility in Unity for different export platforms (with and without native sockets).*** Version 3.2.2.1 (17. October 2013 - rev2335) Note: This lib contains a lot of breaking changes and socket handling has been refactored. By now, this is well tested and confirmed working. Changed: The way sockets are handled and added native-socket-lib support. There is a new IPhotonSocket interface which even allows to use external classes as socket wrapper. Added: SocketImplementation property to set a class as socket implementation (Unity. sets native implementation or c# socket at compile time) Changed: Win 8 RT and Phone now use fewer separate classes and files. Instead, more files from the (regular) DotNet client are used. RT and Phone are now part of the trunk folder in our SVN. Added: TrafficStats.TimestampOfLastAck and .TimestampOfLastReliableCommand Changed: Handling of server-side shutdown (a form of TCP disconnect) is now handled specifically as server-side-disconnect (was: generic receive exception) Added: If a UDP connection times out in a client, it sends a special flag in it's disconnect command (to the server). This enables us to detect which side is triggering timeouts more often (and we can improve things).LoadBalancing API Fixed: issue where we called a virtual member from a constructor (http://confluence.jetbrains.com/display/ReSharper/Virtual+method+call+in+constructor) Changed: LocalPlayer is now a property which checks null and returns a new Player (via virtual CreatePlayer) on demand. Added: OpJoinRoom now optionally creates a room if parameter "createIfNotExists" is set to true and the room didn't exist. Room properties can't be set "on create" this way. LocalPlayer.IsMasterClient will be true. Added: When OpJoinRoom can create a room, it also won't define which properties go into the lobby. You can use the new Room.SetPropertiesListedInLobby(). Added: You can pass a actorNumber to OpJoinRoom when you re-enter a room and want to reclaim a specific actorNumber in that room. In best case, the client can re-join after a disconnect/crash and seamlessly go on playing.*** Version 3.2.1.6 (15. August 2013 - rev2272) Changed: The library for Unity now contains a ExitGames.Client.Photon.Hashtable to be compatible with Win 8 exports. This must be used from now on! Note: In Unity, the compiler will complain about ambiguous Hashtable definitions. To solve this, add this to the "using" part of your code: using Hashtable = ExitGames.Client.Photon.Hashtable; Removed: Builds for Silverlight and Windows Phone 7.1 (this is not affecting Windows 8 RT and Windows 8 Phone SDKs which are of course supported) Fixed: A null-reference check for a TCP connection's SendAcksOnly().*** Version 3.2.1.5 (06.08.2013 - rev2242) Added: Steam and Facebook entries to CustomAuthenticationType enum. Fixed: Potential nullreference exception in TCP SendAcksOnly() code. If called before Connect(), this always failed. Updated: Replacement classes for datatypes not supported on some platforms (Hashtable mostly). Added: Hashtable got a new GetEnumerator that returns a IDictionary just like the standard Hashtable does. Changed: Constructor with int InitialSize now calls the matching base constructor. Removed: Synchronized() method which didn't do much and is not used. Changed: ToString is now an override instead a "new" method. Changed: DataTypes.cs: the Stopwatch is only implemented for Silverlight (non Windows Phone 8) Updated: Description. Changed: Protocol to expect Hashtable always providing a DictionaryEntry. Related to change in DataTypes.cs. Changed: Protocol now has conditional "Dictionary" detection. In WP8 the API is different for that. Uses #if WINDOWS_PHONE. same file now works in W8 and WP8. Changed: Removed PRPCAttribute from SupportClass.cs. This is used only in PUN and needs conditional per-platform compilation anyways, so it gets implemented there. Removed: surplus debug output in ReceiveIncomingCommands(). Fixed: Debug output in FetchServerTimestamp() depended on the Thread calling the method. Correct: The output is enqueued and dispatched later on. Fixed: FetchServerTimestamp no longer fails with a SendError when the state is not "Connected". Internal: Metro-Alike project now uses DataTypes.cs of Silverlight (like everyone else). Removed surplus copy. Internal: DataTypes.cs and Protocol.cs files can now be used in DotNet 3.5, Windows Store and Windows 8 Phone. Internal: outdated compiler-definitions "Photon" and "METROALIKE".*** Version 3.2.1.4 (10.07.2013 - rev2209) Added: "Typed Lobby" API. Photon Cloud and Loadbalancing now support multiple lobbies per app/title. Also, different types of lobbies are now possible, each can have different options and different rules for matchmaking. Added: enum LobbyType with "Default" and "SqlLobby". The SqlLobby is a new type of lobby that uses up to 10 room properties with sql-like filters. The filter being written like the "where" part of a sql query. Changed: FetchServerTimestamp now enqueues callbacks (can be called by socket-receive-thread). also no longer causes a disconnect callback if offline Changed: RemoveSentReliableCommand now enqueues callbacks (can be called by socket-receive-thread) Internal: SendAcksOnly override in TCP's TPeer class. This now sends pings but nothing else. That resets the server's timeout for this peerLoadBalancing API Updated: LoadBalancing API in the Unity demos (now gets copied over at build time, making sure it's identical to the DotNet "original") Fixed: LoadBalancingClient now handles SecurityException and InternalReceiveExceptions and disconnects correctly. Before, especially Unity web clients would get stuck in "Disconnecting" state. Fixed: LoadBalancingClient state on disconnect (no matter what caused the disconnect).*** Version 3.2.1.3 (19.06.2013 - rev2170) Fixed: surplus conversion of incoming data to string, which was used in debugging.*** Version 3.2.1.2 (17.06.2013 - rev2160) Fixed: custom auth will send custom auth parameters if any authentication params are set*** Version 3.2.1.1 (10.06.2013 - rev2148) Added: new POST value for Custom Authentication. POST can carry more data than GET (usually used). AuthenticationValues has a setter for this.LoadBalancing API Changed: LoadBalancingClient.AuthValues is renamed to CustomAuthenticationValues property (sets the custom authentication values). Changed: Player class now compares by ActorNumer (assigned by server) instead of comparing the instance. Internal: SupportClass.GetMethods() now returns type.GetRuntimeMethods(), filtered by attribute (if at all needed). This is used by Photon Unity Networking (PUN) internally. It also returns inherited methods now, not only Declared.*** Version 3.2.1.0 (24.05.2013 - rev2112) Added: Feature "Custom Authentication" which lets you authorize players/users in the Photon Cloud with an external account/user service. More on that online: http://doc.exitgames.com/photon-cloud/CustomAuthentication Added: LoadBalancing API Feature "Friend Finding" which enables a client to find friends in rooms by userId. If an external service provides a userID per player and a friend list, this can be used to find a friend's room (game) and join it (unless closed or full). Added: CustomAuthenticationType enum to enable differnt types of custom auth later on (only one actually useful value so far). Added: Class AuthenticationValues as container for authentication values. Added: LoadBalancingClient.Connect overload which takes a AuthenticationValues parameter. Added: LoadBalancingPeer.AuthValues property to set the custom authentication values. Added: Parameter authValues to OpAuthenticate. This is used to provide the authentication parameters and or the secret/ticket provided by Photon. Added: ErrorCode.CustomAuthenticationFailed to be used in switches for OperationResponse.ErrorCode (for OpAuthenticate). Changed: LoadBalancingClient.PlayerName can be set before connecting to get a UserId which is "findable" by OpFindFriends(). Find friends does NOT use any values set for custom authentication! Added: Class FriendInfo to contain a friend's name, online state and room name (if available and after using OpFindFriends()). Added: OpFindFriends() to actually find the friends. Use on the Master Server only, not on a room. Added: LoadBalancingClient.FriendList, a List of FriendInfo entries. Filled by using OpFindFriends (don't modify this list directly!). Added: LoadBalancingClient.FriendListAge, to let you know how old the FriendList is. Only get updates when the list gets "old". Fixed: OpRaiseEvent will no longer send "group" if it's 0 (which is the default). Added: OpRaiseEvent overload to send object instead of Hashtable. This overload uses another parameter order to not mix up with the older implementation. You can send any serializable datatype now but must be aware if the event is Hashtable or something else. Changed: Several variants of OpAuthenticate(), Connect() and ConnectToMaster() are now obsolete or removed. Use the alternative implementations (which should be cleaner). Internal: Added several (operation) parameters to enum ParameterCode: ClientAuthenticationType, ClientAuthenticationParams, FindFriendsRequestList, FindFriendsResponseOnlineList, FindFriendsResponseRoomIdList. Added: PhotonPeer.ResentReliableCommands to get count of re-sent commands (might be higher than out command count (as that counts created commands only) Internal: Address (string) handling now uses string.Split instead of IndexOf to separate port from address and short.TryParse instead of short.Parse Added: TrafficStatsGameLevel.ResetMaximumCounters() to reset those values that could max-out easily. Allows to get "longest delta between SendOutgoingCommands()-calls since last query".*** Version 3.2.0.2 (21.02.2013 - rev2066) Fixed: Potential lock-up during sending. This could cause infinite blocking and thus a crash in some apps. (Win8 / Win Store api only)*** Version 3.2.0.1 (15.02.2013 - rev2060) Fixed: Issue with delayed sending of operations in udp. The data could become overwritten before being sent. The bug was leading to high disconnect rates for clients using Windows Phone 7 and 8 and Silverlight or any client that used Network Simulation.*** Version 3.2.0.0 (13.02.2013 - rev2053) Note: This release only changed the version, matching the new Server SDK v3.2.0.0 Updated: readme.txt Fixed: Reference for Windows 8 RT and Windows Phone 8 SDKs. Added: Particle Demo to Unity Client SDK.*** Version 3.0.1.18 (11.02.2013 - rev1998) Added: Optional per package CRC checksums to filter out compromised packages (avoiding more issues, compared to reading bad values). Added: PhotonPeer .CrcEnabled and .PacketLossByCrc to handle CRC and get the count of affected (incoming) packages. Note: Checking packages with CRC will take some computation time. Consider this an option to detect if/why someone's connection is bad. It's likely not good to be enabled by default.Windows 8 RT & Windows 8 Phone: Fixed: Serialization of foat and double values. These caused exceptions when used in object-arrays.*** Version 3.0.1.17 (19.12.2012 - rev1946) Added: New Platform: Mono 4 Android. Please check the Readme.txt for hints how to build the demo in Mono 4 Android. Changed: The referenced DotNet assemblies used by our libraries, which makes ours compatible with Mono 4 Android and others. Changed: The Particle Demo Logic to also handle events sent by JavaScript clients. In case these are used, the types used in event differ from what DotNet or other clients send. Changed: PhotonPeer.LocalTimeInMilliSeconds property now uses SupportClass.GetTickCount(). That method is using Environment.TickCount (which can be replaced if needed). Changed: Any place that directly used Environment.TickCount (as the way SupportClass.GetTickCount() gets the value can be replaced). Renamed: GetLocalMsTimestampDelegate is now: SupportClass.IntegerMillisecondsDelegate (rarely used if at all).*** Version 3.0.1.16 (29.11.2012 - rev1923) Internal: A client timeout now internally sets connectionState to Zombie and then calls Disconnect() instead of stopping the connection right away. Changed: Disconnect() sends a disconnect-command in any case (except not connected or disconnecting). If the connection is not in state connected anymore, said command is unsequenced (unreliable) and the disconnect is locally executed immediately as call to StopThread(). As before, disconnecting and disconnected clients won't send this. Changed: Ping creation is now more strict and checks also if any reliable commands are outgoing AreReliableCommandsInTransit(). this avoids a few pings. Fixed: NullReference exception in StopConnection() if it's called before being connected for the first time (late object creation made this fail). Changed: PhotonPeer.LocalTimeInMilliSeconds property now uses SupportClass.GetTickCount(). That method is using Environment.TickCount (which can be replaced if needed). Changed: Any place that directly used Environment.TickCount (as the way SupportClass.GetTickCount() gets the value can be replaced). Renamed: GetLocalMsTimestampDelegate is now: SupportClass.IntegerMillisecondsDelegate (rarely used if at all).*** Version 3.0.1.15 (27.11.2012 - rev1917) Note: Silverlight SDK release only! Updated: Silverlight projects with proper references (hopefully). In case you wonder: Some projects are included even though only their (source) files are linked in Silverlight. We can't reference DotNet projects directly, so we use the (shared) files instead. Updated: Silverlight Particle Demo now has a basic gui and hopefully helps with your first steps.*** Version 3.0.1.14 (16.11.2012 - rev1891) Added: Interest Groups! In rooms, you might send events to an interest group, identified by a byte (255 groups are currently allowed). OpChangeGroups lets you add or remove groups you're interested in. Added: New platform! Welcome Windows 8 RT and Windows Phone 8. Both are "preview" releases but based on the stable DotNet basis we have. Note: The Windows Phone 8 SDK does not yet have a LoadBalancing demo but the API is available (Windows Phone 8 is separate from the still existing Windows Phone 7.1 SDK). Added: Another new platform: Playstation Mobile! This is Sony's SDK for mobile platforms. Find out more about it: www.playstation.com/psm Added: Silverlight 4 SDK is back. Now with LoadBalancing API (the demo implementation is not finished but the basic "logic" is running). Fixed: Windows Phone 7 and Silverlight TCP error handling while connecting to the server. This should fix issues with failing connects due to missing policy settings. Internal: Windows Phone 7 and Silverlight TCP connections now set their state a bit differently (this doesn't affect the workflow though). Internal: Http implementation now checks if a Proxy was set deliberately. Check is: (WebRequest.DefaultWebProxy as WebProxy != null). Internal: DispatchIncomingCommands() now avoids copying lists when checking for commands that need a repeat. Internal: SendOutgoingCommands() now re-uses a buffer to create UDP packages in before sending. This should save a lot of memory allocation.LoadBalancing API: Added: New demo "Particle". You will notice it's similar to the "Realtime Demo" but LoadBalancing- and Cloud-compatible and it makes better use of the default features. Check out Particle "Logic". Added: LoadBalancingClient.DisconnectedCause to track certain disconnect causes (no matter if the connection or an operation caused the disconnect). Added: DisconnectCause enum to enumerate those disconnection causes. Changed: LoadBalancing OnOperationResponse() and OnStatusChanged() to track most disconnect reasons (in DisconnectedCause). Removed: LoadBalancing Connect() variants that essentially were duplicates of others. Changed: LoadBalancingClient debug output now goes to: Debug.WriteLine (which is available in debugger, while Console is not always). Changed: CacheProperties method is now virtual for Room and Player. This allows you to override it and use this as callback to update props. Added: Player.Tag to store arbitrary (game) data with the Player. Put in (e.g.) a player's representation/avatar or similar. Added: ErrorCode constants MaxCcuReached and InvalidRegion. These are important for the Photon Cloud. Added: Handling for DisconnectedByUserLimit. This is a status of OnStatusChanged when a Photon Server License's CCU limit is reached. This no longer will try to connect to a Game Server (where it gets rejected, too). Changed: Debug output of loadBalancingClient now goes to Debug.WriteLine (which is available in debugger). Changed: API now uses a factory method to create Room instances (this makes it possible to extend the Room class and instantiate the new class instead). Changed: The Player constructor now has an "actorProperties" parameter and will cache the provided properties. This makes sure actor-props are available locally.Windows Phone 8: Added: Demo for Cloud / LoadBalancing. The Particle Demo only has a special WP8 GUI and links it's logic from a separate project (read: folder).Windows 8 RT: Added: Demo "Phong", which is a simplified, basic multiplayer game. It's focus is to show how to sync data, not to make it super smooth and error free. Let us know any issues but bear with us as it isn't fully featured.*** Version 3.0.1.13 (26.09.2012 - rev1731) Fixed: Internals of method DispatchIncomingCommands() for UDP. In some cases this removed commands from a dictionary inside a foreach loop (which causes an Exception due to changing the dictionary) Added: Support for Dictionary[]. This is not a very lean way to send data (especially when using ) but if needed, it now works Changed: Replaced several foreach loops with for loops (it doesn't change usage but in Unity exports to iOS, foreach uses more memory than for) Added: Doc for public methods in Protocol class (they are useful to quickly write values into an existing byte-array) Fixed: Unity UDP send code: iOS 5 devices will kill a socket when the power button is pressed (screen locked). This case was not detectable by checking socket.Connected. Added: Unity UDP send code: Now tries to open another socket to refresh/keep the connection. This is affected by timeouts still, of course (as are all connections). Internal: locked usage of UDP / enet channels*** Version 3.0.1.12 (26.07.2012 - rev1683) Changed: The DotNet client libraries are now Thread safe! You could start a background Thread to keep calling SendOutgoingCommands in intervals and still call it from a game loop, too Changed: Due to the thread safety, the demos no longer use excessive locks. This is now solved by the lib, more streamlined and hidden. One Thread is used instead of Timers (which could fire concurrently if execution was longer then their interval) Changed: Moved the enable/disable property fro NetworkSimulationSettings to PhotonPeer.IsSimulationEnabled (this should now be thread safe) Changed: NetworkSimulation will create and keep one thread when you first enable it in a (debug) client. Disabling it, will execute any delayed action immediately (in IsSimulationEnabled!) and pause the simulation thread Changed: All demos are updated. We assigned new event codes (starting at 0, like any developer's code should) and extended the comments. Check them out Changed: All Loadbalancing demos are now using the same DemoBasisCode linked in, so it can be changed in one position. Where needed an extension is made Updated: comments / documentation for LoadBalancing API, Lite API and basic Photon API (basically anything public) Changed: SupportClass.NumberToByteArray is now obsolete. It can be replaced with Protocol.Serialize() easily and that is performing better Fixed: Windows Phone UDP socket was sending a full package of zeros on connect. It didn't break anything but is not needed, of course. Fixed: SupportClass.StripKeysWithNullValues method was prone to throw an exceptionLoadBalancing API: Changed: LoadBalancingClient.OpLeaveRoom() skips execution when the room is null or the server is not GameServer or the client is disconnecting from GS already Note: LoadBalancingClient.OpLeaveRoom() returns false in those cases and won't change the state, so check return of this method Fixed: workflow for authentication (which should be called only once per connection, instead of "any time we establish encryption)*** Version 3.0.1.11 (05.06.2012 - rev1569) Fixed: Udp issue with channels and unreliable commands. Unreliable commands of one channel were discarded, when another channel had unreliable commands, too*** Version 3.0.1.10 (04.06.2012 - rev1561) Fixed: TCP connection issues for DotNet and Unity (Silverlight and WindowsPhone are different) Fixed: DotNet+Unity TCP send calls with 0 bytes to send (this was ignored by the socket but useless anyways) Moved: DNS resolution and socket.Connect() are now handled in the connection thread (TCP in DotNet and Unity) Fixed: Issue with (TCP) socket connections being closed directly while connecting. in this case, socket.Receive() might receive 0 bytes instead of blocking until more bytes are available. without sending anything, the socket never updates its .Connected state and never throws a Exception. now we send a ping and thus trigger a exception Fixed: Some documentation errors (due to changed API, etc)Loadbalancing API: Changed: LoadBalancingClient.OnEvent() now uses a join-event's actornumber-list to create Player instances for anyone who wasn't created as Player before Fixed: LoadBalancingClient.OnEvent() handling for join-event does not expect any actor/player properties anymore (which fixes a potential null-reference exception when not even a name is set)*** Version 3.0.1.9 (10.05.2012 - rev1512) Fixed: Reference to project in Windows Phone SDK*** Version 3.0.1.8 (09.05.2012 - rev1508) Fixed: The OpJoinRandom of the LoadBalancingAPI failed to filter rooms for their custom room properties. Instead, any room matched. This is fixed now. Added: New Demo for Windows Phone: Cloud Basics Changed: The loadbalancing / cloud-based demos are refactored to share a similar codebase*** Version 3.0.1.6 (07.05.2012 - rev1489) Note: This is a "stable" release, containing only a few updates. The bulk of changes are in the "odd" numbered releases. Read those updates carefully.*** Version 3.0.1.5 Changed: adopted the even/odd version numbering system. versions ending on a odd number = intermediate/in-development version, even number = released (that makes 3.0.1.5 a intermediate) Fixed: When NetworkSimulation is disabled, all remaining packages are sent/received immediately (ignoring the former delays) Note: NetworkSimulation should be working nicely now. Be aware that sudden, additional lag might (!) lead to a disconnect. Play with the settings to find out which ones work for you Changed: Protocol class now has a few methods to (effectively) serialize some datatypes to arrays (and into existing arrays) Removed: Surplus public methods from Protocol that were "type-named" like SerializeFloat. The functionality is in still with overloaded methods Added: count of packages (requests) outgoing if TrafficStatsEnabledDemo Realtime: Changed: The commandline arguments are now server:port, protocol (udp,tcp,http), reliable sending, interval dispatch, interval send, interval move. Example: localhost:5055 Udp false 15 25 15 Changed: Demo Realtime: If the commandline sets an unknown protocol, the client shows a message and closes gracefully Changed: Demo Realtime: The demo now starts in the grid view (showing something). Local player and player list are created with the Game instance. Player startpoint is randomized.Loadbalancing API: Renamed: LoadBalancingClient.lbPeer to .loadBalancingPeer Fixed: LocalPlayer.SetCustomProperties() usage Added: Service() method, which calls the LoadBalancingClient's Service simply Changed: LoadBalancingClient is no longer extending LoadBalancingPeer but instead using one Changed: the many overloads of Operations are gone in LoadBalancingPeer to streamline the api Changed: ActorProperties are no longer set via JoinRoom, JoinRandomRoom or CreateRoom. instead, set the properties in the LocalPlayer and let the LoadBalancingClient send and sync them where necessary Fixed: MasterClientId is now 0 when there are no more players in the room (it was set to int.max before)Internal: Changed: all DispatchIncomingCommands now use a while loop to dispatch the ActionQueue (in the hope this is the fastest way to do it) Changed: DispatchIncomingCommands now looks for the received unreliable command with lowest unreliable seqNr to dispatch this Changed: DispatchIncomingCommands discards commands if the reliable OR unreliable sequence is beyond the command's sequences Changed: DispatchIncomingCommands now truncates the incoming unreliable commands to limitOfUnreliableCommands (if that's > 0) Changed: the next reliable command to dispatch is now fetched with Dictionary.TryGetValue() (for being faster) Changed: no longer using BinaryReader streams anywhere (this should improve speed and reduce mem usage) Changed: PeerBase accordingly Changed: Unit test MyType de/serialization now supports null-references (as 1 byte being 0) Changed: Protocol.SerializeOperationRequest is now used in the same way, no matter if request is "top level" or inside some other datatype Changed: the peer bases accordingly to use only one SerializeMemStream and lock it Changed: how encryption fits in to the new serialization (it is a special case, as only the operation bytes get encrypted) Added: Protocol.SerializeParameterTable() as requests, events and responses all use the same way to write their parameters Changed: SerializeOperationToMessage parameter order Changed: Order of Protocol methods to make more sense (from byte to more complex types for serialization) New: PhotonDotNet library prototype for windows 8 metro*** Version 3.0.1.3 (13.04.2012 - rev1430) Known issues: The Network Simulation is currently not guaranteed to work properly. Please bear with us. Note: the following change might be a breaking one: Changed: When dispatching a server's disconnect-command, the state is changed to ConnectionStateValue.Disconnecting BEFORE any callback due to state change is called. This should disallow game-code from calling any operations immediately. Changed: Many internals. This should result in better performance Changed: Service() now calls SendOutgoingCommands() until send-queues are empty. This might take more time but gets important commands out. If you need more control, Service() can be replaced with DispatchIncomingCommands and SendOutgoingCommands! Added: null check to GetEndpoint() to avoid issues when the host address is null Fixed: queueIncomingCommand() debug out message when a command is being received AND in in-queue (the list it accesses is now a dict) Added: new "vital" stats to TrafficStats Added: LongestOpResponseCallback and LongestOpResponseCallbackOpCode (opcode and time of longest callback) Added: LongestEventCallback and LongestEventCallbackCode (event code and time of longest callback) Added: LongestDeltaBetweenDispatching and LongestDeltaBetweenSending to detect "gaps" between subsequent calls of those Added: DispatchCalls and SendOutgoingCommandsCalls to measure average call-rate Fixed: PeerBase.TrafficStatsEnabledTime now checks if a stopwatch is set, else it returns 0 Fixed: TrafficStatsReset() now works as intended (starting a new stopwatch, too)Internal: Changed: name of variable timeLastReceive. is now: timeLastAckReceive (better fit with what it does) Internal: queueOutgoingReliableCommand() to use a lock on the channel it accesses Internal: SerializeOperationRequest() now locks the MemoryStream while using it (avoids threading-issues with calling OPs) Internal: SendUdpPackage() now checks if socket is obsolete (and disconnected for a reason) or not. only if not, a error is logged Internal: EnetChannel now uses Dictionary and Queue for commands (should be faster to access) Internal: simplified access methods in EnetChannel according to changes Internal: outgoingAcknowledgementsList is now a Queue Internal: receiveIncomingCommands() no longer has a local variable sentTime. instead using this.serverSentTime directly Internal: UDP sending is now done with a synchronous socket call (profiling told us: this is cheaper) Internal: re-using the socket arguments for receiving packages (saves some buffer allocation) Internal: socket to non-blocking (maybe not possible on all devices) Removed: initial-HTTP-protocol support (HTTP support not public yet) Added: support for encryption with HTTP protocol*** Version 3.0.1.2- Added: Rooms now have a "well known" property to list the custom properties that should be available in the lobby. This can be set per room (but most likely makes sense per title/application).- Added: LoadBalancingClient.OpCreateRoom() has a new parameter "propsListedInLobby" and Room.PropsListedInLobby is available to check this list (if needed at all).- Added: GameProperties.PropsListedInLobby as "well known property" key- Changed: LoadBalancingPeer.OpCreateRoom now sets ParameterCode.CleanupCacheOnLeave to true by default. This makes the server clean a player's event cache on leave.- Added: SupportClass.DictionaryToString() will now print values of string[] and optionally leaves out type information.- Note: 3.0.1.1 didn't get it's own SDK, so read that version's changes, too*** Version 3.0.1.1- Added: PhotonPeer.TrafficStatsElapsedMs, which gives you the milliseconds that the traffic stats are enabled. This internally uses a stopwatch (for now) which might not be available on all platforms. Please report if this new SDK causes issues.- Added: PhotonPeer.TrafficStatsReset() to reset the traffic stats and the timer. This could be useful to get stats of "in game" versus "out of game". Note: Loadbalancing includes frequent server-switching and each disconnect/reconnect causes a reset.- Changed: In LoadBalancingPeer EventCode.SetProperties is obsolete and replaced with EventCode.PropertiesChanged. Please switch to new constant.- Added: Support in LoadBalancingAPI for Player.IsMasterClient. For this, the Players now get a RoomReference set (when added). The active player with the lowest ID is the master (per room).- Added: Room.MasterClientId, which is updated when new players are added or the current master is removed.- Added: SupportClass.DictionaryToString() has an overload which doesn't "print" the Type per key/value.- Added: Loadbalancing API overload for OpJoinRandomRoom(...) taking additional parameter 'playerProperties'- Added: Loadbalancing API CacheProperties() and Room.GetPlayer() are public now- Added: LoadBalancingClient will now handle ExceptionOnConnect and keep clients from re-connecting if establishing a connection fails- Note: The following changes affect only HTTP, which is an upcoming option for connections. So far, the public server SDKs don't support this. Feel free to contact us about it.- Added: setter for PhotonPeer.ServerAddress to allow setting a http url (even while connected)- Added: PhotonPeer.HttpUrlParameters setting parameters to be added to end of url (must begin with '&')- Added: HttpUrlParameters to PeerBase- Added: HttpUrlParameters is now attached to the end of a URL in http usecase- Added: "Http2" support to Unity library- Internal: method HttpBase.ConnectAsync is no longer needed and Request() is now directly passed to thread*** Version 3.0.1.0- Added: Loadbalancing (Cloud) Features- Added: Project with the Loadbalancing sourcecode for DotNet, WindowsPhone and Unity3d (usable without PUN)- Added: Initial, simple Loadbalancing demos for each platform (will update and extend those)- Note: The API of the client libraries didn't change. The new features were added on top of the known API- Added: VS2010 solutions for DotNet and Windows Phone SDKs containing the demos and APIs in the package- Added: readme.txt with initial help to setup the Cloud/Loadbalancing demos- Added: default appId for Loadblanacing demos: ""*** Version 3.0.0.10- Added: When UDP StartConnection (internal method) fails, callbacks to OnStatusChanged(StatusCode.Disconnect) are now done additionally to the SecurityExceptionOnConnect and ExceptionOnConnect calls. This happens direcly inside PhotonPeer.Connect()!- Changed: When Unity UDP implementation fails to connect due to missing DNS resolution, it now also calls OnStatusChanged(StatusCode.ExceptionOnConnect)- Removed: StatusCode.Exception_Connect value (obsolete, replaced by ExceptionOnConnect, same value)- Fixed: Http connections (DotNet & Unity) now skip results while in disconnected state- Fixed: Http connections (DotNet & Unity) now ignore results after a disconnect and reconnect was done (this applies only to HttpBase, not HttpBase2)- Fixed: misleading debug out (pointing to WindowsPhone while the class is now in general use)- Changed: DotNet UDP connection now only logs socket errors if the connection isn't obsolete (disconnected) already*** Version 3.0.0.9- Fixed: issue with HTTP connections and EstablishEncryption()- Changed: ActionQueue is now a Queue, allowing Dequeue in a while loop instead of foreach(i in list) and clear()- Changed: Unity HttpBase DispatchIncomingCommands() to make use of the queue- Fixed: init byte[] length (internal. did not have consequences)- Fixed: LitePeer OpRaiseEvent() was sending encrypted- Internal: ContainsUnreliableSequenceNumber() check if reliable list needed sorting- Fixed: Unity/Silverlight bug with encryption. Their implementation of BigInteger.GetBytes() failed when the 2nd, 3rd or 4th of the first 4 bytes was 0 but the previous wasnt. This led to incompatible secrets.- Changed: TCP socket sending debug output now checks debuglevel (when send is skipped, cause the sender is obsolete already)- Added: caching option RemoveFromRoomCacheForActorsLeft = 7- Internal: Added another http-based communication protocol. Please note: The fitting server's are not yet publicly released. This does not affect UDP or TCP protocols.*** Version 3.0.0.8- Fixed: Udp fragment reassembly in case fragments are received out of order and incoming queue was not yet sorted- Fixed: Handling of incoming reliable commands (udp) which were skipped in some cases, if not received in order- Fixed: Network simulation issue which caused lost incoming commands- Fixed: Demo Realtime. protocol is now again Udp, fitting the default server address "localhost:5055" (make sure to build the demo with your server's address if Photon is not on the same machine)*** Version 3.0.0.7- Changed: Udp socket usage for Unity 3d lib. Both threads (send (in game loop) and receive (separate)) now have minimal locks while using the socket- Fixed: SendOutgoingCommands now returns true if anything didn't make it into the outgoing UDP package- Internal: TCP connections also skip network simulation when it's turned off*** Version 3.0.0.6- Fixed: SendOutgoingCommands now returns true if commands are remaining in outgoing queues (UDP only sends one package per call, TCP will send anything outgoing).- Added: New "RoomCache" for Events. The EventCaching enum allows you to use it. Events in this cache will keep the order in which they arrived in the server. A filter makes deleting them very flexible.- Internal: Ability to make lib send only ACKs and nothing else. This is probably a temp solution as it might be better to make sending and calling ops completely thread safe.- Internal: PhotonPeer.IsSendingOnlyAcks, which is locked with the sending (not changing while sending). This makes SendOutgoingCommands() thread safe, which is good if you need a separate thread to keep connection. You could call operations while sending.- Internal: Unity3d's connection now also syncs socket usage*** Version 3.0.0.5- Fixed: ObjectDisposedException in DotNet UDP workflow. This was caused by disconnecting while incoming data was processed (and before the next datagram was accepted)- Added: PhotonPeer.LimitOfUnreliableCommands property. This helps you skip potentially "outdated" unreliable commands (events), which helps if you couldn't dispatch for a while- Internal: Minor performance improvements. Example: The check if network simulation is turned on is done earlier in the workflow, which avoids a bit of overhead*** Version 3.0.0.4- Fixed: Tcp connections have been throwing ArgumentNullException in DispatchIncomgingCommands() if they were not connected yet- Internal: Adjusted Http client to server rev2360*** Version 3.0.0.3 RC2- Internal: Communication with HTTP server is WIP (Work In Progress - not a publicly available feature)*** Version 3.0.0.2- Fixed: OpRaiseEvent overload with EventCaching and ReceiverGroup parameters was not sending the customEventContent as expected. This was always null.- Fixed: Time fetching case where no time was accepted. Servertime is now accepted, if the fetch-time-command was less or equal as the current roundtrip time. Avoids issues if rtt is exceptionally low immediately.- Internal: When using multiple channels, dispatching incoming commands now will continue with the next channel, if one doesn't yet have the next reliable command (reliable sequence of one channel does not affect others)- Internal: Changed protocol for TCP and message headers. This will support bigger message sizes. Also changed debug out related to unknown headers.- Internal: Changed handling of TCP receive-callbacks for unfinished messages in Silverlight and WP. This should fix handling of very big data that's received in multiple "chunks"- Internal: Http messages are now deserialized the same way that content in tcp or udp is handled*** Version 3.0.0.1 RC1- Fixed: Packaging of SDK now includes all files in demo folders, except a list of ignored file-endings (xaml and jpg files were missing in previous Silverlight and WindowsPhone SDKs)*** Version 3.0.0.0 RC1- Changed: Filenames! Now include a '3' for Photon v3. Update your references! Also, Silverlight libraries now use "Silverlight" in the filename (was: SL)- Changed: Versioning. A dll's version has now 4 digits. The first 2 match Major and Minor number of the Server SDK. The latter 2 are Release and Build respectively- Changed: Silverlight DataTypes (like Hashtable) are now in namespace ExitGames.Client.Photon. This is easier to include (as that namespace is in "using" in most cases)*** Version 6.4.5- Changed: Parameters for OpCustom are now of type Dictionary, making sure that only byte-codes are used for parameters- Changed: Most IPhotonPeer names (to match those in server code): EventAction -> OnEvent, OperationResult -> OnOperationResponse, PeerStatusCallback -> OnStatusChanged- Added: SupportClass.DictionaryToString(), which converts the content to string (includes support for Hashtables)- Moved: Definitions of Lite and Lite Lobby specific codes for Parameters, operations and events are now in LitePeer. Will be available as source and could be replaced- Changed: Usage of codes in Lite and Lite Lobby. Now pre-defined codes are starting at 255 and go down. Your events, operations and operation-parameters can now start at 0 and go up without clashing with pre-defined ones- Changed: Constants that are non-exclusive (like event codes and OpKeys, which can be extended) are no longer "defined" as enums but as class of const byte values. Less casting but also less convenient "name" representation in debug output- Added: LiteEventKey.CustomContent as key to access the content you sent via OpRaiseEvent ("Data" seems a bit misleading but is also available)- Changed: Namespace of LitePeer to ExitGames.Client.Photon.Lite (the Lite-specific class is still compiled into the library for convenience but can be ignored quite easily this way)- Added: Property MaximumTransferUnit. The default is 1200 bytes. Usually this is ok. In few cases, it might make sense to lower this value to ~520, which is commonly assumed the minimum MTU. Don't change this, if you don't know why.- Added: New classes to wrap up op-requests (OperationRequest), op-results (OperationResponse) and events (EventData). Those new classes are now used in callback methods OnEvent and OnOperationResponse- Changed: by using the new classes (note above), the client is a bit more like the server in its naming. We didn't want to change every last bit though.- Internal: Changed protocol (to 1.6) so that it does not require any parameter codes internally. Any application can now define any operation, parameter and event codes it wants to.- Changed: Encryption is now triggered by you and resolved by the library. You don't have to look out for the result of EstablishEncryption and use it. Instead: wait for OnPeerStateChanged call with either EncryptionEstablished or EncryptionFailedToEstablish- Removed: InvocationId. This concept was very rarely used but confusing. It's easy to implement, if needed. If you don't know what this means: Nevermind.- Changed: Operation calls now return bool: if they could be enqueued or not. If enqueued (cause you are connected and the data was serializable), then SendOutgoingCommands will send those operations (as before).- Added: Support to de/serialize Dictionary. If the types are more specific than object, the serialization writes the type-code only once (lean byte usage in protocol)- Added: Support to de/serialize null. Enables you to send a null value, e.g. in a Hashtable- Added: ReceiverGroup enum to select a range of players that get an event via Operation Raise Event- Added: Event Caching. Any event sent via RaiseEvent can now be buffered on the server side and is "repeated" when a new player is joining a room. This is similar to Properties but lets you categorize your info better and works just like regular events, too.- Added: EventCaching enum to select if an event is to be cached and how it's cached: either "not at all" (default), replacing anything cached so far (fast) or "merge" (which will add new and replace old keys with new values). Optionally, a event can be raise with option "remove".- Added: new overload of OpRaiseEvent() with the two new parameters noted above- Added: Support for custom de/serializer methods. By writing 2 methods to convert a object into a byte-array (and back from that), Photon now supports any custom object type (standard datatypes are still supported out of the box)- Added: PhotonPeer.RegisterType() to register serializer and deserialize methods for a certain type. Per object, a length and one byte 'type code' are added to the serialized data- Added: Support for non-strict object[]. Unlike strictly-typed array, here each element will carry its own type.- Note: If you want to use the new Custom Types or the object[], you have to update your server! Older Servers don't support the new features. As long as you don't use these features, the library is compatible with previous servers.- Added: ByteCountCurrentDispatch and ByteCountLastOperation properties to PhotonPeer (the ancestor of LiteGame, etc). A game can now access the size of operation-results and events as well as operation-call size.- Added: Traffic statistic set: PhotonPeer.TrafficStatsGameLevel as "high level" game-related traffic statistic. Counts bytes used by operations, their results and events. This includes overhead for these types of messages, but excludes connection-related overhead- Added: Traffic statistic set: PhotonPeer.TrafficStatsIncoming and PhotonPeer.TrafficStatsOutgoing as low level statistics of the traffic- Added: PhotonPeer.TrafficStatsEnabled which enables two sets of traffic statistics. By default, statistics are turned off.- Added: Classes TrafficStats and TrafficStatsGameLevel for the two statistic cases metioned above- Changed: NetworkSimulation now starts a Thread when it becomes enabled and the thread ends on simulation disable. Disable the NetworkSimulation to stop the thread, as Disconnect does not change the simulation settings!- Internal: Cleanup and renaming of several properties- Internal: Each new peer increases the PeerCount but it is no longer reduced on disconnect (it is existing still, after all)- Internal: Udp commands will be buffered when serialized. This saves some work when re-sending a reliable command- Added: TCP Routing code (not in Silverlight). To be used when running Photon on Azure (can be ignored in regular use)- Added: to StatusCode: TcpRouterResponseOk = 1044, TcpRouterResponseNodeIdUnknown = 1045, TcpRouterResponseEndpointUnknown = 1046 and TcpRouterResponseNodeNotReady = 1047,- Added: override for PhotonPeer.Connect() with node- Internal: DotNet now reads the 2 bytes routing response, if a routing request was made (also, not in Silverlight)- Internal: If TConnect sent a routing request, nothing else will be sent until 2 bytes response are read.- Internal: If the routing-response does not start with ProxyResponseMarkerByte = 0xF1, a debug message is enqueued and TCP will disconnect- Internal: Init request for TCP is now always enqueued instead sent directly. This way, it can be delayed if a routing node is selected- Internal: TPeer EnqueueInit() and SendProxyInit() now create init and routing request respectively- Internal: TConnect.sendTcp() checks isRunning before it tries to send (the socket might close before the NetSim does). This won't be an issue anytime, still INFO-level callback to DebugReturn is done.- Removed: debug out for "send package" situation (even on ALL-level, this is more or less spam)- Internal: updated version numbers of init to 6.4.5- Changed: SupportClass HashtableToString() returns "null" if parameter is null- Internal: Removed SortedCommandList and CommandList classes. Replaced by List and a Sort() where necessary- Internal: EnetPeer.channels is now a Dictionary instead of a SortedList- Internal: the channels are initialized with channel 0xff first - this makes 0xff high prio in all foreach usaged- Internal: NCommand class is now IComparable for usage in Sort()*** Version 6.4.4- Added: PhotonPeer.TimestampOfLastSocketReceive now provides the time when something was received. Can be used warn players of bad communication-timing even before the disconnect timeout will be happening- Fixed: OpGetPropertiesOfActor did use the actorNrList correctly, which always got you all properties of all players*** Version 6.4.3- Changed: A udp connection timeout in Unity will now end the socket-handling thread correctly- Changed: The thread for Network simulation is now stopped when the client disconnects and started on connection (instead of keeping it per peer)- Fixed: Exceptions in network simulation, when Disconnect() was called soon after Connect() but before the connection was established.*** Version 6.4.2- Fixed: It was possible to send PhotonPeer.FetchServerTimestamp() before being connected properly. Now the method triggers debug output (INFO level) and the callback PeerStatusCallback(StatusCode.SendError)- Internal: Added a lock in the UDP version of SendOutgoingCommands(). It's still illegal to access a peer from multiple threads but the follow-up issues this lock avoids are very difficult to track.- Internal: to stay compatible with all exports of Unity, the use of System.Threading.Interlocked.Exchange was replaced by simply replacing the list's reference instead*** Version 6.4.1- Changed: The Unity library now uses the WWW class for Http based requests. Results are checked within DispatchIncomingCommands(). Important: Unity allows handling WWW requests only on the MainThread, so dispatch must be called from this context!- Note: Photon does not support Http requests out of the box. Customers get access to a fitting server on demand- Changed: outgoing list is now replaced on send, instead of calling remove(0) repeatedly (which takes longer). Internal: this uses System.Threading.Interlocked.Exchange to switch to a new outgoing list in one step*** Version 6.4.0- Fixed: TCP handling of incoming data. This avoids loss of data (operation-results or events) when a lot of data is incoming.- Changed: PeerStatusCallback() is less often called for queue-length warnings (e.g.: StatusCode.QueueIncomingReliableWarning). Only if a queue has a multiple of PhotonPeer.WarningSize items.- Changed: WarningSize is now 100 by default- Changed: Description of PhotonPeer.WarningSize and PhotonPeer.CommandBufferSize, which really is just the initial size of any buffer. The warnings are there to avoid situations where all heap is used up.- Changed: Naming: StatusCode.Exception_Connect is now Obsolete and replaced with StatusCode.ExceptionOnConnect- Added: Missing summary for StatusCode.SecurityExceptionOnConnect- Added: NetworkSimulationSet.ToString override to provide a better overview- Added: Support for arrays of Hashtables*** Version 6.3.1- Fixed: Network simulation now delays incoming packages by IncomingLag and IncomingJitter as expected (it was using the outgoing values, too)*** Version 6.3.0- Added: Network simulation (lag, jitter and drop rate) to debug builds- Added: class NetworkSimulationSet with properties to control network simulation- Added: NetworkSimulationSettings.NetworkSimulationSettings property to get current simulation settings- Changed: only the first peerId of a VerifyConnect is accepted in client (avoids surplus peerID changes)- Internal: added PeerBase.SendNetworkSimulated() and PeerBase.ReceiveNetworkSimulated() and a Thread to run delay simulationSiverlight:- Updated: to Silverlight v4.0- Added: Encryption to Silverlight library- Internal: updated internal BigInteger class for Silverlight- Internal: DiffieHellmanCryptoProvider in Silverlight, so it uses AesManaged instead of Rijndael (which is not part of Silverlight 3)- Added: Stopwatch class to DataTypes.cs (for Silverlight only)*** Version 6.2.0- Added: "Demo LiteLobby Chatroom" to Unity SDK- Updated: Demo Realtime in Unity client SDK. It's still compatible with the demo on other platforms but cleaned up and much better commented- Updated: Documentation is now clearer on where the Lite logic is used (it runs on Photon but is not the only application logic)- Updated: Documentation for the enumerations in IPhotonListener. The Lite application based ones are better described and it's now clear which ones are essential to the Photon client (not only in Lite)- Updated: Documentation in several other places- Added: StatusCode.SecurityExceptionOnConnect which is thrown if a security exception keeps a socket from connecting (happens in Unity when it's missing a policy file)- Added: PhotonEventKey and PhotonOpParameterKey which contain the fixed byte keys that cannot be re-assigned by applications at will (as these keys are used in the clients and server in their respective context)- Change: PhotonPeer.PeerState is no longer a byte but of type PhotonPeer.PeerStateValue, which makes checking the state simpler. The PeerStateCallback() for state changes is still called as before.- Changed: Property PhotonPeer.PeerState. It now converts the low level ConnectionStateValue to a PeerStateValue, which now includes a state InitializingApplication. See reference for PeerStateValue.- Changed: PeerStateValue enum is now part of the ExitGames.Client.Photon namespace, making it more accessible- Internal: NConnect in DotNet and Unity to catch security exceptions- Internal: from using var to explicit type usage in DiffieHellmanCryptoProvider.cs (Mono Develop friendly)- Internal: made const: ENET_PEER_PACKET_LOSS_SCALE, ENET_PEER_DEFAULT_ROUND_TRIP_TIME and ENET_PEER_PACKET_THROTTLE_INTERVAL- Internal: PeerBase "PeerStateValue peerState" is now: "ConnectionStateValue peerConnectionState" (holding the low level connection state, nothing more)- Internal: added PeerBase.ApplicationIsInitialized, which stores if the init command was answered by Photon (reset on connect/disconnect)- Removed: PhotonDemoServerUrlPort and PhotonDemoServerIpPort of PhotonPeer. All demos now use "localhost:5055" and you should run your own server.- Added: enum ConnectionProtocol to get rid of the "useTcp" parameter in the PhotonPeer constructor (which was less clear than the explicit enum now in use)- Added: overload of PhotonPeer constructor, which is still compatible with the "useTcp" bool parameter (to avoid a breaking change for the time being)- Added: PhotonPeer.UsedProtocol property to find out this peer's protcol- Added: LitePeer.OpLeave() overload without the gameName parameter. That name is not checked in the Lite application (on the server), so it's not really needed*** Version 6.1.0- Added: Encryption for Unity and DotNet. Operations (and their responses) can be encrypted after exchanging the public keys with the server- Added: OpExchangeKeysForEncryption(), DeriveSharedKey() and IsEncryptionAvailable to PhotonPeer (and LitePeer inherits these)- Added: OpCustom() will throw an ArgumentException if the operation should be encrypted but keys are not yet exchanged (exchange keys first)- Added: LiteOpCode.ExchangeKeysForEncryption = (byte)95- Added: Overloaded PhotonPeer.OpCustom() with new "encrypt" parameter- Added: property PhotonPeer.IsEncryptionAvailable is true if public-keys are exchanged and the secret is compiled from them- Added: Encryption demo to Realtime Demo. Press E to exchange keys and R to toggle encrypted sending for the move data (even though events are never encrypted)- Changed: PeerBase methods: sendOperation()->EnqueueOperation(...,encrypt), updateRoundTripTimeAndVariance()->UpdateRoundTripTimeAndVariance()- Updated: the Unity client is now a Unity v3.1 project. Make sure to change the server address before you build for iPhone (localhost:5055 won't work on the mobile)- Removed: the outdated, separate iPhone demo (was: Unity v1.7 for iPhone)- Updated: PhotonPeer documentation for Service(), DispatchIncomingCommands() and SendOutgoingCommands()- Added: OpRaiseEvent() overload with parameter TargetActors. Sends optional list of actors that will receive the event (if null, all *other* actors will receive the event, as default)- Internal: Added source BigInteger.cs, DiffieHellmanCryptoProvider.cs and OakleyGroups.cs- Internal: PeerBase.CryptoProvider, PeerBase.ExchangeKeysForEncryption() and PeerBase.DeriveSharedKey()- Internal: EnetPeer.initPhotonPeer() and TPeer.initPhotonPeer() are setting PeerBase.isEncryptionAvailable = false- Internal: De/Serialization methods (and some variables for it) are moved from NConnect to PeerBase and renamed to: SerializeOperationToMessage() and DeserializeMessageAndCallback()- Internal: switched project to allow "unsafe" functions (used by BigInteger)- Internal: renamed PhotonPeer.sendOperation()->EnqueueOperation- Internal: changed assembly version to 6.1.0 and "client version" in init-byte-block to 6,1,0- Internal: moved protocol handling to EnetPeer and TPeer classes (where encryption is added)- Internal: moved InitBlock to (shared) PeerBase (same for UDP/TCP)- Internal: serialization is now done by Protocol.SerializeOpParameters(), which excludes the message header. this makes encryption simpler*** Version 6.0.0- Changed: This library requires Photon v2.2.0 and up! (in other words: the libraries are not compatible with older Photon servers, due to servertime changes)- Added: Support for arrays in arrays. Any serializable datatype can now be used in nested arrays. Even arrays of Hashtables are possible.- Added: Realtime Demo optional command line arguments for game config. set all or none: serverAddress, useTcp (true/false), useReliable (true/false), int intervalDispatch, intervalSend (ms), intervalMove (ms)- Note: Realtime Demo commandline might look like this: start demo-realtime.exe localhost:5055 false true 5 25 100- Changed: renamed GetLocalMsTimestamp property to LocalMsTimestampDelegate (it does not have a getter, despite the old name's implication)- Added: PhotonPeer.LocalTimeInMilliSeconds property to use the timestamp delegate to get the current client milliseconds (by default this is Environment.TickCount)- Changed: UDP: The default value for PhotonPeer.RoundTripTime (300ms, used before connecting) is now replaced with the turnaround time of connect. This should lead to accurate RTT values much sooner- Changed: PhotonPeer.ServerTimeInMilliSeconds is no longer updated all the time. Instead it's fetched soon after connect (when initialization won't affect rountrips anymore) and extrapolated. It should be better to be off by a constant value than by a changing value- Changed: PhotonPeer.ServerTimeInMilliSeconds now returns 0 until the server's timestamp is fetched. Updated the documentation with some internals for this.- Added: PhotonPeer.FetchServerTimestamp() to send the time fetch command (this is done automatically as well. this method is here for completeness)- Fixed: roundtrip time calculation is no longer affected by long intervals between Service() or DispatchIncomingCommands() calls (bug of v5.9.0, caused by internal action queues)- Added: internally for UDP, we use a new command to fetch the timestamp which minimizes the latency for that roundtrip. this one is excluded in roundtrip time measuring- Changed: internal: ACKs by the server are again directly executed (other commands which are put into the action queue and dispatched)- Fixed: Peers with TCP as protocol will no longer try to disconnect while not being connected (does not do anything of disconnected or disconnecting)- Changed: Peers with TCP as protocol will clear the outgoing queue when disconnect() is called (while connected. see fix above)- Updated: Silverlight Realtime Demo slightly- Added: PhotonPeer.Listener property to give subclasses access to the IPhotonPeerListener (set in constructor). Can be useful to call Listener.DebugReturn()- Added: LitePeer-Source.cs to demo-realtime. This is the source of a LitePeer and could be used as sample to create custom operations on the client side*** Version 5.9.0- Release: of changes in 5.7.6 and 5.7.5*** Version 5.7.6- Fixed: a debug output line for TCP connections which did not heed the debug-level.- Changed: PhotonPeer uses less locking internally and will handle incoming data in the game thread (inside DispatchIncomingCommands() or Service()).- Changed: Internally, all commands are put into a (locked) queue which is processed within DispatchIncomingCommands(). Your dispatch interval affects local lag but not the PhotonPeer.RoundTripTime value.- Note: Don't use a peer from multiple threads! It's not thread safe. All callbacks to IPhotonPeerListener methods are happening in your game thread (again: inside DispatchIncomingCommands()).- Changed: removed locks inside the callbacks (according to above change).- Changed: DNS resolution is now done in Connect() unless you provide a valid IP address (if IPAddress.Parse(address) is successful, the IP is used directly).- Fixed: PhotonPeer.Connect() should fail if the IP is unknown or unavailable. Exception: using a localhost might succeed but fail when we try to receive anything.- Updated: Game.cs now initialized the timing intervals. This avoids issues if the client system is having a negative TickCount.- Added: ServerAddress property to PhotonPeer, which might help while developing with several servers and peers.- Changed: This version includes GetLocalMsTimestampDelegate and the PhotonPeer property GetLocalMsTimestamp to set the delegate for local timestamp.*** Version 5.7.5- Changed: All precompiled demos now connect to localhost! From now on, you need to run Photon before trying any of the demos (as we don't guarantee that udp.exitgames.com is online anyways)- Changed: OpCustom() now accepts null as parameter Hashtable, which is a shortcut to "no parameters" for simple operations (an empty hashtable is sent though, it does not reduce bandwidth)- Added: new feature: UDP timeout definition by setting PhotonPeer.DisconnectTimeout (individual per command, set in milliseconds, checked when a command is repeated)- Renamed: enum ReturnCode to StatusCode. The StatusCode values are only used for status callbacks (not as operation results)- Changed: parameter type of PeerStatusCallback() from int to StatusCode (to differentiate them from operation ReturnCodes, which are customizable)- Removed: StatusCode.Ok (as it was actually an Operation ReturnCode)- Added: new StatusCallback value: StatusCode.SendError. Used for sending error cases: "not connected" and "channel not available"- Changed: sendOperation() (Udp and Tcp) does not throw an exception while disconnected or for wrong channel (using StatusCode.SendError instead)- Changed: callback DebugReturn() now has the additional parameter (DebugLevel)level, analog to logging- Changed: UDP connection is disconnected when a read exception happens (before we tried to read despite this until a timeout ended it)- Changed: EnetPeer.Disconnect() now ignores calls when peer is disconnected or disconnecting already- Fixed: TCP code tried to detect socket issues by checking for IOExceptions but now checks SocketException instead- Changed: internal threading: Callbacks due to incoming packages and commands are now queued and triggered by dispatch (in game loop)- Changed: dispatch of action-queue as added to DispatchIncomingCommands (in EnetPeer and TPeer)- Changed: internally, there is no locking for outgoing reliable and unreliable command lists anymore- Changed: Realtime Demo timer usage to avoid nullref on form-close- Changed: Realtime Demo propety isReliable is now in the Player class- Changed: Game.cs and Player.cs for all realtime demos. There is now something like a gameloop (Update()) which must be called regularly and makes (pretty) sure just one thread accesses the peer- Changed: all realtime demos to use the new Update() method and use more similar Game and Player classes (cleanup for less differences)- Fixed: RoundtripTimeVariance is now also reset on connect / init, so the resend-timing of reliable udp does not suffer when a peer connects after a disconnect- Fixed: typo in ExitGames.Client.Photon.StatusCode.QueueIncomingUnreliableWarning (was QueueIncomingUneliableWarning)*** Version 5.7.4 RC3- Changed: Unity3D lib again has it's own UDP handling (the DotNet one causes browser crashes on web-player exit)*** Version 5.7.3 RC3- Changed: Unity3D lib is now identical to DotNet lib (Unity iPhone is compatible with DotNet 2.0 now and this got tested)- Fixed: DNS resolution (did not work for "localhost", which gave two results (IPv4 and IPv6), mixing up things*** Version 5.7.2 RC3- Changed: Unity3D lib: the receive thread will now receive until no data is available, then sleep 5ms and check again- Changed: serverTime is now a signed int (as on server) and adds averaged rountripTime/2 when it gets an update- Changed: ServerTimeInMilliSeconds doc (more concrete, explains how server time works)- Added: support for serverTime, RountripTime and RoundtripTimeVariance when using TCP (Silverlight does not allow UDP)- Added: Silverlight supports either URL:Port and IP:Port as server url string*** Version 5.7.1 RC2- Added: DotNet "Lobby Demo" which uses the "LiteLobby" application of the server SDK to show running games and their player-count- Changed: the realtime demos to use the more similar Game and Player classes*** Version 5.7.0 RC1- Added: documentation: project for Silverlight Hashtable and ArrayList substitutes.- Changed: RealtimeDemo uses same classes Game and Player for Unity3 + Silverlight- Changed: Silverlight: Hashtable and ArrayList are now a separate project / lib- Internal: Silverlight: listener interfaces (Photon and Neutron) now conditionally use ExitGames.Client datatypes from lib- Changed: Photon: connect callback is now deferred to on-init-response (instead of enet-connect) which ensures "no ops before init"- Changed: Unity Realtime demo: using game and player classes merged over from silverlight and re-wrote sample code to display players- Internal: photon projects now have a pre-compile setting "Photon"- Changed: SupportClass Namespace is now compiling into either ExitGames.Client .Photon or .Neutron (to avoid ambiguation)- Added: LitePeer as Lite Application specific peer (with OpJoin and the rest)- Changed: demos accordingly- Changed: case of PhotonPeer methods to first-letter-is-uppercase (as usual in C#)- Removed: nNet-prefix (Connect and Disconnect are self-explanatory)- Renamed: PropertyTypes are now LitePropertyTypes (as they belong to the Lite application)- Changed: Peer state constants with PS_* converted into enum "PeerStateValue"- Removed: URL_RT_SERVER, URL_RT_SERVER_DEV, IP_RT_SERVER and IP_RT_SERVER_DEV- Added: PhotonDemoServerUrlPort and PhotonDemoServerIpPort- Renamed: NPeer to PhotonPeer- Renamed: PhotonPeerListener to IPhotonListener (class and file)- Changed: namespace from Com.ExitGames to ExitGames and ExitGames.Client, ExitGames.Client.Photon and ExitGames.Client.Neutron- Removed: QueueOutgoingUnreliableError, QueueOutgoingAcksError, QueueIncomingReliableError, QueueIncomingUneliableError, QueueSentError (no errors, only warnings)- Removed: error "report" when TCP incoming queue getts fuller- Internal: updates Neutron part to run with Protocol.cs de/serialization (added a serializeParametersNeutron() as there are multiple differences to UDP part)- Changed: projects and scripts to build documentation xml in debug builds- Renamed: demo-photon-SL to demo-realtime-SL (according to other demo realtime implementations)- Changed: many classes and properties are now internal. e.g. Protocol, EnetChannel, EnetPeer (and inner classes), TPeer, SuppportClass.ReadInput()- Updated: AssemblyInfo.cs for photon dotnet and silverlight- Internal: projects to have precompile-flags also in release builds- Updated: build scripts for SDK building- Removed: Compact Framework support*** Version 5.6.1- Fixed: 0 element arrays caused bugs- Fixed: double type was cast incorrectly after being read*** Version 5.6.0- Added: more supported datatypes: float, double and arrays of all basic datatypes (no arrays of hashtable or arrays)- Internal: changed Photon protocol internally to 1.5. (needs a server update to Photon Server SDK 1.6.1+)!- Changed: Channels for Photon UDP are now priorized (from low to high) getting the lower channels out first- Internal: switched de/serialization at several places from manual shifting to a support function, which should provide endian-correctness (Photon Unity PPC compatibility)- Added: Unity info about "Application.runInBackground = true;" to Unity Appendix in doc- Changed: Photon return values are put into a NEW hashtable on receive. not just a cleared one which was not reference-safe (no more need to deep-copy the data of events)- Added: Photon support for "disconnect-reason" which is sent by server in the enet "reserved" byte- Added: Photon ReturnCode.DisconnectByServerUserLimit and .DisconnectByServerLogic- Removed: NPeer.IncomingReliableCommands (was more or less useless)- Added: QueuedIncomingCommands and QueuedOutgoingCommands as metric for how effective send and dispatch is done- Changed: now throwing exceptions when trying to set init-values at runtime (to be fixed at development-time)- Added: doc for sequencing and updated channel doc, (too) short chapter on custom operations, topic "opCodes: byte versus short", doc for property-related functions- Added: overloaded functions for opGetProperties*() for byte-keys- Fixed: Realtime Demo keypress in input-fields have been used as in-game actions, too- Changed: Realtime Demo game-name is now that of the native samples ("play" with other platform SDKs)- Changed: Silverlight SDK has a different port in the constants NPeer.URL_RT_SERVER* and .IP_RT_SERVER* (as Silverlight uses TCP port 4350)*** Version 5.4.1- Added: missing documentation in Unity3d SDK*** Version 5.4.0- Change: The timespan until a sent and unacknowledged reliable command is considered lost, is now calculated by current roundTripTime + 4 * roundTripTimeVariance The result of this calculation is doubled with every following resend. The maximum number of retries can still be defined by calling SetSentCountAllowance.- Change: Removed TimeAllowanceInt- Change: removed surplus debug out, adjusted levels for other, output of command sent-time from hex to decimal- Added: fragmentation support: bigger data is now placed into multiple packages and reassembled- Internal: command-buffers are replaced with CommandList and SortedCommandList (major change, but fully internal)- Fixed: possibility of command buffer overflow. now everything is stored and warnings are used as hint for temporary problems- Added: property NPeer.IncomingReliableCommands, which returns the count of reliable commands currently queued- Added: callback on NCommand.CT_DISCONNECT to inform the NPeerListener about a disconnect from server (see above)- Added: disconnect command will be sent by server in case of timeout, connection-limitations or other issues- Added: NPeer ReturnCode.DisconnectByServer is called on server-side disconnect (see description)- Added: call to StopConnection() on disconnect (by server)- Added: NPeer.PeerID property to get ENet's peerID (useful while debugging)- Internal: SupportClass.WriteIntToByteArray() to ease writing ints to byte[]- Internal: added several values to NCommand to store fragments- Added: support for channels. read more about this in the documentation- Added: NPeer.ChannelCount which sets the number of channels while not connected (default: 2)- Changed: opRaiseEvent() and opCustom() now optionally have a channel parameter- Added: Photon properties functions to NPeer (available with Photon Server SDK v1.5.0) and doc- Added: LiteEventKey.SetProperties = 92 for broadcasted property set- Added: LiteOpKey.Broadcast = 13 and .Properties = 12- Added: LiteEventKey.TargetActorNr = 10 (actorNr the properties are attached to) and .Properties = 12 (changed properties)*** Version 5.3.11- Change: all bytes sent to and from server are treated as unsigned bytes (standard for c#). same for byte-arrays- Change: updated realtime demo to use int for posx,posy but still sending just a byte-value (the field is 16x16, after all)*** Version 5.3.10- Change: switched from sbyte-array to byte-array in de/serialization! important: bytes (ev-keys etc) are sbyte. arrays of bytes are unsigned (on client and server)- Change: NeutronListener functions getShadowReturn() and HasbadwordsReturn() now have byte-array return values. please adjust, even if you don't use those- Internal: changed SupportClass for Compact Framework- Internal: getting ticks sitched from expensive "System.DateTime.Now.Ticks / 10000" to cheap "Environment.TickCount"- Change: Unity lib will now give more debug out if serialisation fails*** Version 5.3.9- Fixed: result-queue, timeouts and customOps work also fine for Unity build again (were broken due to Neutron Unity webplayer compatibility changes in 5.3.8 for Unity)- Fixed: if the browser is closed and the unity webplayer immediatly can't use http anymore, Neutron now informs the application via NetworkStatusReturn()*** Version 5.3.8- Fixed: Neutron Unity now also works fine in webplayer -> Neutron and Photon now both support all platforms of Unity und Unity iPhone- Fixed: default value for parameter encrypt of NeutronGame::RaiseEvent() now is false like for all other RaiseEvent methods and like on all other platforms, instead of true, as it was before*** Version 5.3.7- Fixed: .Net UDP issue, where standard MTU settings caused dropped UDP packages- Internal: refactored ACK queue to arraylist*** Version 5.3.6- Fixed: NPeer issue with ACKs for repeated commands. this enhances handling of lost packages- Changed: NPeer.opJoin() no longer needs the SID*** Version 5.3.5- Known issues: to use Photon on iPhone device, you do need Unity iPhone 1.0.2b1 or higher (current official release is 1.0.1, so please ask for a prerelease or wait until next official release), but of course you can use Photon with Unity iPhone 1.0.1 IDE- Merged: renamed .NET 1.1 NeutronUnity3DiPhone into NeutronUnity3D to replace the old .NET 2.0 lib of that name, which means, that you can use the same .NET 1.1 based lib for Unity and for Unity iPhone now, since 1.1 cpmpatibility fixes are all done now- Fixed: photon is fully compatible to .NET 1.1 now- Internal: optimized UDP package size in Unity3D library (was sending surplus bytes, which were ignored)- Fixed: NPeer.opCustom() now sends the operation given by parameter- Changed: IP_RT_SERVER points to new server IP of udp.exitgames.com- Changed: a new NeutronSession now clears the NetworkLoss state and the sendQueue- Changed: timeout of a HTTP request to 10 seconds. it triggers*** Version 5.3.4- Added: prealpha Unity3DiPhone version of Neutron .NET: core lib already functional, but realtime part not usable on device yet- Internal: there are 4 different versions of Neutron.NET now: - Full .NET: .NET 2.0 based, with asnyc realtime part - Compact Framework: .NET 2.0 based, with threaded realtime part - Unity3D: .NET 2.0 based, with Unity www-class based http part and threaded realtime part - Unity3DiPhone: .NET 1.1 based, with Unity www-class based http part and threaded realtime part*** Version 5.3.3- New: ReturnCode.RC_RT_EXCEPTION_CONNECT, which covers the cases where a server is not running- New: NPeer can now be created with UDP or TCP (by new bool parameter)- Change: renamed most of the constants for NPeer (in INPeerListener structs)- Note: TCP does not offer ServerTime or RoundTripTime jet*** Version 5.3.2- Internal: reverted to threaded model in NConnect (as async UDP is not supported by Unity3D)*** Version 5.3.1- New: login(), register(), customOperation() and raise