Skip to content

Commit

Permalink
2009-06-24 Pierre-Luc Paour <gallery@paour.com> (1.5.1-b45)
Browse files Browse the repository at this point in the history
* Fixed tmp directory location on Mac with new security update.
  • Loading branch information
Pierre-Luc Paour committed Jun 24, 2009
1 parent 78e30ae commit ee15ba3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2009-06-24 Pierre-Luc Paour <gallery@paour.com> (1.5.1-b45)

* Fixed tmp directory location on Mac with new security update.

2009-04-24 Pierre-Luc Paour <gallery@paour.com> (1.5.1-b44)

* Signed with new cert, expiring in 2010.
Expand Down
5 changes: 5 additions & 0 deletions com/gallery/GalleryRemote/util/ImageUtils.java
Expand Up @@ -900,6 +900,11 @@ public static ArrayList importApertureSelection() {

// load results
File resultFile = new File(System.getProperty("java.io.tmpdir"), "ApertureToGallery.txt");

if (!resultFile.exists()) {
resultFile = new File("/tmp/ApertureToGallery.txt");
}

ArrayList resultList = new ArrayList();

if (!resultFile.exists()) {
Expand Down
4 changes: 2 additions & 2 deletions defaults.properties
Expand Up @@ -322,6 +322,6 @@ updateUrlBeta=http://gallery.sourceforge.net/gallery_remote_version_check_beta.p
#
# --- Do not edit below this line ---
#
version=1.5.1-b44
releaseDate=2009/04/24
version=1.5.1-b45
releaseDate=2009/06/24
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\nSaverBeans

0 comments on commit ee15ba3

Please sign in to comment.