Skip to content

Commit c599364

Browse files
author
smellai
committed
fixed name
1 parent ee5b532 commit c599364

12 files changed

+25
-25
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
This code is released under the GNU General Public License, which covers the main body
2-
of the create-plugin-communication code. The terms of this license can be found at:
2+
of the arduino-create-agent-js-client code. The terms of this license can be found at:
33
https://www.gnu.org/licenses/gpl-3.0.en.html
44

55
You can be released from the requirements of the above licenses by purchasing

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
22

3-
# create-plugin-communication
3+
# arduino-create-agent-js-client
44
JS module providing discovery of the Arduino Create Plugin and communication with it
55

66
## Installation
77

88
```bash
9-
npm install create-plugin-communication --save
9+
npm install arduino-create-agent-js-client --save
1010
```
1111

1212
## How to use
1313

1414
```js
15-
import Daemon from 'create-plugin-communication';
15+
import Daemon from 'arduino-create-agent-js-client';
1616

1717
const daemon = new Daemon();
1818

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "create-plugin-communication",
2+
"name": "arduino-create-agent-js-client",
33
"version": "1.0.0",
44
"description": "JS module providing discovery of the Arduino Create Plugin and communication with it",
55
"main": "./src/index.js",
@@ -67,7 +67,7 @@
6767
},
6868
"repository": {
6969
"type": "git",
70-
"url": "git+https://github.com/bcmi-labs/create-plugin-communication.git"
70+
"url": "git+https://github.com/arduino/arduino-create-agent-js-client.git"
7171
},
7272
"keywords": [
7373
"arduino",
@@ -83,7 +83,7 @@
8383
],
8484
"license": "GPLv2",
8585
"bugs": {
86-
"url": "https://github.com/bcmi-labs/create-plugin-communication/issues"
86+
"url": "https://github.com/arduino/arduino-create-agent-js-client/issues"
8787
},
88-
"homepage": "https://github.com/bcmi-labs/create-plugin-communication#readme"
88+
"homepage": "https://github.com/arduino/arduino-create-agent-js-client#readme"
8989
}

src/boardConfiguration.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

src/chrome-app-daemon.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

src/daemon.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

src/socket-daemon.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

test/app.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

test/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!--
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3-
* This file is part of create-plugin-communication.
3+
* This file is part of arduino-create-agent-js-client.
44
* Copyright (c) 2018
55
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
66
*
77
* This software is released under:
88
* The GNU General Public License, which covers the main part of
9-
* create-plugin-communication
9+
* arduino-create-agent-js-client
1010
* The terms of this license can be found at:
1111
* https://www.gnu.org/licenses/gpl-3.0.en.html
1212
*

0 commit comments

Comments
 (0)