Skip to content

Commit 9653ac9

Browse files
committed
Update README and CHANGELOG
1 parent 248aa29 commit 9653ac9

File tree

2 files changed

+37
-18
lines changed

2 files changed

+37
-18
lines changed

CHANGELOG.md

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
v1.3.1 May 1 2019
2-
[CHANGE] Update README
31

4-
v1.3.0 May 1 2019
5-
[CHANGE] Simplified logic
6-
[CHANGE] Compatible with unity 2017
2+
v1.0.1 Sep 1 2020
3+
[NEW] Add FindPrefabBySprite
4+
[NEW] Add FindUsageOnCurrentScene
5+
[NEW] Support input class name for FindPrefabByScript
6+
[NEW] Support npm package
7+
[FIX] Fix some error
78

8-
v1.2.0 Apr 10 2019
9-
[NEW] Support for opening package files
10-
11-
v1.1.0 Mar 1 2019
12-
[NEW] Add assembly definition files
13-
14-
v1.0.0 Feb 22 2019
15-
[NEW] The first public version
9+
v1.0.0 Jan 1 2020
10+
[NEW] The first public version

README.md

+29-5
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,48 @@ Find Asset in Unity.
1313
![shotscreen](Documentation~/shotscreen1.png)
1414

1515

16-
#### Requirement
16+
### Requirement
1717

18-
- Unity 2018.3+
18+
- Unity 2018.4+
1919

20-
#### Install
20+
### Install
21+
22+
- By NPM (Ease upgrade in Package Manager UI)**Recommend**
23+
24+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
25+
``` js
26+
{
27+
{
28+
"scopedRegistries": [
29+
{
30+
"name": "My Registry",
31+
"url": "https://registry.npmjs.org",
32+
"scopes": [
33+
"com.litefeel"
34+
]
35+
}
36+
],
37+
"dependencies": {
38+
"com.litefeel.finder": "1.0.0",
39+
...
40+
}
41+
}
42+
```
43+
44+
- By git url
2145
2246
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
2347
``` js
2448
{
2549
"dependencies": {
26-
"com.litefeel.finder": "https://github.com/litefeel/Unity-Finder.git",
50+
"com.litefeel.finder": "https://github.com/litefeel/Unity-Finder.git#1.0.0",
2751
...
2852
}
2953
}
3054
```
3155
3256
33-
#### Support
57+
### Support
3458
3559
* Create issues by issues page (https://github.com/litefeel/Unity-Finder/issues)
3660
* Send email to me: [email protected]

0 commit comments

Comments
 (0)