Skip to content

Commit 90f2f70

Browse files
committed
remove all ChromeIDE references
1 parent cd7bc38 commit 90f2f70

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
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: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ Parallax microcontroller development environment based on Chrome applications.
33

44
## Quickstart
55

6-
1. Visit our [github releases](https://github.com/parallaxinc/ParallaxIDE/releases) and download the desired release or download the latest release [here](https://github.com/parallaxinc/ParallaxIDE/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/ParallaxIDE#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/ParallaxIDE `
28+
` git clone git@github.com:parallaxinc/Parallax-IDE `
2929

3030
![clone repo](readme-images/clone-ParallaxIDE.png)
3131

3232
1. Go to the project root directory with
3333

34-
` cd ParallaxIDE/ `
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,16 +58,16 @@ 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 ParallaxIDE was built, highlight the *'ParallaxIDE'* 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-
![ParallaxIDE listed](readme-images/ParallaxIDE-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 ParallaxIDE which will look something like this:
70+
1. __Congratulations!__ You just launched Parallax IDE which will look something like this:
7171

7272
![app launched](readme-images/ParallaxIDE-launched.png)
7373

@@ -84,5 +84,5 @@ or
8484

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

87-
![click ParallaxIDE](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
}

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const expect = require('expect');
44

5-
describe('Chrome IDE', function(){
5+
describe('Parallax IDE', function(){
66

77
it('has an example test', function(done){
88
expect(true).toEqual(true);

0 commit comments

Comments
 (0)