Skip to content

Commit

Permalink
Bump version and update Mac OS X build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
fflewddur committed May 16, 2016
1 parent ede2cf1 commit 2efd24c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="archivo" default="archivo">
<property name="title" value="Archivo"/>
<property name="version" value="1.0.3"/>
<property name="version" value="1.0.4"/>
<property name="copyright" value="2016 Straylight Labs LLC"/>

<property file="build.properties"/>
Expand Down Expand Up @@ -87,6 +87,10 @@
<pathelement location="${basedir}/lib/tivo-libre-0.7.4.jar"/>
</path>

<path id="library.mixpanel.classpath">
<pathelement location="${basedir}/lib/mixpanel-java-1.4.4.jar"/>
</path>

<!-- Modules -->

<!-- Module Archivo -->
Expand All @@ -110,6 +114,7 @@
<path refid="library.slf4j-api.classpath"/>
<path refid="library.logback.classpath"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
</path>

<path id="archivo.runtime.production.module.classpath">
Expand All @@ -120,6 +125,7 @@
<path refid="library.slf4j-api.classpath"/>
<path refid="library.logback.classpath"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
</path>

<path id="archivo.module.classpath">
Expand All @@ -133,6 +139,7 @@
<pathelement location="${idea.home}/lib/hamcrest-library-1.3.jar"/>
<pathelement location="${idea.home}/lib/junit-4.11.jar"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
</path>

<path id="archivo.runtime.module.classpath">
Expand All @@ -147,6 +154,7 @@
<pathelement location="${idea.home}/lib/hamcrest-library-1.3.jar"/>
<pathelement location="${idea.home}/lib/junit-4.11.jar"/>
<path refid="library.hola.classpath"/>
<path refid="library.mixpanel.classpath"/>
</path>


Expand Down
Binary file modified package/macosx/DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion src/net/straylightlabs/archivo/Archivo.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class Archivo extends Application {

public static final String APPLICATION_NAME = "Archivo";
public static final String APPLICATION_RDN = "net.straylightlabs.archivo";
public static final String APPLICATION_VERSION = "1.0.3";
public static final String APPLICATION_VERSION = "1.0.4";
public static final String USER_AGENT = String.format("%s/%s", APPLICATION_NAME, APPLICATION_VERSION);
private static final int WINDOW_MIN_HEIGHT = 400;
private static final int WINDOW_MIN_WIDTH = 555;
Expand Down

0 comments on commit 2efd24c

Please sign in to comment.