|
Revision 6831, 1.2 KB
(checked in by mlg, 3 years ago)
|
|
Bug correction :
bug:0001837 : there is now a default translation file (in english), so the application won't crash when a translation is not found
bug:0001833 : the accents are manage when creating a new category
bug:0001832 : on a right click on the categories list, the selection is now visible
bug:0001830 : there is no bug on refreshing the categories tree
Features :
feature:001828 : exif and iptc tags are kept after resizing an image
feature:001827 : pwg.images.addChunk is now fully used : images are split into chunks before being sent
Other features :
* The user can manage his preferences :
-The web images size
-The chunks size
* The user can save the login informations (url, login, password) /!\ in a plain text file !
|
| Line | |
|---|
| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|---|
| 2 | <modelVersion>4.0.0</modelVersion> |
|---|
| 3 | <groupId>Jiwigo</groupId> |
|---|
| 4 | <artifactId>Jiwigo</artifactId> |
|---|
| 5 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | <dependencies> |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | <dependency> |
|---|
| 13 | <groupId>org.jdom</groupId> |
|---|
| 14 | <artifactId>jdom</artifactId> |
|---|
| 15 | <version>1.1</version> |
|---|
| 16 | </dependency> |
|---|
| 17 | <dependency> |
|---|
| 18 | <groupId>commons-lang</groupId> |
|---|
| 19 | <artifactId>commons-lang</artifactId> |
|---|
| 20 | <version>2.5</version> |
|---|
| 21 | </dependency> |
|---|
| 22 | <dependency> |
|---|
| 23 | <groupId>commons-httpclient</groupId> |
|---|
| 24 | <artifactId>commons-httpclient</artifactId> |
|---|
| 25 | <version>3.1</version> |
|---|
| 26 | </dependency> |
|---|
| 27 | <dependency> |
|---|
| 28 | <groupId>commons-logging</groupId> |
|---|
| 29 | <artifactId>commons-logging</artifactId> |
|---|
| 30 | <version>1.1</version> |
|---|
| 31 | </dependency> |
|---|
| 32 | <dependency> |
|---|
| 33 | <groupId>log4j</groupId> |
|---|
| 34 | <artifactId>log4j</artifactId> |
|---|
| 35 | <version>1.2.16</version> |
|---|
| 36 | </dependency> |
|---|
| 37 | <dependency> |
|---|
| 38 | <groupId>org.apache.sanselan</groupId> |
|---|
| 39 | <artifactId>sanselan</artifactId> |
|---|
| 40 | <version>0.97-incubator</version> |
|---|
| 41 | </dependency> |
|---|
| 42 | </dependencies> |
|---|
| 43 | </project> |
|---|