Skip to content

Commit

Permalink
adding source code to Processing download and removed web-export fold…
Browse files Browse the repository at this point in the history
…ers from examples
  • Loading branch information
fjenett committed Apr 14, 2013
1 parent 130489f commit 47176cb
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
25 changes: 23 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<project name="Guido" default="install" basedir="./">
<project name="Guido" default="release" basedir="./">

<description>

Expand Down Expand Up @@ -80,7 +80,28 @@

<mkdir dir="${dist}/examples" />
<copy todir="${dist}/examples">
<fileset dir="examples" />
<fileset dir="examples">
<exclude name="**/web-export" />
<exclude name="**/web-export/**" />
<exclude name="**/.DS_Store" />
</fileset>
</copy>

<mkdir dir="${dist}/source" />
<copy todir="${dist}/source/java">
<fileset dir="${src}">
<include name="**/*.java" />
<exclude name="**/.DS_Store" />
</fileset>
</copy>
<copy todir="${dist}/source/js">
<fileset dir="${src}-js">
<include name="**/*.js" />
<exclude name="**/.DS_Store" />
</fileset>
</copy>
<copy tofile="${dist}/source/readme.txt">
<fileset file="resources/source-note.txt" />
</copy>

<copy todir="${dist}">
Expand Down
4 changes: 2 additions & 2 deletions releases/Guido.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ url = https://github.com/fjenett/Guido
category = GUI
sentence = A simple cross mode GUI library
paragraph = Guido is a small GUI library that is compatible with both Java (standard) and JavaScript modes.
version = 133
prettyVersion = 0.0.3
version = 143
prettyVersion = 0.0.4
Binary file modified releases/Guido.zip
Binary file not shown.
4 changes: 4 additions & 0 deletions resources/source-note.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Please note that although this is the full source code you should rather download the whole package (incl build script) from Github at:

https://github.com/fjenett/Guido

0 comments on commit 47176cb

Please sign in to comment.