Skip to content

Commit

Permalink
Merge branch 'release/0.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
berinhard committed Jun 2, 2019
2 parents f3bc6fe + 8888f91 commit f6227ef
Show file tree
Hide file tree
Showing 116 changed files with 33,299 additions and 7,041 deletions.
18 changes: 12 additions & 6 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Development
-----------

0.1.0
-----
- Simplification of pytop5js usage
- Support p5.dom.js library
- Fixes on monitor observer

0.0.7
-----
- Fix bug with monitor not running transcrypt more than once
Expand All @@ -13,17 +19,17 @@ Development

0.0.5
-----
- Adds all p5's missing global variables
- Add all p5's missing global variables

0.0.4.1
-------
- Supports event functions such as `keyPressed`
- Support event functions such as `keyPressed`

0.0.4
-----
- Supports p5.js pop function
- Adds `monitor` command to the CLI
- Allows to run `pyp5js` commands specifying a directory
- Support p5.js pop function
- Add `monitor` command to the CLI
- Allow to run `pyp5js` commands specifying a directory
- First try on organizing the docs

0.0.3
Expand All @@ -32,7 +38,7 @@ Development

0.0.2
-----
- Supports more of P5's variable
- Support more of P5's variable


0.0.1
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ def draw():
background(200)
r = sin(frameCount / 60) * 50 + 50
ellipse(100, 100, r, r)


start_p5(setup, draw, {})
```

### [Documentation](https://berinhard.github.io/pyp5js)
Expand Down
6 changes: 4 additions & 2 deletions docs/examples/index.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
### Examples list

- [sketch_001](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_001): [**Angles and mouse coordinates**](sketch_001/index.html)
- [sketch_001](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_001): [**Angles and mouse coordinates**](sketch_001/index.html)

- [sketch_002](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_002): [**Move Eye**](sketch_002/index.html), an example by Simon Greenwold, ported by [@villares](https://github.com/villares)

- [sketch_004](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_004): [**Rotating 3D box**](sketch_003/index.html)

- [sketch_004](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_004): [**Boids**](sketch_004/index.html)
, from [@esperanc](https://github.com/esperanc) [BrythonIDE examples](https://github.com/esperanc/brythonide/blob/master/demoSketches/boids.py)
, from [@esperanc](https://github.com/esperanc) [BrythonIDE examples](https://github.com/esperanc/brythonide/blob/master/demoSketches/boids.py)

- [sketch_005](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_005): [**Globals variables (HSB and CENTER)**](sketch_005/index.html)

- [sketch_006](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_006): [**Registering event functions such as keyPressed**](sketch_006/index.html)

- [sketch_007](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_007): [**p5.Vector static methods**](sketch_007/index.html)

- [sketch_008](https://github.com/berinhard/pyp5js/tree/develop/docs/examples/sketch_008): [**p5.dom.js usage**](sketch_008/index.html)
5 changes: 1 addition & 4 deletions docs/examples/sketch_001/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<style> body, html, canvas {padding: 0; margin: 0; overflow: hidden;} </style>

<script src="static/p5.js"></script>
<script src="target/sketch_001.js" type="module"></script>
<script src="target/target_sketch.js" type="module"></script>

<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/default.min.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script>
Expand Down Expand Up @@ -76,9 +76,6 @@
t = t + 0.01

console.log(frameRate())


my_p5 = start_p5(setup, draw, {})
</code>
</pre>
</div>
Expand Down
3 changes: 0 additions & 3 deletions docs/examples/sketch_001/sketch_001.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,3 @@ def draw():
t = t + 0.01

console.log(frameRate())


my_p5 = start_p5(setup, draw, {})

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f6227ef

Please sign in to comment.