Skip to content

Commit 6e90bd0

Browse files
update repo in docs / logs / links --> processing-r/Processing.r
1 parent 31d4bb1 commit 6e90bd0

File tree

9 files changed

+257
-257
lines changed

9 files changed

+257
-257
lines changed

CHANGELOG.md

+242-242
Large diffs are not rendered by default.

docs/RLangMode.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
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
44
sentence = Processing in R Language
55
paragraph =
6-
version = 106
7-
prettyVersion = v1.0.6
6+
version = 107
7+
prettyVersion = v1.0.7
88
maxVersion = 0
99
minVersion = 260

examples/reference/keyCode/keyCode1/keyCode1.rpde

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ draw <- function() {
66
}
77

88
keyPressed <- function() {
9-
# See https://github.com/gaocegege/Processing.R/issues/209
9+
# See https://github.com/processing-r/Processing.R/issues/209
1010
if (key == CODED) {
1111
if (keyCode == UP) {
1212
fillVal = 255

raw-docs/devel/compilation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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).
22
Processing.R is available for the Processing Development Environment (PDE) or stand-alone, in these forms:
33

44
1. a PDE mode, which can be

readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ U. California Santa Barbara</p>
1515
<a href="https://www.codacy.com/app/gaocegege/Processing-R?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=gaocegege/Processing.R&amp;utm_campaign=Badge_Grade"><img src="https://api.codacy.com/project/badge/Grade/33ebc49f6f764fffb7ea7bf617edf902" alt="Codacy Badge"></a>
1616
<!--<a href="https://www.codacy.com/app/gaocegege/Processing-R?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=gaocegege/Processing.R&amp;utm_campaign=Badge_Coverage"><img src="https://api.codacy.com/project/badge/Coverage/33ebc49f6f764fffb7ea7bf617edf902" alt="Codacy Badge"></a>-->
1717
<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>
1919
<a href="https://gitter.im/gaocegege/Processing.R?utm_source=badge&amp;utm_medium=badge&amp;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>
2121
</p>
2222

2323
## Overview
@@ -53,7 +53,7 @@ Processing.R supports:
5353

5454
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.
5555

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)!
5757
- Chat at the [Processing.R gitter channel](https://gitter.im/gaocegege/Processing.R)
5858

5959
## Installation

resources/RLangMode.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
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
44
sentence = Processing in R Language
55
paragraph =
66
version = @@mode-version@@

resources/mode.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
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
44
sentence = Processing in R Language
55
paragraph =
66
version = @@mode-version@@

src/rprocessing/Runner.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public static void main(final String[] args) throws Exception {
6464
sketch = new StandaloneSketch(args);
6565
runSketchBlocking(sketch, new StreamPrinter(System.out), new StreamPrinter(System.err));
6666

67-
// See https://github.com/gaocegege/Processing.R/issues/89
67+
// See https://github.com/processing-r/Processing.R/issues/89
6868
// It can't be reproduced, so comment the statement.
6969
// System.exit(0);
7070
} catch (final Throwable t) {

src/rprocessing/mode/RLangEditor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public void actionPerformed(final ActionEvent e) {
142142

143143
@Override
144144
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");
146146
}
147147
}));
148148

0 commit comments

Comments
 (0)