Ignore:
Timestamp:
Sep 1, 2010, 6:48:53 PM (14 years ago)
Author:
mlg
Message:

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 !
File:
1 moved

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/ui/mainframe/ThumbnailCategoryPanel.java

    r6821 r6831  
    4343 * Classe qui affiche toutes les miniatures d'une catégorie
    4444 */
    45 public class MiniaturesCategoryPanel extends JPanel {
     45public class ThumbnailCategoryPanel extends JPanel {
    4646    /**
    4747     * Logger
    4848     */
    4949    public static final org.apache.commons.logging.Log LOG = org.apache.commons.logging.LogFactory
    50             .getLog(MiniaturesCategoryPanel.class);
     50            .getLog(ThumbnailCategoryPanel.class);
    5151    /**
    5252     * L'id de la catégorie pour laquelle les miniatures doivent être affichées
     
    5858     * @param categoryId l'id de la catégorie
    5959     */
    60     public MiniaturesCategoryPanel(Integer categoryId) {
     60    public ThumbnailCategoryPanel(Integer categoryId) {
    6161        this.categoryId = categoryId;
    6262        this.setLayout(new FlowLayout());
     
    9898                try {
    9999                    //              MiniatureLabel label = new MiniatureLabel(image, this);
    100                     MiniaturePanel panel = new MiniaturePanel(image);
     100                    ThumbnailPanel panel = new ThumbnailPanel(image);
    101101                    this.add(panel);
    102102                } catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.