Skip to content

Commit 93a7fb9

Browse files
committed
Mention geany in README
1 parent 1ef4325 commit 93a7fb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# picrate-examples
2-
Examples for picrate see also propane-examples (as they are easily translated). Can be autorun with `rake`. The contributed folder exists for you to add your own (and submit as a PR). Note since PiCrate-0.7.0 `AppRender(self)` has been replaced by `GfxRender(self.g)` because we do full access to `PApplet`, and `PGraphics` interface is sufficient.
2+
Examples for picrate see also propane-examples (as they are easily translated). Can be autorun with `rake`. The contributed folder exists for you to add your own (and submit as a PR). Ordinarily we expect users to install these examples with `picrate -i samples` or for first time users `picrate --install` which also installs `geany` configuration. If you use `geany` as your editor, will be able to run files from the editor, to run individual sketches from command line `cd` to folder of sketch and `jruby --dev your_sketch.rb`. Passing the `--dev` flag speeds `jruby` start-up.

basics/typography/font_list.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def settings
1313
def setup
1414
# Uncomment the following two lines to see the available fonts
1515
Java::ProcessingCore::PFont.list.each { |fot| puts fot }
16-
my_font = create_font('Noto Sans', 32)
16+
my_font = create_font('DejaVu Sans', 32)
1717
text_font(my_font)
1818
text_align(CENTER, CENTER)
1919
text('!@#$%', width / 2, height / 2)

0 commit comments

Comments
 (0)