Skip to content

Commit

Permalink
2004-08-06 Pierre-Luc Paour <gallery@paour.com> (1.4.1-b4)
Browse files Browse the repository at this point in the history
	* AppletMini doesn't try to refresh album page when it's in G2 mode.
  • Loading branch information
Pierre-Luc Paour committed Aug 6, 2004
1 parent a39732a commit cb7f7d6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2004-08-06 Pierre-Luc Paour <gallery@paour.com> (1.4.1-b4)

* AppletMini doesn't try to refresh album page when it's in G2 mode.

2004-08-04 Pierre-Luc Paour <gallery@paour.com> (1.4.1-b3)

* Added support for resizing and moving the crop area.
Expand Down
5 changes: 4 additions & 1 deletion com/gallery/GalleryRemote/GRAppletMini.java
Expand Up @@ -144,7 +144,10 @@ public void setInProgress(boolean inProgress) {
if (! inProgress && hasHadPictures) {
// probably finished uploading...
try {
getAppletContext().showDocument(new URL(getCodeBase().toString() + "add_photos_refresh.php"), "hack");
// no update for G2
if (! (gallery.getComm(null) instanceof GalleryComm2_5)) {
getAppletContext().showDocument(new URL(getCodeBase().toString() + "add_photos_refresh.php"), "hack");
}
} catch (MalformedURLException e1) {
Log.logException(Log.LEVEL_ERROR, MODULE, e1);
}
Expand Down
4 changes: 2 additions & 2 deletions defaults.properties
Expand Up @@ -234,6 +234,6 @@ updateUrlBeta=http://gallery.sourceforge.net/gallery_remote_version_check_beta.p
#
# --- Do not edit below this line ---
#
version=1.4.1-b3
releaseDate=2004/08/04
version=1.4.1-b4
releaseDate=2004/08/06
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\n \n \nArtwork by Ross A. Reyman\n \n \nBundled software:\n \nImageMagick\nJSX\nJava look and feel Graphics Repository icons\njpegtran, Guido Vollbeding's version\nMetadataExtractor

0 comments on commit cb7f7d6

Please sign in to comment.