Skip to content

Commit 91731de

Browse files
committed
chore: fixed paths to media files
1 parent 1c9e24b commit 91731de

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ test:
44
build-render-server:
55
go build -o ./bin/render-server ./renderserver/main.go
66

7-
heroky-build-and-deploy:
7+
heroku-build-and-deploy:
88
heroku apps:create --region eu pikchr-render-server
99
heroku apps
1010
heroku git:remote -a pikchr-render-server
1111
heroku container:push web
1212
heroku container:release web
13+
heroku-stats:
14+
heroku ps -a pikchr-render-server

vscode-extenstion/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ You can use a shared server for rendering (set by default in settings in the vsc
77
<a href="https://heroku.com/deploy?template=https://github.com/gebv/pikchr/tree/master">
88
<img src="https://www.herokucdn.com/deploy/button.png">
99
</a>
10+
and set value of server url to `pikchr.render_server` in your `settings.json`.
1011

1112
[Redner server API docs](https://github.com/gebv/pikchr/tree/master/renderserver#pikchr-render-server)
1213

@@ -18,9 +19,9 @@ If you have questions, comments, or suggestions, please visit the [GitHub Discus
1819
>
1920
> For example, the diagram:
2021
>
21-
> <img style="background-color: white;" width="423" height="217" src="media/demo.png" />
22+
> <img style="background-color: white;" width="423" height="217" src="https://github.com/gebv/pikchr/raw/master/vscode-extenstion/vscode-extenstion/media/demo.png" />
2223
>
23-
> [Link to orig SVG](media/demo.png)
24+
> [Link to orig SVG](https://github.com/gebv/pikchr/raw/master/vscode-extenstion/vscode-extenstion/media/demo.png)
2425
>
2526
> Is generated by 7 lines of Markdown:
2627
>
@@ -41,4 +42,4 @@ If you have questions, comments, or suggestions, please visit the [GitHub Discus
4142
* if selected code is valid will be opened split panel with diagram
4243
* if selected code is invalid - you will be notified about it
4344
44-
![Demo preview](media/demoscreencast.gif)
45+
![Demo preview](https://github.com/gebv/pikchr/raw/master/vscode-extenstion/vscode-extenstion/media/demoscreencast.gif)

vscode-extenstion/package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
},
1717
"homepage": "https://github.com/gebv/pikchr/blob/master/vscode-extenstion/README.md",
1818
"categories": [
19-
"Programming Languages",
20-
"Formatters",
21-
"Snippets",
2219
"Other"
2320
],
2421
"activationEvents": [
@@ -73,7 +70,13 @@
7370
"extensionKind": [
7471
"workspace"
7572
],
76-
"license": "SEE LICENSE IN LICENSE",
73+
"license": "MIT",
74+
"keywords": [
75+
"pikchr",
76+
"diagrams",
77+
"viewer",
78+
"svg"
79+
],
7780
"devDependencies": {
7881
"@types/vscode": "^1.52.0",
7982
"@types/glob": "^7.1.3",

0 commit comments

Comments
 (0)