Skip to content

Commit

Permalink
Merge pull request #74 from kmdouglass/master
Browse files Browse the repository at this point in the history
Changes to build files for v0.7.0 release.
  • Loading branch information
kmdouglass committed Mar 19, 2018
2 parents cc10fa2 + 8122eca commit d8a37e7
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 19 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.

## Unreleased
## [v0.7.0]
Contains [ALICA v0.2.5]

### Added
- An RPC server was created that allows for remote control of the
Expand Down Expand Up @@ -259,3 +260,4 @@ Contains [ALICA v0.0.2]
[v0.5.1]: https://github.com/LEB-EPFL/SASS/releases/tag/v0.5.1
[v0.6.0]: https://github.com/LEB-EPFL/SASS/releases/tag/v0.6.0
[v0.6.1]: https://github.com/LEB-EPFL/SASS/releases/tag/v0.6.1
[v0.7.0]: https://github.com/LEB-EPFL/SASS/releases/tag/v0.7.0
2 changes: 1 addition & 1 deletion build-travis.xml
Expand Up @@ -3,7 +3,7 @@
<project name="SASS" default="default" basedir=".">
<description>Builds, tests, and runs the project SASS.</description>
<import file="nbproject/build-impl.xml"/>
<property name="store.jar.name" value="SASS_0.6.1.jar"/>
<property name="store.jar.name" value="SASS_0.7.0.jar"/>
<property name="store.dir" value="store"/>
<property name="store.jar" value="${store.dir}/${store.jar.name}"/>
<target name="-post-jar">
Expand Down
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -3,8 +3,8 @@
<project name="SASS" default="default" basedir=".">
<description>Builds, tests, and runs the project SASS.</description>
<import file="nbproject/build-impl.xml"/>
<property name="pluginsDir" location="/home/kmdouglass/apps/Fiji.app/plugins" />
<property name="store.jar.name" value="SASS_0.6.1.jar"/>
<property name="pluginsDir" location="/home/douglass/apps/Fiji.app/plugins" />
<property name="store.jar.name" value="SASS_0.7.0.jar"/>
<property name="store.dir" value="store"/>
<property name="store.jar" value="${store.dir}/${store.jar.name}"/>
<target name="-post-jar">
Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Expand Up @@ -53,17 +53,17 @@

# General information about the project.
project = 'SASS'
copyright = '2017, The Laboratory of Experimental Biophysics, EPFL, Lausanne, Switzerland'
copyright = '2017-2018, The Laboratory of Experimental Biophysics, EPFL, Lausanne, Switzerland'
author = 'Marcel Stefko, Kyle M. Douglass'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.6.1'
version = '0.7.0'
# The full version, including alpha/beta/rc tags.
release = '0.6.1'
release = '0.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
21 changes: 11 additions & 10 deletions nbproject/build-impl.xml
Expand Up @@ -46,8 +46,8 @@ is divided into following sections:
<property file="${user.properties.file}"/>
<!-- The two properties below are usually overridden -->
<!-- by the active platform. Just a fallback. -->
<property name="default.javac.source" value="1.4"/>
<property name="default.javac.target" value="1.4"/>
<property name="default.javac.source" value="1.6"/>
<property name="default.javac.target" value="1.6"/>
</target>
<target depends="-pre-init,-init-private,-init-user" name="-init-project">
<property file="nbproject/configs/${config}.properties"/>
Expand Down Expand Up @@ -76,7 +76,7 @@ is divided into following sections:
<and>
<isset property="javac.profile"/>
<length length="0" string="${javac.profile}" when="greater"/>
<matches pattern="1\.[89](\..*)?" string="${javac.source}"/>
<matches pattern="((1\.[89])|9)(\..*)?" string="${javac.source}"/>
</and>
</condition>
<condition property="do.archive">
Expand Down Expand Up @@ -156,6 +156,7 @@ is divided into following sections:
<property name="application.args" value=""/>
<property name="source.encoding" value="${file.encoding}"/>
<property name="runtime.encoding" value="${source.encoding}"/>
<property name="manifest.encoding" value="${source.encoding}"/>
<condition property="javadoc.encoding.used" value="${javadoc.encoding}">
<and>
<isset property="javadoc.encoding"/>
Expand Down Expand Up @@ -840,7 +841,7 @@ is divided into following sections:
</chainedmapper>
</pathconvert>
<taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
<copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
<copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" manifestencoding="UTF-8" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
<fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
<manifest>
<attribute name="Class-Path" value="${jar.classpath}"/>
Expand All @@ -852,7 +853,7 @@ is divided into following sections:
</target>
<target name="-init-presetdef-jar">
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
<jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
<jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8">
<j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
</jar>
</presetdef>
Expand Down Expand Up @@ -975,23 +976,23 @@ is divided into following sections:
</target>
<target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
<tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
<copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>
<copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/>
</target>
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
<manifest file="${tmp.manifest.file}" mode="update">
<manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
<attribute name="Main-Class" value="${main.class}"/>
</manifest>
</target>
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
<manifest file="${tmp.manifest.file}" mode="update">
<manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
<attribute name="Profile" value="${javac.profile}"/>
</manifest>
</target>
<target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
<basename file="${application.splash}" property="splashscreen.basename"/>
<mkdir dir="${build.classes.dir}/META-INF"/>
<copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
<manifest file="${tmp.manifest.file}" mode="update">
<manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
<attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
</manifest>
</target>
Expand Down Expand Up @@ -1186,7 +1187,7 @@ is divided into following sections:
<target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
<startprofiler/>
<antcal target="run-test-with-main"/>
<antcall target="run-test-with-main"/>
</target>
<target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
Expand Down
4 changes: 2 additions & 2 deletions nbproject/genfiles.properties
Expand Up @@ -4,6 +4,6 @@ build.xml.stylesheet.CRC32=8064a381@1.75.2.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=dd76ab7f
nbproject/build-impl.xml.script.CRC32=ca3d274f
nbproject/build-impl.xml.stylesheet.CRC32=05530350@1.79.1.48
nbproject/build-impl.xml.script.CRC32=d5d9f6fc
nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48

0 comments on commit d8a37e7

Please sign in to comment.