Skip to content

Commit

Permalink
v1.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nostra13 committed May 28, 2015
1 parent 3e8681f commit d415b4c
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 11 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,14 @@
Change Log
===

v1.9.4 *(29.05.2015)*
---
* **New API:**
* `ImageLoader.setDefaultLoadingListener(ImageLoadingListener)`
* "Disc -> Disk" migration (deleted DiscCacheAware, MemoryCacheAware)
* Video thumbnails support (`file://...`)
* Fixed 0-length files problem

v1.9.3 *(06.09.2014)*
---
* Introduced `ImageScaleType.NONE_SAFE`
Expand Down
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -5,12 +5,12 @@ UIL aims to provide a powerful, flexible and highly customizable instrument for

![Screenshot](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/UniversalImageLoader.png)

## Project News
## Project News
* Really have no time for development but anyway UIL is still alive :)
* 1.9.4 is last version deployed by Maven. Moving to Gradle deploy process...

**Upcoming changes in new UIL version (1.9.4+)**
**Upcoming changes in new UIL version (1.9.5+)**
* Memory Cache redesign
* Video file thumbnail support via `file:///sdcard/video.mp4`
* **New API:** `DisplayImageOptions.targetSize(ImageSize)`
* HTTP cache support
* Consider `BitmapFactory.Options.inBitmap`
Expand All @@ -26,9 +26,9 @@ UIL aims to provide a powerful, flexible and highly customizable instrument for
Android 2.0+ support

## Downloads
* **[universal-image-loader-1.9.3.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3.jar)**
* **[universal-image-loader-1.9.3-with-sources.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3-with-sources.jar)** (for Eclipse)
* [![Demo app](https://camo.githubusercontent.com/dc1ffe0e4d25c2c28a69423c3c78000ef7ee96bf/68747470733a2f2f646576656c6f7065722e616e64726f69642e636f6d2f696d616765732f6272616e642f656e5f6170705f7267625f776f5f34352e706e67)](https://play.google.com/store/apps/details?id=com.nostra13.universalimageloader.sample) [![QR Code](https://lh3.ggpht.com/csXEddxiLgQ6FxckefjQnP1PVugbaAYOdcuTa3vVtGV1PlWbFu2dYggoH8rI1w2RdEz1=w50)](http://chart.apis.google.com/chart?chs=300x300&cht=qr&chld=|1&chl=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.nostra13.universalimageloader.sample) [<img src="http://mobway.in/image/apk.png" height="45px" />](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.3.apk)
* **[universal-image-loader-1.9.4.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.4.jar)**
* **[universal-image-loader-1.9.4-with-sources.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.4-with-sources.jar)** (for Eclipse)
* [![Demo app](https://camo.githubusercontent.com/dc1ffe0e4d25c2c28a69423c3c78000ef7ee96bf/68747470733a2f2f646576656c6f7065722e616e64726f69642e636f6d2f696d616765732f6272616e642f656e5f6170705f7267625f776f5f34352e706e67)](https://play.google.com/store/apps/details?id=com.nostra13.universalimageloader.sample) [![QR Code](https://lh3.ggpht.com/csXEddxiLgQ6FxckefjQnP1PVugbaAYOdcuTa3vVtGV1PlWbFu2dYggoH8rI1w2RdEz1=w50)](http://chart.apis.google.com/chart?chs=300x300&cht=qr&chld=|1&chl=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.nostra13.universalimageloader.sample) [<img src="http://mobway.in/image/apk.png" height="45px" />](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.4.apk)

## [Documentation](https://github.com/nostra13/Android-Universal-Image-Loader/wiki)
* **[Quick Setup](https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Quick-Setup)**
Expand All @@ -55,7 +55,7 @@ Android 2.0+ support

### Simple
``` java
ImageLoader imageLoader = ImageLoader.getInstance();
ImageLoader imageLoader = ImageLoader.getInstance(); // Get singleton instance
```
``` java
// Load image, decode it to Bitmap and display Bitmap in ImageView (or any other view
Expand Down
Binary file removed downloads/universal-image-loader-1.9.3-javadoc.jar
Binary file not shown.
Binary file removed downloads/universal-image-loader-1.9.3-sources.jar
Binary file not shown.
Binary file not shown.
Binary file removed downloads/universal-image-loader-1.9.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions library/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nostra13.universalimageloader"
android:versionCode="39"
android:versionName="1.9.4" >
android:versionCode="40"
android:versionName="1.9.5" >

<uses-sdk
android:minSdkVersion="5"
Expand Down
4 changes: 2 additions & 2 deletions sample/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nostra13.universalimageloader.sample"
android:versionCode="39"
android:versionName="1.9.4" >
android:versionCode="40"
android:versionName="1.9.5" >

<uses-sdk
android:minSdkVersion="5"
Expand Down
Binary file added sample/libs/universal-image-loader-1.9.4.jar
Binary file not shown.

0 comments on commit d415b4c

Please sign in to comment.