Skip to content

Commit 8a002c7

Browse files
author
mob-sakai
committed
release v1.1.3
2 parents fa4c984 + 9486eef commit 8a002c7

29 files changed

+72
-28
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ sysinfo.txt
3333

3434

3535
# Packages
36-
*.unitypackage
3736
build.app
3837
unity.log
3938

Assets/Coffee/UIExtensions/UnmaskForUGUI/CHANGELOG.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v1.1.3](https://github.com/mob-sakai/UnmaskForUGUI/tree/v1.1.3) (2019-07-12)
4+
5+
[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/v1.1.2...v1.1.3)
6+
7+
**Fixed bugs:**
8+
9+
- There is no asmdef file in this package [\#16](https://github.com/mob-sakai/UnmaskForUGUI/issues/16)
10+
11+
**Closed issues:**
12+
13+
- Separate the demo directory as unitypackage [\#17](https://github.com/mob-sakai/UnmaskForUGUI/issues/17)
14+
315
## [v1.1.2](https://github.com/mob-sakai/UnmaskForUGUI/tree/v1.1.2) (2019-07-10)
416

517
[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/v1.1.1...v1.1.2)
@@ -20,17 +32,17 @@
2032

2133
[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/1.1.0...v1.1.0)
2234

23-
**Install UnmaskForUGUI with Unity Package Manager!**
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.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.0",
30-
...
31-
},
32-
}
33-
```
35+
**Install UnmaskForUGUI with Unity Package Manager!**
36+
37+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
38+
```js
39+
{
40+
"dependencies": {
41+
"com.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.0",
42+
...
43+
},
44+
}
45+
```
3446
To update the package, change `#1.1.0` to the target version.
3547

3648
**Implemented enhancements:**

Assets/Coffee/UIExtensions/UnmaskForUGUI/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Find the manifest.json file in the Packages folder of your project and edit it t
5252
```js
5353
{
5454
"dependencies": {
55-
"com.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.2",
55+
"com.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.3",
5656
...
5757
},
5858
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "Coffee.UnmaskForUGUI",
3+
"references": [],
4+
"includePlatforms": [],
5+
"excludePlatforms": []
6+
}

Assets/Coffee/UIExtensions/UnmaskForUGUI/Scripts/Coffee.UnmaskForUGUI.asmdef.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.
Binary file not shown.

Assets/Coffee/UIExtensions/UnmaskForUGUI/UnmaskForUGUI_Demo.unitypackage.meta

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

Assets/Coffee/UIExtensions/UnmaskForUGUI/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "com.coffee.unmask",
33
"displayName": "Unmask for uGUI",
44
"description": "Reverse mask for uGUI element in Unity.",
5-
"version": "1.1.2",
5+
"version": "1.1.3",
66
"unity": "2017.1",
77
"license": "MIT",
88
"repository": {

CHANGELOG.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [v1.1.3](https://github.com/mob-sakai/UnmaskForUGUI/tree/v1.1.3) (2019-07-12)
4+
5+
[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/v1.1.2...v1.1.3)
6+
7+
**Fixed bugs:**
8+
9+
- There is no asmdef file in this package [\#16](https://github.com/mob-sakai/UnmaskForUGUI/issues/16)
10+
11+
**Closed issues:**
12+
13+
- Separate the demo directory as unitypackage [\#17](https://github.com/mob-sakai/UnmaskForUGUI/issues/17)
14+
315
## [v1.1.2](https://github.com/mob-sakai/UnmaskForUGUI/tree/v1.1.2) (2019-07-10)
416

517
[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/v1.1.1...v1.1.2)
@@ -20,17 +32,17 @@
2032

2133
[Full Changelog](https://github.com/mob-sakai/UnmaskForUGUI/compare/1.1.0...v1.1.0)
2234

23-
**Install UnmaskForUGUI with Unity Package Manager!**
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.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.0",
30-
...
31-
},
32-
}
33-
```
35+
**Install UnmaskForUGUI with Unity Package Manager!**
36+
37+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
38+
```js
39+
{
40+
"dependencies": {
41+
"com.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.0",
42+
...
43+
},
44+
}
45+
```
3446
To update the package, change `#1.1.0` to the target version.
3547

3648
**Implemented enhancements:**

ProjectSettings/EditorBuildSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ EditorBuildSettings:
66
serializedVersion: 2
77
m_Scenes:
88
- enabled: 1
9-
path: Assets/Coffee/UIExtensions/UnmaskForUGUI/Demo/Unmask_Demo.unity
9+
path: Assets/UnmaskForUGUI_Demo/Unmask_Demo.unity

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Find the manifest.json file in the Packages folder of your project and edit it t
5252
```js
5353
{
5454
"dependencies": {
55-
"com.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.2",
55+
"com.coffee.unmask": "https://github.com/mob-sakai/UnmaskForUGUI.git#1.1.3",
5656
...
5757
},
5858
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "com.coffee.unmask",
33
"displayName": "Unmask for uGUI",
44
"description": "Reverse mask for uGUI element in Unity.",
5-
"version": "1.1.2",
5+
"version": "1.1.3",
66
"unity": "2017.1",
77
"license": "MIT",
88
"repository": {

0 commit comments

Comments
 (0)