Skip to content

Commit 279231d

Browse files
committed
build system update
1 parent ca81e4f commit 279231d

15 files changed

+130
-209
lines changed

CHANGES

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Arbor.js Changes
22
----------------
33

4+
Version 0.92 | 19 jun 2011
5+
--------------------------
6+
7+
* Creating nodes with an initial x/y or fixed position now works as advertised
8+
9+
* Calling ParticleSystem's .screen() method without arguments will now
10+
return an object with fields describing the current screen state
11+
12+
* Fix for problems on chrome when running from file:// urls
13+
14+
* Added a shell script to run a local http server so the demos will work without
15+
needing to be hosted somewhere
416

517
Version 0.91 | 17 jan 2011
618
--------------------------

README

+12
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ The docs folder contains a sample project that demonstrates some of the
4141
basic idioms for working with the library to build a visualization. More
4242
detailed documentation can be found at http://arborjs.org/reference.
4343

44+
In addition, the demos folder contains standalone versions of the demos
45+
at arborjs.org. But since all of them use xhr to fetch their data, you'll
46+
still need to view them from an http server. If you don't have a copy of
47+
apache handy, use the demo-server.sh script to create a local server.
48+
4449
Colophon
4550
--------
4651

@@ -57,6 +62,13 @@ code.
5762
[2] <https://github.com/dhotson/springy>
5863
[3] <http://arborjs.org/docs/barnes-hut>
5964

65+
Contribute
66+
----------
67+
68+
Code submissions are greatly appreciated and highly encouraged. Please send
69+
pull requests with fixes/enhancements/etc. to samizdatco on github. The
70+
oldschool may also pipe their diff -u output to [email protected].
71+
6072
License
6173
-------
6274

build/make.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121
import shutil
2222

2323

24-
25-
26-
24+
# apparently there is no stable download link for <most-recent-version> of
25+
# yui, so this could url well be stale. if so you can try looking for a
26+
# new link at: http://yuilibrary.com/downloads/#yuicompressor
27+
YUI_LIB_URL = "http://yui.zenfs.com/releases/yuicompressor/yuicompressor-2.4.6.zip"
2728

2829
# your system configuration may vary...
2930
YUI_PATH = "/usr/local/bin/yui"
@@ -176,7 +177,7 @@ def get_yui():
176177
from cStringIO import StringIO
177178

178179
print "fetching yui compressor"
179-
data = urlopen('http://yuilibrary.com/downloads/yuicompressor/yuicompressor-2.4.2.zip')
180+
data = urlopen(YUI_LIB_URL)
180181
yuizip = ZipFile(StringIO(data.read()))
181182
jarpath = [f for f in yuizip.namelist() if 'build/yuicompressor' in f][0]
182183

build/tmpl/changes.txt

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Arbor.js Changes
22
----------------
33

4+
Version 0.92 | 19 jun 2011
5+
--------------------------
6+
7+
* Creating nodes with an initial x/y or fixed position now works as advertised
8+
9+
* Calling ParticleSystem's .screen() method without arguments will now
10+
return an object with fields describing the current screen state
11+
12+
* Fix for problems on chrome when running from file:// urls
13+
14+
* Added a shell script to run a local http server so the demos will work without
15+
needing to be hosted somewhere
416

517
Version 0.91 | 17 jan 2011
618
--------------------------

build/tmpl/readme.txt

+12
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ The docs folder contains a sample project that demonstrates some of the
4141
basic idioms for working with the library to build a visualization. More
4242
detailed documentation can be found at http://arborjs.org/reference.
4343

44+
In addition, the demos folder contains standalone versions of the demos
45+
at arborjs.org. But since all of them use xhr to fetch their data, you'll
46+
still need to view them from an http server. If you don't have a copy of
47+
apache handy, use the demo-server.sh script to create a local server.
48+
4449
Colophon
4550
--------
4651

@@ -57,6 +62,13 @@ code.
5762
[2] <https://github.com/dhotson/springy>
5863
[3] <http://arborjs.org/docs/barnes-hut>
5964

65+
Contribute
66+
----------
67+
68+
Code submissions are greatly appreciated and highly encouraged. Please send
69+
pull requests with fixes/enhancements/etc. to samizdatco on github. The
70+
oldschool may also pipe their diff -u output to [email protected].
71+
6072
License
6173
-------
6274

demos/_/jquery-1.6.1.min.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/_/jquery.1.4.4.min.js

-167
This file was deleted.

demos/_/jquery.address-1.3.1.min.js

-32
This file was deleted.

0 commit comments

Comments
 (0)