Skip to content

Commit ed8b900

Browse files
committed
Endpoint switch fix / Visual updates / Rename
1 parent f05a6f2 commit ed8b900

File tree

12 files changed

+53
-66
lines changed

12 files changed

+53
-66
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<p align="center">
2-
<img alt="GraphiQL app" src="assets/logo.png" width="440">
2+
<img alt="GraphQL IDE" src="assets/logo.png" width="440">
33
</p>
44

55
<p align="center">
6-
An Electron-based wrapper around GraphiQL
6+
An extensive IDE for exploring GraphQL API's
77
</p>
88

99
---
@@ -50,4 +50,4 @@ Project variables for dynamic headers
5050
Manage projects
5151
![Manage projects](assets/screenshot-4.png)
5252

53-
[0]: https://github.com/redound/graphiql-app/releases
53+
[0]: https://github.com/redound/graphql-ide/releases

assets/icon.sketch

96 KB
Binary file not shown.

assets/logo.png

-431 KB
Loading

css/app.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,16 +186,16 @@
186186
margin-top: -1px;
187187
padding: 0 15px 0 13px; }
188188
.QueryListItem__Icon .Icon {
189-
width: 49px;
190-
height: 49px;
189+
width: 39px;
190+
height: 39px;
191191
border-radius: 50%;
192192
background-color: #E10098;
193193
display: flex;
194194
justify-content: center;
195195
align-items: center; }
196196
.QueryListItem__Icon .Icon span {
197197
color: #fff;
198-
font-size: 24px;
198+
font-size: 18px;
199199
text-transform: uppercase;
200200
font-weight: 200; }
201201

@@ -225,7 +225,7 @@
225225
text-overflow: ellipsis;
226226
white-space: nowrap;
227227
font-weight: 400;
228-
font-size: 16px;
228+
font-size: 14px;
229229
line-height: 21px;
230230
color: #000;
231231
flex-grow: 1;

gulpfile.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@
105105
</div>
106106
</body>
107107
<script src="dist/vendor.js"></script>
108-
<script src="dist/main.js"></script>
108+
<script src="dist/app.js"></script>
109109
</html>

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const url = require('url')
1111
electron.crashReporter.start({
1212
productName: 'GraphiQL',
1313
companyName: 'Redound',
14-
submitURL: 'https://github.com/redound/graphiql-app/issues',
14+
submitURL: 'https://github.com/redound/graphql-ide/issues',
1515
autoSubmit: true
1616
})
1717

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const assign = require('lodash/assign')
77
const latest = require('github-latest-release')
88
const argv = require('minimist')(process.argv.slice(2))
99

10-
const appName = argv.name || argv.n || 'GraphiQL'
10+
const appName = argv.name || argv.n || 'GraphQL IDE'
1111
const shouldUseAsar = argv.asar || argv.a || false
1212
const shouldBuildAll = argv.all || false
1313
const shouldPrune = argv.prune || true

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "graphiql-app",
3-
"version": "0.1.3",
2+
"name": "graphql-ide",
3+
"version": "0.1.4",
44
"description": "",
55
"main": "main.js",
66
"scripts": {
@@ -10,13 +10,13 @@
1010
},
1111
"keywords": [],
1212
"license": "MIT",
13-
"homepage": "https://github.com/redound/graphiql-app",
13+
"homepage": "https://github.com/redound/graphql-ide",
1414
"bugs": {
15-
"url": "https://github.com/redound/graphiql-app/issues"
15+
"url": "https://github.com/redound/graphql-ide/issues"
1616
},
1717
"repository": {
1818
"type": "git",
19-
"url": "http://github.com/redound/graphiql-app.git"
19+
"url": "http://github.com/redound/graphql-ide.git"
2020
},
2121
"dependencies": {
2222
"classnames": "^2.2.5",

scss/app/components/query-list/_query-list.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
padding: 0 15px 0 13px;
7676

7777
.Icon {
78-
width: 49px;
79-
height: 49px;
78+
width: 39px;
79+
height: 39px;
8080
border-radius: 50%;
8181
background-color: #E10098;
8282
display: flex;
@@ -85,7 +85,7 @@
8585

8686
span {
8787
color: #fff;
88-
font-size: 24px;
88+
font-size: 16px;
8989
text-transform: uppercase;
9090
font-weight: 200;
9191
}
@@ -120,7 +120,7 @@
120120
text-overflow: ellipsis;
121121
white-space: nowrap;
122122
font-weight: 400;
123-
font-size: 16px;
123+
font-size: 14px;
124124
line-height: 21px;
125125
color: #000;
126126
flex-grow: 1;

0 commit comments

Comments
 (0)