Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions hisplayer-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ The following public APIs are provided by **HISPlayerManager**
* **HISPLAYER_EVENT_AUTO_TRANSITION**
* **HISPLAYER_EVENT_PLAYBACK_BUFFERING**
* **HISPLAYER_EVENT_END_OF_CONTENT**
* **HISPLAYER_EVENT_NETWORK_CONNECTED**

* **public enum HISPlayerError**: The list of errors provided by HISPlayer SDK. The errors can be used with the virtual functions in the next section:
* **HISPLAYER_ERROR_LICENSE_EXPIRED** (no function on this)
Expand Down Expand Up @@ -273,6 +274,10 @@ This event occurs whenever an internal playback is buffering.
Override this method to add custom logic when **HISPlayerEvent.HISPlayer_EVENT_END_OF_CONTENT** is triggered.
This event occurs whenever an internal playlist reaches the end of the list.

#### protected virtual void EventNetworkConnected(HISPlayerEventInfo subtitlesInfo)
Override this method to add custom logic when **HISPlayerEvent.HISPlayerEvent.HISPLAYER_EVENT_NETWORK_CONNECTED** is triggered.
This event occurs whenever the network has been reconnected.

#### protected virtual void ErrorInfo(HISPlayerErrorInfo errorInfo)
Override this method to add custom logic when an error callback is triggered. Please, refer to the **HISPlayerError** list.

Expand Down
6 changes: 5 additions & 1 deletion releases.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# HISPlayer Unity iOS SDK Release Notes

### Version 4.14.2
##### December 30, 2025
- [**Added**] EventNetworkConnected, ErrorNetworkFailed and auto network reconnection during video playback.

### Version 4.14.1
##### December 23, 2025
- [**Improvement**] Updated eventType of EventPlaybackSeekEnd to output HISPLAYER_EVENT_PLAYBACK_SEEK_END.

### Version 4.14.0
##### December 18, 2025
- [**Improvement**] Improve compatibility with App Store submission related to symbol name collisions with Apple system libraries.
- [**Improvement**] Improved compatibility with App Store submission related to symbol name collisions with Apple system libraries.
- [**Improvement**] Improved volume change event handling to ensure HISPLAYER_EVENT_VOLUME_CHANGE is triggered consistently across all platforms.
- [**Improvement**] Updated GetProgramDateTimeEpoch to return the exact Epoch time of the current frame.
- [**Improvement**] Improved seek event handling to ensure HISPLAYER_EVENT_PLAYBACK_SEEK_END is consistently triggered across all platforms.
Expand Down