Skip to content

Commit bcd9937

Browse files
committed
Version bump
1 parent fa0a2c1 commit bcd9937

File tree

5 files changed

+21
-8
lines changed

5 files changed

+21
-8
lines changed

.pubnub.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@ changelog:
33
-
44
changes:
55
-
6-
text: “Unity UWP compatibility”
6+
text: "Subscribe with timetoken fix"
7+
type: bug
8+
-
9+
text: "Unit and integration tests compatibility with UnityEditor 2017.*"
10+
type: improvement
11+
date: Dec 18, 17
12+
version: v3.7.10
13+
-
14+
changes:
15+
-
16+
text: "Unity UWP compatibility"
717
type: improvement
818
date: Aug 8, 17
919
version: v3.7.9
1020
-
1121
changes:
1222
-
13-
text: Presence delta intervals
23+
text: "Presence delta intervals"
1424
type: improvement
1525
date: Mar 31, 17
1626
version: v3.7.8
@@ -239,4 +249,4 @@ supported-platforms:
239249
name: unity
240250
schema: 1
241251
scm: github.com/pubnub/unity
242-
version: 3.7.9”
252+
version: "3.7.10"

Assets/PubnubExample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ void DoTextWindow (int windowID)
599599
AddToPubnubResultContainer ("Running Subscribe");
600600

601601
#if PUBNUB_PS_V2_RESPONSE
602-
pubnub.Subscribe<string> (currentChannel, channelGroup, "15131747232923852",
602+
pubnub.Subscribe<string> (currentChannel, channelGroup,
603603
(string returnMessage) => {
604604
object obj = pubnub.JsonPluggableLibrary.DeserializeToObject(returnMessage);
605605
Dictionary<string, object> dict = obj as Dictionary<string, object>;
@@ -677,7 +677,7 @@ void DoTextWindow (int windowID)
677677
678678
});*/
679679
#else
680-
pubnub.Subscribe<string> (currentChannel, channelGroup, "15131747232923852", DisplayReturnMessage, DisplayConnectStatusMessage,
680+
pubnub.Subscribe<string> (currentChannel, channelGroup, DisplayReturnMessage, DisplayConnectStatusMessage,
681681
DisplayWildcardReturnMessage, DisplayErrorMessage);
682682
#endif
683683
} else if (state.Equals(PubnubState.Presence)){

Assets/Scripts/Pubnub/PubnubUnity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void RaisePropertyChanged (string propertyName)
4343

4444
private CoroutineClass coroutine;
4545

46-
private string origin = "ps.pndsn.com";//"beta-2017q3.pubnub.com";//;
46+
private string origin = "ps.pndsn.com";
4747
private string publishKey = "";
4848
private string subscribeKey = "";
4949
private string secretKey = "";

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# Please direct all Support Questions and Concerns to [email protected]
22

3-
## PubNub 3.7.9 Web Data Push Cloud-Hosted API for Unity 5
3+
## PubNub 3.7.10 Web Data Push Cloud-Hosted API for Unity 5
44
### Supports PC, Mac, Linux, iOS, Android, WebPlayer, Windows Store Universal 10 and WebGL
55

66
### View this First!
77
We've made a [screencast](https://vimeo.com/69591819) that will walk you through the general setup.
88
After checking out the general setup video, [For iOS targets](https://vimeo.com/71549964) be sure to view this walkthrough next. Check it out!
99

1010
### Important changes from previous version
11+
* 3.7.10
12+
* Subscribe with timetoken fix
13+
* Unit and integration tests compatibility with UnityEditor 2017.*
1114
* 3.7.9
1215
* Unity UWP compatibility
1316
* 3.7.8

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.9
1+
3.7.10

0 commit comments

Comments
 (0)