Skip to content

Commit

Permalink
Updated beta download URL to Joe7's site.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Luc Paour committed Oct 20, 2006
1 parent 41bfcbd commit eca938e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions com/gallery/GalleryRemote/util/PostChangeLog.java
Expand Up @@ -14,6 +14,8 @@
* Date: Oct 8, 2003
*/
public class PostChangeLog extends org.apache.tools.ant.Task {
public static final String baseUrl = "http://www.gallery2.hu/download/GalleryRemote/";

public void execute() throws BuildException {
PropertiesFile changeProps = new PropertiesFile("postchangelog");
PropertiesFile defaultProps = new PropertiesFile("defaults");
Expand Down Expand Up @@ -96,9 +98,9 @@ public void execute() throws BuildException {
StringBuffer note = new StringBuffer();
note.append("version=").append(currentBuildS).append('\n');
note.append("releaseDate=").append(defaultProps.getProperty("releaseDate")).append('\n');
note.append("releaseUrl=").append("http://jpmullan.com/galleryupdates/remote/gallery_remote_")
note.append("releaseUrl=").append(baseUrl).append("gallery_remote_")
.append(defaultProps.getProperty("version")).append(".zip").append('\n');
note.append("releaseUrlMac=").append("http://jpmullan.com/galleryupdates/remote/GalleryRemote.")
note.append("releaseUrlMac=").append(baseUrl).append("GalleryRemote.")
.append(defaultProps.getProperty("version")).append(".MacOSX.NoVM.tgz").append('\n');
note.append("releaseNotes=").append(changes.toString());

Expand Down

0 comments on commit eca938e

Please sign in to comment.