Skip to content

Commit a5e89a2

Browse files
committed
unity.webp 0.3.20 - (libwebp version v1.6.0)
- change: remove dependency - System.Runtime.CompilerServices - add: Samples~/backward-compatibility-2022-ios
1 parent 087b43b commit a5e89a2

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# prebuilt-libwebp
22
/_lib/
33
.DS_Store
4+
*.unitypackage

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Download and install via the [Package Installer](http://package-installer.glitch
2424
``` json
2525
{
2626
"dependencies": {
27-
"com.netpyoung.webp": "0.3.19"
27+
"com.netpyoung.webp": "0.3.20"
2828
},
2929
"scopedRegistries": [
3030
{
@@ -43,11 +43,15 @@ Download and install via the [Package Installer](http://package-installer.glitch
4343
``` json
4444
{
4545
"dependencies": {
46-
"com.netpyoung.webp": "https://github.com/netpyoung/unity.webp.git?path=unity_project/Assets/unity.webp#0.3.19"
46+
"com.netpyoung.webp": "https://github.com/netpyoung/unity.webp.git?path=unity_project/Assets/unity.webp#0.3.20"
4747
},
4848
}
4949
```
5050

51+
### using .unitypackage
52+
53+
- [Download this .unitypackage from Release Page](https://github.com/netpyoung/unity.webp/releases)
54+
5155
## Example
5256

5357
- check [Samples/ directory](https://github.com/netpyoung/unity.webp/tree/master/unity_project/Assets/Samples)

docs/index.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using #{version} for versioning.
1313
``` json
1414
{
1515
"dependencies": {
16-
"com.netpyoung.webp": "https://github.com/netpyoung/unity.webp.git?path=unity_project/Assets/unity.webp#0.3.19",
16+
"com.netpyoung.webp": "https://github.com/netpyoung/unity.webp.git?path=unity_project/Assets/unity.webp#0.3.20",
1717
}
1818
}
1919
```

unity_project/Assets/unity.webp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.netpyoung.webp",
33
"displayName": "Unity.WebP",
4-
"version": "0.3.19",
4+
"version": "0.3.20",
55
"unity": "2018.4",
66
"description": "webp made easy for Unity3d.",
77
"keywords": ["webp","unity.webp"],

unity_project/Assets/unitypackage-builder/Editor/PackageTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class PackageTool
55
[MenuItem("Package/Update Package")]
66
private static void UpdatePackage()
77
{
8-
const string VERSION = "0.3.19";
8+
const string VERSION = "0.3.20";
99
AssetDatabase.ExportPackage(
1010
new[] {"Assets/unity.webp"},
1111
$"../webp-{VERSION}.unitypackage",

0 commit comments

Comments
 (0)