Skip to content

Commit

Permalink
Fixes after merge and new release archives
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaVitale committed Jan 11, 2018
1 parent 936d4d9 commit 78608a9
Show file tree
Hide file tree
Showing 15 changed files with 12 additions and 12 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,15 @@ About the enabled `contentMode`, you can learn more about this [here](https://de

| Property | Description | Note |
| ---------- | ---------- | ----- |
| contentMode | Set the ImageView content mode | Supported contentmodes are listed in a next section. |
| contentMode | Set the ImageView content mode | Supported content modes are listed in a [next section](https://github.com/AndreaVitale/av.imageview#supported-content-modes). |
| defaultImage | __Local__ image to display when the image download is in progress | |
| brokenLinkImage | __Local__ image to display when the given link doesn't work or the image doesn't exists | |
| loadingIndicator | Enable or disable the activity indicator when the download is in progress | `true` by default |
| enableMemoryCache | Enable or disable the memory cache mechanism | `true` by default and *Android only* |
| clipsToBound | More details [here](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/#//apple_ref/occ/instp/UIView/clipsToBounds) | iOS only |
| requestHeader | An object used to define extra http request header fields | |
| rounded | Enable or disable the circle transformation that automatically render the image as a perfect circle | Android only |
| timeout | Set timeout for requests | |
| handleCookies | Enable cookie handling for remote images | |
| enableMemoryCache | Enable or disable the memory cache mechanism | `true` by default and *Android only*, for iOS have a look to module properties [here](https://github.com/AndreaVitale/av.imageview#global-properties-ios-only) |
| rounded | Enable or disable the circle transformation that automatically render the image as a perfect circle | Android only |

### Extra methods

Expand Down
8 changes: 4 additions & 4 deletions android/android/build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
titanium.platform=/Users/Andrea/Library/Application Support/Titanium/mobilesdk/osx/6.1.1.GA/android
android.platform=/Volumes/Data/Development/Android/android-sdk-macosx/platforms/android-23
android.ndk=/Volumes/Data/Development/Android/android-ndk-r10e-macosx
google.apis=/Volumes/Data/Development/Android/android-sdk-macosx/add-ons/addon-google_apis-google-23
titanium.platform=/Users/Andrea/Library/Application Support/Titanium/mobilesdk/osx/6.3.0.GA/android
android.platform=/Volumes/Data/Development/Android/SDK/platforms/android-23
android.ndk=/Volumes/Data/Development/Android/android-ndk-r11c-macosx
google.apis=/Volumes/Data/Development/Android/SDK/add-ons/addon-google_apis-google-23
Binary file removed android/android/libs/arm64-v8a/libav.imageview.so
Binary file not shown.
Binary file modified android/android/libs/armeabi-v7a/libav.imageview.so
Binary file not shown.
Binary file modified android/android/libs/x86/libav.imageview.so
Binary file not shown.
2 changes: 1 addition & 1 deletion android/android/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 3.0.0
version: 3.1.0
apiversion: 4
architectures: arm64-v8a armeabi-v7a x86
description: av.imageview
Expand Down
4 changes: 2 additions & 2 deletions android/android/src/av/imageview/AVImageView.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ public void applyPropertyChanges(String key, Object value) {
.readTimeout(TiConvert.toInt(value), TimeUnit.MILLISECONDS)
.build();
}
if (d.containsKey("handleCookies"))
this.setHandleCookies(d.getBoolean("handleCookies"));
if (key.equals("handleCookies"))
this.setHandleCookies(TiConvert.toBoolean(value));
}

@Override
Expand Down
1 change: 1 addition & 0 deletions ios/iphone/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ build.properties
xcuserdata
*.xcuserstate
*.xcuserdata*
*.sh
Binary file removed ios/iphone/av.imageview-iphone-1.1.0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion ios/iphone/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 1.3.0
version: 1.4.0
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: andreavitale-imageview
Expand Down
Binary file removed releases/av.imageview-android-2.3.0.zip
Binary file not shown.
Binary file added releases/av.imageview-android-2.4.0.zip
Binary file not shown.
Binary file removed releases/av.imageview-android-3.0.0.zip
Binary file not shown.
Binary file added releases/av.imageview-android-3.1.0.zip
Binary file not shown.
Binary file not shown.

0 comments on commit 78608a9

Please sign in to comment.