Skip to content

Commit cb26ffe

Browse files
authored
Merge pull request #2 from coryleach/dev
1.0.4 merge
2 parents 3e25650 + 8d5896a commit cb26ffe

File tree

3 files changed

+46
-12
lines changed

3 files changed

+46
-12
lines changed

.codacy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
exclude_paths:
2+
- '*.md'

README.md

+37-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,41 @@
1-
<h1 align="center">Welcome to com.gameframe.async 👋</h1>
1+
<h1 align="center">Gameframe.Async 👋</h1>
22

3+
<!-- BADGE-START -->
34
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d2749fdbc70f422a9d1efccb56d48bff)](https://www.codacy.com/manual/coryleach/UnityAsync?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=coryleach/UnityAsync&amp;utm_campaign=Badge_Grade)
4-
![version](https://img.shields.io/badge/version-1.0.3-blue.svg?cacheSeconds=2592000)
5+
![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/coryleach/UnityAsync?include_prereleases)
56
[![openupm](https://img.shields.io/npm/v/com.gameframe.async?label=openupm&amp;registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.gameframe.async/)
67
[![license](https://img.shields.io/github/license/coryleach/UnityAsync)](https://github.com/coryleach/UnityAsync/blob/master/LICENSE)
78

89
[![twitter](https://img.shields.io/twitter/follow/coryleach.svg?style=social)](https://twitter.com/coryleach)
10+
<!-- BADGE-END -->
911

10-
> Async task utility package for Unity</br>
11-
> Helper methods for starting tasks on the Unity thread.</br>
12-
> Start and await coroutines from any thread.</br>
12+
> Async task utility package for Unity
13+
> Helper methods for starting tasks on the Unity thread.
14+
> Start and await coroutines from any thread.
15+
16+
## Quick Package Install
17+
18+
#### Using UnityPackageManager (for Unity 2019.3 or later)
19+
Open the package manager window (menu: Window > Package Manager)<br/>
20+
Select "Add package from git URL...", fill in the pop-up with the following link:<br/>
21+
https://github.com/coryleach/UnityAsync.git#1.0.4<br/>
22+
23+
#### Using UnityPackageManager (for Unity 2019.1 or later)
24+
25+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
26+
```js
27+
{
28+
"dependencies": {
29+
"com.gameframe.async": "https://github.com/coryleach/UnityAsync.git#1.0.4",
30+
...
31+
},
32+
}
33+
```
34+
35+
<!-- DOC-START -->
36+
<!--
37+
Changes between 'DOC START' and 'DOC END' will not be modified by readme update scripts
38+
-->
1339

1440
## Quick Package Install
1541

@@ -72,16 +98,19 @@ await Awaiters.MainUnityThread;
7298
7399
```
74100

101+
<!-- DOC-END -->
102+
75103
## Author
76104

77105
👤 **Cory Leach**
78106

79-
* Twitter: [@coryleach](https://twitter.com/coryleach)
80-
* Github: [@coryleach](https://github.com/coryleach)
107+
* Twitter: [@coryleach](https://twitter.com/coryleach)
108+
* Github: [@coryleach](https://github.com/coryleach)
109+
81110

82111
## Show your support
83112

84113
Give a ⭐️ if this project helped you!
85114

86115
***
87-
_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_
116+
_This README was generated with ❤️ by [Gameframe.Packages](https://github.com/coryleach/unitypackages)_

package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"name": "com.gameframe.async",
33
"displayName": "Gameframe.Async",
4-
"version": "1.0.3",
5-
"description": "Async task utility library for Unity",
4+
"version": "1.0.4",
5+
"description": "> Async task utility package for Unity \n> Helper methods for starting tasks on the Unity thread. \n> Start and await coroutines from any thread.",
66
"keywords": [],
77
"author": {
88
"name": "Cory Leach",
99
"email": "[email protected]",
10-
"url": "https://coryleach.info"
11-
}
10+
"url": "https://github.com/coryleach",
11+
"github": "coryleach",
12+
"twitter": "coryleach"
13+
},
14+
"repositoryName": "UnityAsync"
1215
}

0 commit comments

Comments
 (0)