File tree 9 files changed +257
-257
lines changed
examples/reference/keyCode/keyCode1
9 files changed +257
-257
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
name = R for Processing
2
- authorList = [Processing.R Authors](https://github.com/gaocegege /Processing.R/blob/master/AUTHORS.md)
3
- url = https://github.com/gaocegege /Processing.R
2
+ authorList = [Processing.R Authors](https://github.com/processing-r /Processing.R/blob/master/AUTHORS.md)
3
+ url = https://github.com/processing-r /Processing.R
4
4
sentence = Processing in R Language
5
5
paragraph =
6
- version = 106
7
- prettyVersion = v1.0.6
6
+ version = 107
7
+ prettyVersion = v1.0.7
8
8
maxVersion = 0
9
9
minVersion = 260
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ draw <- function() {
6
6
}
7
7
8
8
keyPressed <- function() {
9
- # See https://github.com/gaocegege /Processing.R/issues/209
9
+ # See https://github.com/processing-r /Processing.R/issues/209
10
10
if (key == CODED) {
11
11
if (keyCode == UP) {
12
12
fillVal = 255
Original file line number Diff line number Diff line change 1
- The following instructions cover compiling Processing.R from source rather than downloading the latest [ release] ( https://github.com/gaocegege /Processing.R/releases ) .
1
+ The following instructions cover compiling Processing.R from source rather than downloading the latest [ release] ( https://github.com/processing-r /Processing.R/releases ) .
2
2
Processing.R is available for the Processing Development Environment (PDE) or stand-alone, in these forms:
3
3
4
4
1 . a PDE mode, which can be
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ U. California Santa Barbara</p>
15
15
<a href="https://www.codacy.com/app/gaocegege/Processing-R?utm_source=github.com&utm_medium=referral&utm_content=gaocegege/Processing.R&utm_campaign=Badge_Grade"><img src="https://api.codacy.com/project/badge/Grade/33ebc49f6f764fffb7ea7bf617edf902" alt="Codacy Badge"></a>
16
16
<!--<a href="https://www.codacy.com/app/gaocegege/Processing-R?utm_source=github.com&utm_medium=referral&utm_content=gaocegege/Processing.R&utm_campaign=Badge_Coverage"><img src="https://api.codacy.com/project/badge/Coverage/33ebc49f6f764fffb7ea7bf617edf902" alt="Codacy Badge"></a>-->
17
17
<a href="https://stackshare.io/gaocegege/processing-r"><img src="https://img.shields.io/badge/tech-stack-0690fa.svg?style=flat" alt="StackShare"></a>
18
- <a href="https://github.com/gaocegege /Processing.R/releases"><img src="https://img.shields.io/github/release/gaocegege/Processing.R.svg" alt="GitHub Release"></a>
18
+ <a href="https://github.com/processing-r /Processing.R/releases"><img src="https://img.shields.io/github/release/gaocegege/Processing.R.svg" alt="GitHub Release"></a>
19
19
<a href="https://gitter.im/gaocegege/Processing.R?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge"><img src="https://badges.gitter.im/gaocegege/Processing.R.svg" alt="Gitter"></a>
20
- <a href="https://github.com/gaocegege /Processing.R/blob/master/raw-docs/devel/compilation.md#docker-image-deprecated"><img src="https://img.shields.io/badge/docker-deprecated-yellowgreen.svg" alt=""></a>
20
+ <a href="https://github.com/processing-r /Processing.R/blob/master/raw-docs/devel/compilation.md#docker-image-deprecated"><img src="https://img.shields.io/badge/docker-deprecated-yellowgreen.svg" alt=""></a>
21
21
</p >
22
22
23
23
## Overview
@@ -53,7 +53,7 @@ Processing.R supports:
53
53
54
54
Processing.R is still in early development -- it is not feature-complete or production-ready. Please try our experimental mode and give us your feedback.
55
55
56
- - Report bugs to [ Processing.R Issues] ( https://github.com/gaocegege /Processing.R/issues ) !
56
+ - Report bugs to [ Processing.R Issues] ( https://github.com/processing-r /Processing.R/issues ) !
57
57
- Chat at the [ Processing.R gitter channel] ( https://gitter.im/gaocegege/Processing.R )
58
58
59
59
## Installation
Original file line number Diff line number Diff line change 1
1
name = R for Processing
2
- authorList = [Processing.R Authors](https://github.com/gaocegege /Processing.R/blob/master/AUTHORS.md)
3
- url = https://github.com/gaocegege /Processing.R
2
+ authorList = [Processing.R Authors](https://github.com/processing-r /Processing.R/blob/master/AUTHORS.md)
3
+ url = https://github.com/processing-r /Processing.R
4
4
sentence = Processing in R Language
5
5
paragraph =
6
6
version = @@mode-version@@
Original file line number Diff line number Diff line change 1
1
name = R for Processing
2
- authors = [Processing.R Authors](https://github.com/gaocegege /Processing.R/blob/master/AUTHORS.md)
3
- url = https://github.com/gaocegege /Processing.R
2
+ authors = [Processing.R Authors](https://github.com/processing-r /Processing.R/blob/master/AUTHORS.md)
3
+ url = https://github.com/processing-r /Processing.R
4
4
sentence = Processing in R Language
5
5
paragraph =
6
6
version = @@mode-version@@
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public static void main(final String[] args) throws Exception {
64
64
sketch = new StandaloneSketch (args );
65
65
runSketchBlocking (sketch , new StreamPrinter (System .out ), new StreamPrinter (System .err ));
66
66
67
- // See https://github.com/gaocegege /Processing.R/issues/89
67
+ // See https://github.com/processing-r /Processing.R/issues/89
68
68
// It can't be reproduced, so comment the statement.
69
69
// System.exit(0);
70
70
} catch (final Throwable t ) {
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ public void actionPerformed(final ActionEvent e) {
142
142
143
143
@ Override
144
144
public void actionPerformed (final ActionEvent e ) {
145
- Platform .openURL ("http://github.com/gaocegege /Processing.R" );
145
+ Platform .openURL ("http://github.com/processing-r /Processing.R" );
146
146
}
147
147
}));
148
148
You can’t perform that action at this time.
0 commit comments