Skip to content

Commit

Permalink
2006-02-28 Pierre-Luc Paour <gallery@paour.com> (1.5.1-b15)
Browse files Browse the repository at this point in the history
	* Better handling of variable applet size.
  • Loading branch information
Pierre-Luc Paour committed Feb 28, 2006
1 parent 7b79e48 commit a2bcf62
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2006-02-28 Pierre-Luc Paour <gallery@paour.com> (1.5.1-b15)

* Better handling of variable applet size.

2006-02-27 Pierre-Luc Paour <gallery@paour.com> (1.5.1-b14)

* GR will no longer perform HTML entities escaping when uploading
Expand Down
13 changes: 11 additions & 2 deletions com/gallery/GalleryRemote/GRAppletSlideshow.java
Expand Up @@ -59,13 +59,22 @@ protected void jbInit() {

jSlidePanel = new SlideshowPanel();

JPanel filler1 = new JPanel();
filler1.setMinimumSize(new Dimension(0, 0));
JPanel filler2 = new JPanel();
filler2.setMinimumSize(new Dimension(0, 0));

getContentPane().add(jSlidePanel, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0
, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
getContentPane().add(new JLabel(GRI18n.getString(MODULE, "Disabled")), new GridBagConstraints(0, 1, 1, 1, 1.0, 0.0
, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 5), 0, 0));
getContentPane().add(jStart, new GridBagConstraints(0, 2, 1, 1, 1.0, 0.0
getContentPane().add(filler2, new GridBagConstraints(0, 2, 1, 1, 0.1, 1.0
, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(10, 10, 10, 10), 0, 0));
getContentPane().add(jStart, new GridBagConstraints(0, 3, 1, 1, 1.0, 0.0
, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(10, 10, 10, 10), 0, 0));
getContentPane().add(jStatusBar, new GridBagConstraints(0, 3, 1, 1, 1.0, 0.0
getContentPane().add(filler1, new GridBagConstraints(0, 4, 1, 1, 0.1, 1.0
, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(10, 10, 10, 10), 0, 0));
getContentPane().add(jStatusBar, new GridBagConstraints(0, 5 , 1, 1, 1.0, 0.0
, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));

jSlidePanel.buildUI();
Expand Down
2 changes: 1 addition & 1 deletion com/gallery/GalleryRemote/prefs/SlideshowPanel.java
Expand Up @@ -191,7 +191,7 @@ private void jbInit() {
this.add(apperancePanel, new GridBagConstraints(0, 2, 1, 1, 1.0, 0.0
,GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
this.add(help, new GridBagConstraints(0, 3, 2, 1, 0.0, 0.0
,GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 0), 0, 0));
,GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 5, 5, 0), 0, 0));
this.add(spacerPanel, new GridBagConstraints(0, GridBagConstraints.REMAINDER, 1, 1, 1.0, 1.0
,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));

Expand Down
Expand Up @@ -29,9 +29,11 @@ AlbmInspec.resBfrUpldTip=Demande \u00E0 Gallery Remote de redimensionner les ima
Album.ro=(Lecture seule)
Album.title=Pas encore connect\u00E9 \u00E0 Gallery
AppletMini.Add=Ajouter des images...
AppletMini.Caption=Description:
AppletMini.DefMessage=Ajouter des images \u00E0 la liste...
AppletMini.Upload=Envoyer
AppletMini.pictures=Liste des images \u00E0 envoyer (glisser/d\u00E9placer les images ou cliquez sur 'Ajouter des images...')
AppletMini.ResizeBeforeUpload=Redimensionner les photos avant de les envoyer
AppletSlideshow.Disabled=<html>Si certaines options ci-dessus sont gris\u00E9es, l'administrateur de cette galerie a forc\u00E9 les r\u00E9glages correspondants.</html>
AppletSlideshow.Start=D\u00E9marrer le diaporama
AppletSlideshow.emptyAlbum=Il n'y a aucune image \u00E0 montrer dans cet album. Utilisez le menu de navigation ci-dessus pour revenir \u00E0 la vue par album.
Expand Down Expand Up @@ -271,7 +273,7 @@ QuickCPa.setup=Installation
SlidePa.caption=Description
SlidePa.captionHelp=Emplacement de la description
SlidePa.delay=D\u00E9lai (sec)
SlidePa.delayDesc=<html>Entrez 0 pour d\u00E9sactiver le diaporama automatique.<br>Utilisez la barre d'espace pour commuter entre le mode automatique et le mode manuel.<br>Utilisez les fl\u00E8ches de direction et la molette de la souris pour contr\u00F4ler le diaporama. Appuyez sur Echap pour sortir.</html>
SlidePa.delayDesc=Appuyez sur la touche 'h' pendant le diaporama pour obtenir l'aide.
SlidePa.delayHelp=D\u00E9lai en seconde entre chaque image (si le t\u00E9l\u00E9chargement prend plus de temps, l'attente sera plus longue)
SlidePa.extra=Champs personnalis\u00E9s
SlidePa.extraHelp=Emplacement des champs personnalis\u00E9s
Expand Down
4 changes: 2 additions & 2 deletions defaults.properties
Expand Up @@ -308,6 +308,6 @@ updateUrlBeta=http://gallery.sourceforge.net/gallery_remote_version_check_beta.p
#
# --- Do not edit below this line ---
#
version=1.5.1-b14
releaseDate=2006/02/27
version=1.5.1-b15
releaseDate=2006/02/28
aboutText=Gallery Remote\n \n \nA part of the Gallery Open-Source Project\nhttp://gallery.sourceforge.net\n \n \nMaintained by:\n \nPierre-Luc Paour\n \n \nInitial version by Chris Smith\n \n \nContributors:\n \nTim Miller\nDolan Halbrook\nMarkus Cozowicz\nScott Gartner\nAmedeo Paglione\nChris Schwerdt\nSeth Ladd\n \n \nArtwork by Ross A. Reyman\n \n \nBundled software:\n \nImageMagick\nJava look and feel Graphics Repository icons\njpegtran, Guido Vollbeding's version\nMetadataExtractor

0 comments on commit a2bcf62

Please sign in to comment.