Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit a518da6

Browse files
authored
Release 0.1.4 Prep (#705)
1 parent 3447cd6 commit a518da6

File tree

10 files changed

+22
-19
lines changed

10 files changed

+22
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
## Unreleased
44

5+
## `0.1.4` - 2019-01-28
6+
57
### Added
68

7-
- Added support for the Steam authentication flow.
89
- Added support for the Alpha Locator flow.
910
- Added support for connecting mobile devices to cloud deployments via the anonymous authentication flow.
1011
- Added option to build workers out via IL2CPP in the cmd.
1112
- Added an example of handling disconnect for mobile workers.
13+
- Added support for launching an Android client from the Editor over ADB.
1214

1315
### Changed
1416

@@ -22,7 +24,8 @@
2224
- Updated the `MobileWorkerConnector` to use the KCP network protocol by default.
2325
- Changed the `mobile_launch.json` config to use the new Runtime.
2426
- Updated all the launch configs to use the new Runtime.
25-
- Changed the way builds are processed in the Unity Editor. If you don't have build support for a particular target, that specific build target will be skipped rather than the whole build process cancelled.
27+
- Changed the build process in the Editor such that it skips builds that don't have build support rather than canceling the entire build process.
28+
- Note that building via the `Improbable.Gdk.BuildSystem.WorkerBuilder.Build` static method is unchanged.
2629

2730
### Fixed
2831

packer.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"package_name": "gdk-for-unity",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"git_packages": [
55
{
66
"clone_url": "[email protected]:spatialos/gdk-for-unity.git",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.improbable.gdk.buildsystem",
33
"displayName": "SpatialOS GDK Build System",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Build System Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core": "0.1.3"
9+
"com.improbable.gdk.core": "0.1.4"
1010
}
1111
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "com.improbable.gdk.core",
33
"displayName": "SpatialOS GDK Core",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Core Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.tools": "0.1.3",
9+
"com.improbable.gdk.tools": "0.1.4",
1010
"com.unity.entities": "0.0.12-preview.21"
1111
}
1212
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.improbable.gdk.gameobjectcreation",
33
"displayName": "SpatialOS GDK GameObject Creation",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK GameObject Creation Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3"
9+
"com.improbable.gdk.core":"0.1.4"
1010
}
1111
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.improbable.gdk.mobile",
33
"displayName": "SpatialOS GDK Mobile Support",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Mobile Support Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3"
9+
"com.improbable.gdk.core":"0.1.4"
1010
}
1111
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "com.improbable.gdk.playerlifecycle",
33
"displayName": "SpatialOS GDK Player Lifecycle",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Player Lifecycle Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3",
10-
"com.improbable.gdk.tools":"0.1.3"
9+
"com.improbable.gdk.core":"0.1.4",
10+
"com.improbable.gdk.tools":"0.1.4"
1111
}
1212
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.improbable.gdk.testutils",
33
"displayName": "SpatialOS GDK Test Utils",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Test Utils. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core": "0.1.3"
9+
"com.improbable.gdk.core": "0.1.4"
1010
}
1111
}

workers/unity/Packages/com.improbable.gdk.tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.improbable.gdk.tools",
33
"displayName": "SpatialOS GDK Tools",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Support Tools. Made by Improbable.",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.improbable.gdk.transformsynchronization",
33
"displayName": "SpatialOS GDK Transform Synchronization",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Transform Synchronization Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core":"0.1.3"
9+
"com.improbable.gdk.core":"0.1.4"
1010
}
1111
}

0 commit comments

Comments
 (0)