Skip to content

Commit e532b04

Browse files
committed
Merge pull request #162 from parallaxinc/name-update
Name update
2 parents d8cad33 + 84c3f85 commit e532b04

18 files changed

+24
-24
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ before_deploy: npm run release
1515
deploy:
1616
provider: releases
1717
api_key: $GH_TOKEN
18-
file: "dist/chromeide.zip"
18+
file: "dist/parallax-ide.zip"
1919
skip_cleanup: true
2020
on:
2121
tags: true

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# ChromeIDE
1+
# Parallax IDE
22
Parallax microcontroller development environment based on Chrome applications.
33

44
## Quickstart
55

6-
1. Visit our [github releases](https://github.com/parallaxinc/ChromeIDE/releases) and download the desired release or download the latest release [here](https://github.com/parallaxinc/ChromeIDE/releases/latest).
6+
1. Visit our [github releases](https://github.com/parallaxinc/Parallax-IDE/releases) and download the desired release or download the latest release [here](https://github.com/parallaxinc/Parallax-IDE/releases/latest).
77

88
1. Go to your downloads folder and unzip the archive.
99

1010
_*Note:* for use on Chromebook you will need to unzip the archive and copy the unzipped directory onto the Chromebook._
1111

12-
1. Open Chrome and follow the [Installing in Chrome](https://github.com/parallaxinc/ChromeIDE#user-content-installing-in-chrome) instructions.
12+
1. Open Chrome and follow the [Installing in Chrome](https://github.com/parallaxinc/Parallax-IDE#user-content-installing-in-chrome) instructions.
1313

1414
## Building from Source/Developing
1515

@@ -25,13 +25,13 @@ Most of below is a one-time procedure needed to build the application, unless ot
2525

2626
1. Clone this respository. Assuming you have `git` installed (if not, [go here](http://git-scm.com/book/en/v2/Getting-Started-Installing-Git)), choose your file destination from the command-line (CLI like Terminal), and
2727

28-
` git clone git@github.com:parallaxinc/ChromeIDE `
28+
` git clone git@github.com:parallaxinc/Parallax-IDE `
2929

30-
![clone repo](readme-images/clone-chromeIDE.png)
30+
![clone repo](readme-images/clone-ParallaxIDE.png)
3131

3232
1. Go to the project root directory with
3333

34-
` cd ChromeIDE/ `
34+
` cd Parallax-IDE/ `
3535

3636
1. Get all the project dependencies. At the root of the project you will find `package.json`. This manifest file includes a list of project dependencies needed to build the application. To learn more, [see this post on dependency installation](https://github.com/iceddev/getting-started/blob/master/environments/nodejs-and-npm.md#user-content-dependency-installation). __This step must be run each time you update the repository (including pulling updates from GitHub).__
3737

@@ -58,31 +58,31 @@ Most of below is a one-time procedure needed to build the application, unless ot
5858

5959
1. Before you install your extension must be built and bundled. If you haven't done so follow the instructions in the [Build from Source](#user-content-build-from-source) section first.
6060

61-
1. Click on __'Load unpacked extensions...'__, go to the directory where ChromeIDE was built, highlight the *'ChromeIDE'* folder and and click select.
61+
1. Click on __'Load unpacked extensions...'__, go to the directory where Parallax IDE was built, highlight the *'Parallax-IDE'* folder and and click select.
6262

6363
![load extension](readme-images/load-unpacked-extensions.png)
6464
![select folder](readme-images/select-extension-folder.png)
6565

66-
1. Return to the ` chrome://extensions ` page and you should see __'Parallax Chrome IDE'__ listed in available extensions.
66+
1. Return to the ` chrome://extensions ` page and you should see __'Parallax IDE'__ listed in available extensions.
6767

68-
![chromeIDE listed](readme-images/chromeIDE-listed.png)
68+
![Parallax IDE listed](readme-images/ParallaxIDE-listed.png)
6969
1. Ensure the checkbox is *'enabled'* and click __'launch'__.
70-
1. __Congratulations!__ You just launched ChromeIDE which will look something like this:
70+
1. __Congratulations!__ You just launched Parallax IDE which will look something like this:
7171

72-
![app launched](readme-images/chromeIDE-launched.png)
72+
![app launched](readme-images/ParallaxIDE-launched.png)
7373

7474

7575
## Coming Back
7676

7777
One you install the built application it is super easy to launch it again. You can either:
7878

79-
* go to ` chrome:// extensions `, search through the list until you find *Parallax ChromeIDE* and then click `launch'
79+
* go to ` chrome:// extensions `, search through the list until you find *Parallax IDE* and then click `launch'
8080

8181
or
8282

83-
* go to chrome app launcher and click on/search for *Parallax ChromeIDE*
83+
* go to chrome app launcher and click on/search for *Parallax IDE*
8484

8585
![chrome app launcher](readme-images/chrome-app-launcher.png)
8686

87-
![click chromeIDE](readme-images/search-chrome-app-launcher.png)
87+
![click Parallax IDE](readme-images/search-chrome-app-launcher.png)
8888

_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"appName": {
3-
"message": "Parallax Chrome IDE",
3+
"message": "Parallax IDE",
44
"description": "The name of the application"
55
},
66
"appDescription": {

client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var plugins = [
2929
{
3030
register: require('./plugins/appbar'),
3131
options: {
32-
title: 'Parallax Chrome IDE'
32+
title: 'Parallax IDE'
3333
}
3434
},
3535
{

gulpfile.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function js(cb){
3131

3232
function release(){
3333
return gulp.src(files.release, { base: __dirname })
34-
.pipe(zip('chromeide.zip'))
34+
.pipe(zip('parallax-ide.zip'))
3535
.pipe(gulp.dest('dist'));
3636
}
3737

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>Parallax Chrome IDE</title>
5+
<title>Parallax IDE</title>
66
<link href="fonts/roboto.css" rel="stylesheet" type="text/css">
77
<link href="fonts/ionicons.css" rel="stylesheet" type="text/css">
88

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "parallax-chrome-ide",
2+
"name": "parallax-ide",
33
"version": "0.3.0",
44
"description": "Parallax microcontroller development environment based on Chrome applications.",
55
"main": "index.js",
@@ -61,11 +61,11 @@
6161
},
6262
"repository": {
6363
"type": "git",
64-
"url": "https://github.com/parallaxinc/ChromeIDE"
64+
"url": "https://github.com/parallaxinc/Parallax-IDE"
6565
},
6666
"license": "MIT",
6767
"bugs": {
68-
"url": "https://github.com/parallaxinc/ChromeIDE/issues"
68+
"url": "https://github.com/parallaxinc/Parallax-IDE/issues"
6969
},
70-
"homepage": "https://github.com/parallaxinc/ChromeIDE"
70+
"homepage": "https://github.com/parallaxinc/Parallax-IDE"
7171
}
-128 KB
Loading

readme-images/chromeIDE-listed.png

-54.3 KB
Binary file not shown.
94.3 KB
Loading

0 commit comments

Comments
 (0)