Skip to content

Commit d4085d1

Browse files
committed
v1.9.3
1 parent eb7ce55 commit d4085d1

8 files changed

+21
-10
lines changed

CHANGELOG.md

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

4+
v1.9.3 *(06.09.2014)*
5+
---
6+
* Introduced `ImageScaleType.NONE_SAFE`
7+
* Video thumbnails support (`content://...`)
8+
* Animated drawables support (for `.showImageOnLoading()`, `.showImageOnFail()`, `.showImageForEmptyUri()`)
9+
* Fixed bugs:
10+
* `loadImageSync(...)` bug ([#636](https://github.com/nostra13/Android-Universal-Image-Loader/issues/636))
11+
* NPE if no free space while init disk cache
12+
* "Bitmap too large ..." for all ImageScaleTypes
13+
* contacts photo considering
14+
415
v1.9.2 *(24.05.2014)*
516
---
617
* New Disk cache API (preparing renaming `disc` -> `disk`)

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This project aims to provide a reusable instrument for asynchronous image loadin
55
![Screenshot](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/UniversalImageLoader.png)
66

77
## Project News
8-
**Upcoming changes in new UIL version (1.9.3+)**
8+
**Upcoming changes in new UIL version (1.9.4+)**
99
* Memory Cache redesign
1010
* **New API:** `DisplayImageOptions.targetSize(ImageSize)`
1111
* HTTP cache support
@@ -23,11 +23,11 @@ This project aims to provide a reusable instrument for asynchronous image loadin
2323
Android 2.0+ support
2424

2525
## Downloads
26-
* **[universal-image-loader-1.9.2.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2.jar)** (library; contains *.class files)
27-
* **[universal-image-loader-1.9.2-sources.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2-sources.jar)** (sources; contains *.java files)
28-
* **[universal-image-loader-1.9.2-javadoc.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2-javadoc.jar)** (Java docs; contains *.html files)
29-
* **[universal-image-loader-1.9.2-with-sources.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2-with-sources.jar)** (library with sources inside; contains *.class and *.java files)<br />_Use this JAR if you use Eclipse. So you can see Java docs in tooltips._
30-
* **[universal-image-loader-sample-1.9.2.apk](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.2.apk)** (sample application)
26+
* **[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)** (library; contains *.class files)
27+
* **[universal-image-loader-1.9.3-sources.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3-sources.jar)** (sources; contains *.java files)
28+
* **[universal-image-loader-1.9.3-javadoc.jar](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3-javadoc.jar)** (Java docs; contains *.html files)
29+
* **[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)** (library with sources inside; contains *.class and *.java files)<br />_Use this JAR if you use Eclipse. So you can see Java docs in tooltips._
30+
* **[universal-image-loader-sample-1.9.3.apk](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.3.apk)** (sample application)
3131

3232
Latest snapshot of the library - **[here](https://github.com/nostra13/Android-Universal-Image-Loader/tree/master/sample/libs)**
3333

@@ -42,7 +42,7 @@ Latest snapshot of the library - **[here](https://github.com/nostra13/Android-Un
4242
2. Search problem solution on **[StackOverFlow](http://stackoverflow.com/questions/tagged/universal-image-loader)**
4343
3. Ask your own question on **[StackOverFlow](http://stackoverflow.com/questions/tagged/universal-image-loader)**.<br />
4444
**Be sure to mention following information** in your question (otherwise a question may be ignored):
45-
- UIL version (e.g. 1.9.2)
45+
- UIL version (e.g. 1.9.3)
4646
- Android version tested on (e.g. 2.1)
4747
- your configuration (`ImageLoaderConfiguration`)
4848
- display options (`DisplayImageOptions`)
@@ -57,7 +57,7 @@ If you have some **issues on migration** to newer library version - be sure to a
5757
#### 1. Include library
5858

5959
**Manual:**
60-
* [Download JAR](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.2.jar)
60+
* [Download JAR](https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3.jar)
6161
* Put the JAR in the **libs** subfolder of your Android project
6262

6363
or
@@ -67,15 +67,15 @@ or
6767
<dependency>
6868
<groupId>com.nostra13.universalimageloader</groupId>
6969
<artifactId>universal-image-loader</artifactId>
70-
<version>1.9.2</version>
70+
<version>1.9.3</version>
7171
</dependency>
7272
```
7373

7474
or
7575

7676
**Gradle dependency:**
7777
``` groovy
78-
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.2'
78+
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
7979
```
8080

8181
#### 2. Android Manifest
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)