Skip to content

Commit 08e5c21

Browse files
committed
changed: adopt UUebView 1.0.2
1 parent 6de5320 commit 08e5c21

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

2.5 KB
Binary file not shown.

Assets/AutoyaSample/7_Information/InformationEventReceiver.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void IUUebViewEventHandler.OnProgress(double progress)
2525
Debug.Log("loading.. progress:" + progress);
2626
}
2727

28-
void IUUebViewEventHandler.OnLoaded()
28+
void IUUebViewEventHandler.OnLoaded(string[] treeIds)
2929
{
3030
Debug.Log("loaded.");
3131
}
@@ -36,7 +36,7 @@ void IUUebViewEventHandler.OnLoadFailed(ContentType type, int code, string reaso
3636
}
3737

3838

39-
void IUUebViewEventHandler.OnUpdated()
39+
void IUUebViewEventHandler.OnUpdated(string[] newTreeIds)
4040
{
4141
Debug.Log("updated.");
4242
}

Assets/AutoyaTests/Tests/Information/TestReceiver.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ void IUUebViewEventHandler.OnProgress(double progress) {
2929
}
3030
}
3131

32-
void IUUebViewEventHandler.OnLoaded() {
32+
void IUUebViewEventHandler.OnLoaded(string[] treeIds) {
3333
Debug.Log("OnLoaded");
3434
if (OnLoaded != null) {
3535
OnLoaded();
3636
}
3737
}
3838

39-
void IUUebViewEventHandler.OnUpdated() {
39+
void IUUebViewEventHandler.OnUpdated(string[] newTreeIds) {
4040
Debug.Log("OnUpdated");
4141
if (OnUpdated != null) {
4242
OnUpdated();

Autoya.unitypackage

833 Bytes
Binary file not shown.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Romantic Versioning](http://blog.legacyteam.info/20
77
## [Unreleased]
88

99

10+
## [0.8.15] - 2017-09-14
11+
### Changed
12+
- UUebView library bug fixed. using v1.0.2.
13+
1014
## [0.8.14] - 2017-09-14
1115
### Fixed
1216
- UUebView library bug fixed. using v1.0.1.
@@ -29,6 +33,7 @@ and this project adheres to [Romantic Versioning](http://blog.legacyteam.info/20
2933
### Removed
3034
- Something.
3135

32-
[Unreleased]: https://github.com/sassembla/autoya/compare/0.8.14...HEAD
36+
[Unreleased]: https://github.com/sassembla/autoya/compare/0.8.15...HEAD
37+
[0.8.15]: https://github.com/sassembla/autoya/compare/0.8.14...0.8.15
3338
[0.8.14]: https://github.com/sassembla/autoya/compare/0.8.13...0.8.14
3439
[0.8.13]: https://github.com/sassembla/autoya/compare/0.8.13...0.8.13

0 commit comments

Comments
 (0)