Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
V4.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
myflashlab committed Nov 18, 2018
1 parent 4aec5b4 commit 6f43ede
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AIR/Main-app.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<application xmlns="http://ns.adobe.com/air/application/30.0">
<id>com.doitflash.exFileBrowser</id>
<versionNumber>4.1.5</versionNumber>
<versionNumber>4.1.6</versionNumber>
<supportedProfiles>mobileDevice</supportedProfiles>
<filename>exFileBrowser</filename>
<name>file picker</name>
Expand Down
Binary file added AIR/icons/Assets.car
Binary file not shown.
Binary file modified AIR/lib/fileChooserExtension.ane
Binary file not shown.
2 changes: 1 addition & 1 deletion AIR/src/MainFinal.as
Expand Up @@ -163,7 +163,7 @@ public class MainFinal extends Sprite

private function checkPermissions():void
{
// first you need to make sure you have access to the Strorage if you are on Android?
// first you need to make sure you have access to the Storage if you are on Android?
var permissionState:int = PermissionCheck.check(PermissionCheck.SOURCE_STORAGE);

if(permissionState == PermissionCheck.PERMISSION_UNKNOWN || permissionState == PermissionCheck.PERMISSION_DENIED)
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
@@ -1,5 +1,9 @@
FileBrowser Adobe Air Native Extension

*Nov 17, 2018 - V4.1.6*
* Works with OverrideAir ANE V5.6.1 or higher
* Works with ANELAB V1.1.26 or higher

*Sep 22, 2018 - V4.1.5*
* Removed androidSupport dependency
* Fixed a bug where Files from GoogleDrive where throwing an exception when selected. From this version, you can pick a file from GoogleDrive to your AIR app with no problem.
Expand Down
6 changes: 5 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
# FileChooser ANE V4.1.5 (Android+iOS)
# FileChooser ANE V4.1.6 (Android+iOS)
FileChooser is a very easy to work with extension and lets you choose a file from your device and use it inside your AIR project. you can use the choose method and pass the type of file you need by passing its mimetype. \*/\* for example means any file with any mimetype! but image/\* means any image file while image/png means any png image file! on iOS, due to the OS limitations, no matter what input you set, it will allow you to pick images only at the moment. (in future versions, we will support picking video files on iOS too)

This extension can also optionally resize the picked image as fast as a few milliseconds for you so you don't have to load a huge image into your app!
Expand Down Expand Up @@ -99,6 +99,10 @@ http://www.myflashlabs.com/product/file-image-pick-ane-adobe-air-native-extensio
2. You have the option to resize the images because in a real life scenario you surely don't want to load a big image like 5MB into your app, right? Although you can resize the picked image in flash and maybe with using threads (Actionscript workers) but it will be a VERY slow process. so we decided to put a native image scaler inside the ```choose``` method to scale down the selected image with keeping the aspect ratio untouched. This will make working with this extension very exceptional.

# Changelog
*Nov 17, 2018 - V4.1.6*
* Works with OverrideAir ANE V5.6.1 or higher
* Works with ANELAB V1.1.26 or higher

*Sep 22, 2018 - V4.1.5*
* Removed androidSupport dependency
* Fixed a bug where Files from GoogleDrive where throwing an exception when selected. From this version, you can pick a file from GoogleDrive to your AIR app with no problem.
Expand Down

0 comments on commit 6f43ede

Please sign in to comment.