Skip to content

Commit fad7205

Browse files
committed
2 parents ecefd71 + d415b4c commit fad7205

16 files changed

+24
-12
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
===
33

4+
v1.9.4 *(29.05.2015)*
5+
---
6+
* **New API:**
7+
* `ImageLoader.setDefaultLoadingListener(ImageLoadingListener)`
8+
* "Disc -> Disk" migration (deleted DiscCacheAware, MemoryCacheAware)
9+
* Video thumbnails support (`file://...`)
10+
* Fixed 0-length files problem
11+
412
v1.9.3 *(06.09.2014)*
513
---
614
* Introduced `ImageScaleType.NONE_SAFE`

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ UIL aims to provide a powerful, flexible and highly customizable instrument for
55

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

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

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

2828
## Downloads
29-
* **[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)**
30-
* **[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)
31-
* [![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)
29+
* **[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)**
30+
* **[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)
31+
* [![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)
3232

3333
## [Documentation](https://github.com/nostra13/Android-Universal-Image-Loader/wiki)
3434
* **[Quick Setup](https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Quick-Setup)**
@@ -55,6 +55,9 @@ Android 2.0+ support
5555

5656
### Simple
5757
``` java
58+
ImageLoader imageLoader = ImageLoader.getInstance(); // Get singleton instance
59+
```
60+
``` java
5861
// Load image, decode it to Bitmap and display Bitmap in ImageView (or any other view
5962
// which implements ImageAware interface)
6063
imageLoader.displayImage(imageUri, imageView);
@@ -135,6 +138,7 @@ You can support the project and thank the author for his hard work :)
135138
* [AndroidQuery : ImageLoading](https://code.google.com/p/android-query/wiki/ImageLoading)
136139
* [DroidParts : ImageFetcher](http://droidparts.org/image_fetcher.html)
137140
* [Glide](https://github.com/bumptech/glide)
141+
* [Fresco](https://github.com/facebook/fresco)
138142
* [Picasso](https://github.com/square/picasso)
139143
* [UrlImageViewHelper](https://github.com/koush/UrlImageViewHelper)
140144
* [Volley : ImageLoader](https://android.googlesource.com/platform/frameworks/volley/)
Binary file not shown.
Binary file not shown.
Binary file not shown.
-157 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

library/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ android {
3333
}
3434

3535
dependencies {
36-
testCompile 'com.squareup:fest-android:1.0.7'
37-
testCompile 'org.robolectric:robolectric:2.1.1'
36+
testCompile 'com.squareup.assertj:assertj-android:1.0.0'
37+
testCompile 'org.robolectric:robolectric:2.4'
3838
testCompile 'junit:junit:4.12'
3939
compile 'com.android.support:support-v4:22.1.1'
4040
}

library/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.nostra13.universalimageloader</groupId>
1212
<artifactId>parent</artifactId>
13-
<version>1.9.4-SNAPSHOT</version>
13+
<version>1.9.5-SNAPSHOT</version>
1414
</parent>
1515

1616
<dependencies>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>parent</artifactId>
77
<packaging>pom</packaging>
88
<name>Universal Image Loader Project</name>
9-
<version>1.9.4-SNAPSHOT</version>
9+
<version>1.9.5-SNAPSHOT</version>
1010
<description>Powerful and flexible instrument for asynchronous image loading, caching and displaying on Android</description>
1111
<url>https://github.com/nostra13/Android-Universal-Image-Loader</url>
1212
<inceptionYear>2011</inceptionYear>
@@ -30,7 +30,7 @@
3030
<developerConnection>scm:git:[email protected]:nostra13/Android-Universal-Image-Loader.git</developerConnection>
3131
<url>https://github.com/nostra13/Android-Universal-Image-Loader</url>
3232
<tag>v1.9.1</tag>
33-
</scm>
33+
</scm>
3434

3535
<developers>
3636
<developer>
157 KB
Binary file not shown.

sample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.nostra13.universalimageloader</groupId>
1212
<artifactId>parent</artifactId>
13-
<version>1.9.4-SNAPSHOT</version>
13+
<version>1.9.5-SNAPSHOT</version>
1414
</parent>
1515

1616
<dependencies>

0 commit comments

Comments
 (0)