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

Commit

Permalink
Merge branch 'release/1.1.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwend committed Jul 31, 2017
2 parents a4976ce + 12220d3 commit 96749c2
Show file tree
Hide file tree
Showing 24 changed files with 52 additions and 61 deletions.
16 changes: 16 additions & 0 deletions Documentation/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
###Changelog:###

### 1.1.6

Upgrade to HockeySDK for Android 4.1.5

* [FIX] Fix a resource leak in Sender.
* [FIX] Fix possibility to bypass authentication.
* [FIX] Fix the progressbar when sending feedback.
* [FIX] Fix the dates in the Feedback UI.
* [FIX] Fix ConcurrentModificationException in metrics feature.
* [FIX] Fix potential crash related to multi-threading in Channel.
* [FIX] Fix the focus in the Feedback UI, this also improves accessibility.
* [IMPROVEMENT] Fix some strict mode violations.
* [IMPROVEMENT] Improve accessibility for Feedback attachments.
* [IMPROVEMENT] Send batched events when the app goes into background.
* [IMPROVEMENT] Automatically add the sdk to the often already existent Plugins folder

### 1.1.5

* [FIX] Fixes session tracking by explicitly starting one.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="15"
android:versionName="1.1.5" >
android:versionCode="16"
android:versionName="1.1.6" >

<uses-sdk
android:minSdkVersion="9"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Version: 1.1.5
* Version: 1.1.6
*/

using UnityEngine;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified ExampleGame/Assets/TestScene.unity
Binary file not shown.
3 changes: 2 additions & 1 deletion ExampleGame/ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
m_EditorVersion: 5.6.1f1
m_EditorVersion: 5.0.0f4
m_StandardAssetsVersion: 0
2 changes: 1 addition & 1 deletion HockeyAppUnityPlugin/hockeysdk-unity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ repositories {
}

dependencies {
compile(name:'HockeySDK-4.1.4', ext:'aar')
compile(name:'HockeySDK-4.1.5', ext:'aar')
}
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Plugins/HockeyAppUnityAndroid/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="15"
android:versionName="1.1.5" >
android:versionCode="16"
android:versionName="1.1.6" >

<uses-sdk
android:minSdkVersion="9"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Version: 1.1.5
* Version: 1.1.6
*/

using UnityEngine;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file removed Plugins/HockeySDK-4.1.4.aar
Binary file not shown.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 1.1.5
## Version 1.1.6

## Introduction

Expand All @@ -20,15 +20,15 @@ The following features are currently supported:

This document contains the following sections:

1. [Requirements (Version 1.1.4)](#1)
1. [Requirements (Version 1.1.6)](#1)
2. [Installation & Setup](#2)
3. [Examples](#3)
4. [Troubleshooting](#4)
5. [Code of Conduct](#5)
6. [Contributor License](#6)
7. [Licenses](#7)

## <a name="1"></a>Requirements (Version 1.1.5)
## <a name="1"></a>Requirements (Version 1.1.6)

* [Changelog](Documentation/Changelog.md)
* Unity 5.0 or newer (SDK versions with Unity 4 support can be found at the [Unity Asset Store](https://www.assetstore.unity3d.com/en/?gclid=CO) or by switching to the 1.0.3 tag on GitHub).
Expand Down

0 comments on commit 96749c2

Please sign in to comment.