Skip to content

Commit

Permalink
Added the skeletons to the release. Now version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianfrancoalongi committed May 20, 2013
1 parent b396627 commit 3689bc6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions change.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
V1.2.1 Golden Cherry Deluxe Platinum Lensflare
Release (tar/zip) now includes skeletons for C#/C++/Erlang/Java/Perl/Python/Ruby
V1.2 Golden Cherry Deluxe Platinum
Probability of getting 'add' operations is greater when the system is smaller
And probability of getting 'remove' operations increase as the systems grows
Expand Down
5 changes: 3 additions & 2 deletions make_release
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ FILES=( src/index.html \
src/output.js \
src/action_distribution.js \
change.log )
SKELETONS=skeletons/

main()
{
Expand All @@ -17,12 +18,12 @@ main()

make_tar_release()
{
tar cvf release/latest.tar ${FILES[@]}
tar cvf release/latest.tar ${FILES[@]} ${SKELETONS}
}

make_zip_release()
{
zip release/latest.zip ${FILES[@]}
zip release/latest.zip ${FILES[@]} -r ${SKELETONS}
}

main
Binary file modified release/latest.tar
Binary file not shown.
Binary file modified release/latest.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<body>
<div id="wrap">
<div id="top" align="center">
v1.2
v1.2.1
<input type="button" id="the_button" onclick="graph.next_step_and_draw()"
value="Next step"
style="height:40px">
Expand Down

0 comments on commit 3689bc6

Please sign in to comment.