Skip to content

Tags: hl72425/UnitySimpleFileBrowser

Tags

v1.7.7

Toggle v1.7.7's commit message
- Fixed "Namespace 'com.yasirkula.unity' is used in multiple modules …

…and/or libraries" error that is introduced with Android Gradle version 9.1.0 on Unity 6.4.4+ if multiple native plugins of mine are used at the same time: https://discussions.unity.com/t/info-android-gradle-9-1-0-agp-9-0-0-update-in-unity-6-4/1709062

- "AAR Source (Android)" folder is now an actual Android Studio Android Library module
- Plugin's Gradle version had to be updated to 7.5.1 to fix this issue so make sure your Unity version is compatible: https://docs.unity3d.com/2021.3/Documentation/Manual/android-gradle-overview.html

v1.7.6

Toggle v1.7.6's commit message
Bumped version

v1.7.5

Toggle v1.7.5's commit message
Added FileBrowser.CustomSearchHandler event

v1.7.4

Toggle v1.7.4's commit message
Fixed WaitForSaveDialog no longer working on Android (fixed yasirkula…

…#107)

v1.7.3

Toggle v1.7.3's commit message
Disabled "Parse Escape Characters" of all TextMeshProUGUIs to avoid e…

…dge cases (fixed yasirkula#106)

v1.7.2

Toggle v1.7.2's commit message
- Fixed UnauthorizedAccessException on iOS

- Tiny performance optimization

v1.7.1

Toggle v1.7.1's commit message
Added FileBrowser.CanDeleteFiles and CanRenameFiles properties to dis…

…able deleting/renaming files via file browser UI

v1.7.0

Toggle v1.7.0's commit message
- BREAKING CHANGE: Replaced RequestPermission with RequestPermissionA…

…sync (see yasirkula/UnityNativeGallery#343)

- BREAKING CHANGE: CheckPermission returns bool instead of Permission (see yasirkula/UnityAndroidRuntimePermissions#14)
- Updated Unity version to 2021.3.41f1
- Upgraded Texts to TextMesh Pro (closed yasirkula#82)
- Configurable Enter Play Mode is supported (disabling Domain Reload works but disabling Scene Reload isn't tested)
- FileBrowser.Instance is now public for convenience
- Removed nested canvases from SimpleFileBrowserCanvas prefab to make VR integration simpler

v1.6.6

Toggle v1.6.6's commit message
Fixed rare "No such proxy method" error for native callback functions

v1.6.5

Toggle v1.6.5's commit message
- Moved most UnityEvent registrations to the code (it fixes InputFiel…

…d.OnEndEdit being changed to InputField.OnSubmit on latest Unity versions, see: yasirkula/UnityTextToTextMeshProUpgradeTool#2)

- Minor memory optimization in RecycledListView
- Attempted to simplify the example code