Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Change Log

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

## [1.3.1] - 2022-10-24
- Added: OpenUPM documentation.

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

[1.3.1]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.0.0...1.1.0
Expand Down
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
![License](https://img.shields.io/github/license/mygamedevtools/extensions)
[![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/)
![Release](https://img.shields.io/github/v/release/mygamedevtools/extensions?sort=semver)
![Last Commit](https://img.shields.io/github/last-commit/mygamedevtools/extensions)

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

#### - 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)_
You can open the Package Manager and then click on the `+` button on the top left corner.
From there select `Add package from git URL...`, type `https://github.com/mygamedevtools/extensions.git` and click `Add`.
The package will be imported by the Package Manager.
### OpenUPM

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):

#### - Other Package Manager supported versions: Add manually to manifest
You should add this to your `manifest.json` under the `Packages` folder on the root of your Unity Project:
```
{
"dependencies": {
"com.mygamedevtools.extensios": "https://github.com/mygamedevtools/extensions.git"
}
}
openupm add com.mygamedevtools.extensions
```

### [Installing from Git](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_

1. Open `Edit/Project Settings/Package Manager`.
2. Click <kbd>+</kbd>.
3. Select `Add package from git URL...`.
4. Paste `com.mygamedevtools.extensions` into name.
5. Click `Add`.

Usage
---

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.mygamedevtools.extensions",
"version": "1.3.0",
"version": "1.3.1",
"displayName": "Extensions",
"description": "A personal collection of Unity Engine tools, extensions and helpers.",
"unity": "2019.4",
Expand Down