Skip to content

Commit 770de76

Browse files
authored
Merge pull request #1 from myunitytools/update/repository
[Update] Migrate repository to My Unity Tools.
2 parents 6213ea4 + 045641a commit 770de76

File tree

5 files changed

+71
-13
lines changed

5 files changed

+71
-13
lines changed

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
Change Log
2+
===
3+
4+
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
5+
6+
## [2.1.0] - 2022-09-13
7+
- Changed: Moved repository to My Unity Tools organization
8+
- Changed: Updated package name and author.
9+
10+
## [2.0.1] - 2021-11-29
11+
- Changed: Added support for Unity 2021.2.
12+
13+
## [2.0.0] - 2021-03-17
14+
- Changed: Updated UI screens to use the UI Toolkit.
15+
- Added: Support for multiple script templates.
16+
17+
## [1.3.0] - 2021-02-22
18+
- Changed: Refactored scripts to the My Unity Tools namespace.
19+
20+
## [1.2.2] - 2020-09-11
21+
- Fixed: Script templates not being copied to editor folder.
22+
23+
## [1.2.1] - 2020-09-11
24+
- Added: Reintroduced .meta files.
25+
26+
## [1.2.0] - 2020-09-08
27+
- Removed: .meta files.
28+
- Removed: Asset Store support.
29+
30+
## [1.1.1] - 2020-03-22
31+
- Fixed: script template editing.
32+
33+
## [1.1.0] - 2019-09-26
34+
- Changed: Updated structure to adapt to the Unity Package Manager.
35+
36+
## [1.0.1] - 2019-08-18
37+
- Added: Assembly definition to compile the scripts.
38+
39+
## [1.0.0] - 2019-07-27
40+
- Initial Asset Store release.
41+
42+
[2.1.0]: https://github.com/myunitytools/script-template/compare/2.0.1...2.1.0
43+
[2.0.1]: https://github.com/myunitytools/script-template/compare/2.0.0...2.0.1
44+
[2.0.0]: https://github.com/myunitytools/script-template/compare/1.3.0...2.0.0
45+
[1.3.0]: https://github.com/myunitytools/script-template/compare/1.2.2...1.3.0
46+
[1.2.2]: https://github.com/myunitytools/script-template/compare/1.2.1...1.2.2
47+
[1.2.1]: https://github.com/myunitytools/script-template/compare/1.2.0...1.2.1
48+
[1.2.0]: https://github.com/myunitytools/script-template/compare/1.1.1...1.2.0
49+
[1.1.1]: https://github.com/myunitytools/script-template/compare/1.1.0...1.1.1
50+
[1.1.0]: https://github.com/myunitytools/script-template/compare/1.0.1...1.1.0
51+
[1.0.1]: https://github.com/myunitytools/script-template/compare/1.0.0...1.0.1
52+
[1.0.0]: https://github.com/myunitytools/script-template/compare/087dd6c...1.0.0

CHANGELOG.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Joao Borks
3+
Copyright (c) 2022 Joao Borks
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
![License](https://img.shields.io/github/license/joaoborks/myunitytools-script-template)
2-
![Release](https://img.shields.io/github/v/release/joaoborks/myunitytools-script-template?sort=semver)
3-
![Last Commit](https://img.shields.io/github/last-commit/joaoborks/myunitytools-script-template)
1+
![License](https://img.shields.io/github/license/myunitytools/script-template)
2+
![Release](https://img.shields.io/github/v/release/myunitytools/script-template?sort=semver)
3+
![Last Commit](https://img.shields.io/github/last-commit/myunitytools/script-template)
44

55
My Unity Tools - Script Template
66
===
@@ -16,7 +16,7 @@ Installation
1616
---
1717

1818
#### [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)_
19-
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/joaoborks/myunitytools-script-template.git` and click `Add`. The package will be imported by the Package Manager.
19+
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/myunitytools/script-template.git` and click `Add`. The package will be imported by the Package Manager.
2020

2121
:link: [Unity Official Documentation](https://docs.unity3d.com/Manual/upm-git.html)
2222

@@ -62,4 +62,4 @@ uses it.
6262

6363
---
6464

65-
Don't hesitate to create [issues](https://github.com/joaoborks/myunitytools-script-template/issues) for suggestions and bugs. Have fun!
65+
Don't hesitate to create [issues](https://github.com/myunitytools/script-template/issues) for suggestions and bugs. Have fun!

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "com.myunitytools.scripttemplate",
3-
"version": "2.0.1",
4-
"displayName": "My Unity Tools - Script Templates",
2+
"name": "com.myunitytools.script-template",
3+
"version": "2.1.0",
4+
"displayName": "Script Templates",
55
"description": "This tool adds custom Script Templates to Unity that will serve as alternatives for the default \"C#Script\" that I personally always modify before writing my scripts.\nIn essence, it adds a signature header on every script with your name, email and creation date. \nAdditionally, it adds templates for others types of scripts rather than just Mono Behaviours.",
66
"unity": "2019.4",
77
"keywords": [
@@ -13,10 +13,9 @@
1313
"editor"
1414
],
1515
"author": {
16-
"name": "Jo\u00e3o Borks",
16+
"name": "My Unity Tools",
1717
"email": "[email protected]",
18-
"url": "https://github.com/JoaoBorks"
18+
"url": "https://github.com/myunitytools"
1919
},
20-
"type": "tool",
21-
"unityRelease": "0f1"
20+
"type": "tool"
2221
}

0 commit comments

Comments
 (0)