Skip to content

Commit c7adc17

Browse files
authored
Merge pull request #4 from mygamedevtools/update/open-upm-docs
[Update] Add open upm docs
2 parents 45873a8 + c03b45e commit c7adc17

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Change Log
33

44
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [1.3.1] - 2022-10-24
7+
- Added: OpenUPM documentation.
8+
69
## [1.3.0] - 2022-10-03
710
- Changed: Updated organization name to comply with [Unity Package Guidelines](https://unity.com/legal/terms-of-service/software/package-guidelines).
811
- Fixed: Updated assembly definition and namespaces names to reflect the organization name changes.
@@ -23,6 +26,7 @@ All notable changes to this project will be documented in this file. This projec
2326
- Added: `DebugExtensions` to help debugging arrays and collections.
2427
- Added: `GameObjectExtensions` to help with common `GameObject` operations.
2528

29+
[1.3.1]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.3.0...1.3.1
2630
[1.3.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.2.0...1.3.0
2731
[1.2.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.1.0...1.2.0
2832
[1.1.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.0.0...1.1.0

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
![License](https://img.shields.io/github/license/mygamedevtools/extensions)
2+
[![openupm](https://img.shields.io/npm/v/com.mygamedevtools.extensions?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.mygamedevtools.extensions/)
23
![Release](https://img.shields.io/github/v/release/mygamedevtools/extensions?sort=semver)
34
![Last Commit](https://img.shields.io/github/last-commit/mygamedevtools/extensions)
45

@@ -10,21 +11,22 @@ _A personal collection of Unity Engine tools, extensions, and helpers._
1011
Installation
1112
---
1213

13-
#### - For 2019.1+: [Installing from a git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_
14-
You can open the Package Manager and then click on the `+` button on the top left corner.
15-
From there select `Add package from git URL...`, type `https://github.com/mygamedevtools/extensions.git` and click `Add`.
16-
The package will be imported by the Package Manager.
14+
### OpenUPM
15+
16+
This package is available on the [OpenUPM](https://openupm.com/packages/com.mygamedevtools.extensions) registry. Add the package via the [openupm-cli](https://github.com/openupm/openupm-cli):
1717

18-
#### - Other Package Manager supported versions: Add manually to manifest
19-
You should add this to your `manifest.json` under the `Packages` folder on the root of your Unity Project:
2018
```
21-
{
22-
"dependencies": {
23-
"com.mygamedevtools.extensios": "https://github.com/mygamedevtools/extensions.git"
24-
}
25-
}
19+
openupm add com.mygamedevtools.extensions
2620
```
2721

22+
### [Installing from Git](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_
23+
24+
1. Open `Edit/Project Settings/Package Manager`.
25+
2. Click <kbd>+</kbd>.
26+
3. Select `Add package from git URL...`.
27+
4. Paste `com.mygamedevtools.extensions` into name.
28+
5. Click `Add`.
29+
2830
Usage
2931
---
3032

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.mygamedevtools.extensions",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"displayName": "Extensions",
55
"description": "A personal collection of Unity Engine tools, extensions and helpers.",
66
"unity": "2019.4",

0 commit comments

Comments
 (0)