Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit 3d11dc6

Browse files
author
Christoph Wendt
committed
Merge branch 'feature/1.0.9' into develop
2 parents 1b4f3c2 + ae44fd0 commit 3d11dc6

File tree

144 files changed

+2443
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2443
-209
lines changed

Documentation/Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Changelog
22

3+
### 1.0.9
4+
5+
* Update plugin to HockeySDK iOS 3.8.2
6+
* Add iOS 9 support
7+
38
### 1.0.8
49

510
* Update plugin to HockeySDK iOS 3.7.1

ExampleGame/Assets/Editor/PostprocessBuildPlayer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Author: Christoph Wendt
44
#
5-
# Version: 1.0.7
5+
# Version: 1.0.9
66
#
77
# Copyright (c) 2013-2015 HockeyApp, Bit Stadium GmbH.
88
# All rights reserved.

ExampleGame/Assets/HockeyAppUnityIOS/HockeyAppUnity-Scripts/HockeyAppIOS.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* Author: Christoph Wendt
44
*
5-
* Version 1.0.8
5+
* Version 1.0.9
66
*
77
* Copyright (c) 2013-2015 HockeyApp, Bit Stadium GmbH.
88
* All rights reserved.
@@ -86,7 +86,8 @@ void Awake(){
8686
List<string> logFileDirs = GetLogFiles();
8787
if ( logFileDirs.Count > 0)
8888
{
89-
StartCoroutine(SendLogs(GetLogFiles()));
89+
Debug.Log("Found files: " + logFileDirs.Count);
90+
StartCoroutine(SendLogs(logFileDirs));
9091
}
9192
}
9293
#endif
@@ -267,15 +268,14 @@ protected virtual List<string> GetLogFiles() {
267268
/// </summary>
268269
protected virtual IEnumerator SendLogs(List<string> logs){
269270

270-
271271
string crashPath = HOCKEYAPP_CRASHESPATH;
272272
string url = GetBaseURL() + crashPath.Replace("[APPID]", appID);
273273

274274
#if (UNITY_IPHONE && !UNITY_EDITOR)
275275
string sdkVersion = HockeyApp_GetSdkVersion ();
276276
string sdkName = HockeyApp_GetSdkName ();
277277
if (sdkName != null && sdkVersion != null) {
278-
url += "?sdk=" + sdkName + "&sdk_version=" + sdkVersion;
278+
url += "?sdk=" + WWW.EscapeURL(sdkName) + "&sdk_version=" + sdkVersion;
279279
}
280280
#endif
281281

ExampleGame/Assets/HockeyAppUnityIOS/HockeyAppUnity.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Author: Christoph Wendt
33
*
4-
* Version: 1.0.8
4+
* Version: 1.0.9
55
*
66
* Copyright (c) 2013-2015 HockeyApp, Bit Stadium GmbH.
77
* All rights reserved.

ExampleGame/Assets/HockeyAppUnityIOS/HockeyAppUnityWrapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Author: Christoph Wendt
33
*
4-
* Version: 1.0.8
4+
* Version: 1.0.9
55
*
66
* Copyright (c) 2013-2015 HockeyApp, Bit Stadium GmbH.
77
* All rights reserved.

ExampleGame/Assets/HockeyAppUnityIOS/HockeySDKResources.bundle.meta

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ExampleGame/Assets/HockeyAppUnityIOS/HockeySDKResources.bundle/Arrow.png.meta

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ExampleGame/Assets/HockeyAppUnityIOS/HockeySDKResources.bundle/[email protected]

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ExampleGame/Assets/HockeyAppUnityIOS/HockeySDKResources.bundle/[email protected]

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ExampleGame/Assets/HockeyAppUnityIOS/HockeySDKResources.bundle/Blur.png.meta

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)