Skip to content

Commit

Permalink
Merge pull request #157 from lorenzo2897/publish
Browse files Browse the repository at this point in the history
Minor fixes for publishing. v1.0.1
  • Loading branch information
Lorenzo Silvestri committed Jul 12, 2018
2 parents 500bad2 + 8969d4f commit 393ff8b
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -25,9 +25,9 @@ To add a card, select some Python code and run the `Send code to output` command

## Release Notes

### 1.0.0
### 1.0.1

Initial Release
Initial Release on VS Code Marketplace


For information about building upon this extension, visit [the guide for developers](DEVELOPING.md).
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
@@ -1,11 +1,11 @@
{
"name": "vscode-ipe",
"displayName": "vscode-ipe",
"description": "Interactive programming experience for data scientists.",
"version": "1.0.0",
"name": "neuron-IPE",
"displayName": "neuron",
"description": "Interactive programming experience for data scientists",
"version": "1.0.1",
"license": "MIT",
"repository": "https://github.com/lorenzo2897/vscode-ipe",
"publisher": "ImperialCollege",
"publisher": "neuron",
"engines": {
"vscode": "^1.23.0"
},
Expand Down Expand Up @@ -109,7 +109,7 @@
"scripts": {
"clean": "shx rm -rf html/ out/",
"vscode:prepublish": "npm run compile",
"build-types": "tsc -p src-common/ && shx cp -r src-common/ node_modules/vscode-ipe-types/",
"build-types": "tsc -p src-common/ && shx cp -r src-common/ node_modules/neuron-ipe-types/",
"compile-frontend": "cd src-frontend && npm run build",
"watch-frontend": "npm run build-types && cd src-frontend && npm run watch",
"compile-backend": "tsc -p ./",
Expand Down
4 changes: 2 additions & 2 deletions src-common/package.json
@@ -1,6 +1,6 @@
{
"name": "vscode-ipe-types",
"version": "0.0.0",
"name": "neuron-ipe-types",
"version": "1.0.0",
"private": true,
"main": "out/types.js",
"types": "out/types.d.ts"
Expand Down
2 changes: 1 addition & 1 deletion src-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-frontend/package.json
@@ -1,6 +1,6 @@
{
"name": "src-frontend",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 2 additions & 0 deletions src-frontend/src/app/app.component.css
Expand Up @@ -17,13 +17,15 @@ app-toolbar {
top: 0;
width: 100%;
z-index: 9999;
margin-left: -10px;
}

app-snackbar {
position: fixed;
bottom: 0;
width: 100%;
z-index: 9999;
margin-left: -10px;
}

/* Display Size */
Expand Down
4 changes: 4 additions & 0 deletions src-frontend/src/app/card/card.component.css
Expand Up @@ -77,6 +77,10 @@ pre {
overflow-x: scroll;
white-space: pre;
}
.output-math {
flex: 1;
overflow-x: scroll;
}
:host ::ng-deep .card-output img {
background-color: rgba(255, 255, 255, 0.96);
}
Expand Down
2 changes: 1 addition & 1 deletion src-frontend/src/app/card/card.component.html
Expand Up @@ -106,7 +106,7 @@
<app-vdom [vdom]="output.output"></app-vdom>
</div>

<div *ngSwitchCase="'text/latex'">
<div *ngSwitchCase="'text/latex'" class="output-math">
<app-math [mathExpr]="output.output"></app-math>
</div>

Expand Down
2 changes: 2 additions & 0 deletions src-frontend/src/app/snackbar/snackbar.component.css
Expand Up @@ -11,6 +11,8 @@
color: var(--color);
margin-right: 20px;
user-select: none;
box-shadow: 0px 2px 20px 0px black;
padding-left: 10px;
}

.snack-bar span {
Expand Down
4 changes: 4 additions & 0 deletions src-frontend/src/app/toolbar/toolbar.component.css
Expand Up @@ -5,12 +5,14 @@
border: 0 solid rgba(200, 200, 200, 0.5);
border-bottom-width: 1px;
user-select: none;
box-shadow: 0px 7px 20px -8px black;
}

.main-bar {
display: flex;
flex-wrap: nowrap;
margin-right: 10px;
padding-left: 10px;
}
.main-bar input {
flex-basis: 400px;
Expand Down Expand Up @@ -72,6 +74,8 @@ input:focus {
height: 26px;
border: 0 solid rgba(200, 200, 200, 0.5);
border-bottom-width: 1px;
padding-left: 10px;
box-shadow: 0px 7px 20px -8px black;
}

.filter {
Expand Down

0 comments on commit 393ff8b

Please sign in to comment.