Skip to content

Commit 7fe9022

Browse files
committed
Add icon
1 parent 833c723 commit 7fe9022

File tree

5 files changed

+43
-27
lines changed

5 files changed

+43
-27
lines changed

.github/workflows/build.yaml

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

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
release:
3+
types: [created]
4+
5+
jobs:
6+
release:
7+
name: Release and publish
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: '16'
13+
- uses: actions/checkout@v2
14+
15+
- run: npm install
16+
17+
- run: npm install -g vsce ovsx
18+
19+
- name: Publish to Marketplace
20+
run: vsce publish -p $PUBLISHER_TOKEN
21+
env:
22+
PUBLISHER_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}
23+
24+
- name: Publish to Open VSX
25+
run: npx ovsx publish -p ${{ secrets.OPENVSX_TOKEN }}

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## vscode-displayfile
22

3-
A display file renderer for Visual Studio Code. Provides a Code Lens on `dds.dspf` to let the user render all or a specific record format into a new tab.
3+
A display and printer file renderer for Visual Studio Code. In preview. Not perfected.
4+
5+
* Provides a Code Lens on `dds.dspf` and `dds.prtf` to let the user render all or a specific record format into a new tab.
6+
* Configurable option to change preview update rate. Default is 1.5 seconds.
47

58
![image](https://user-images.githubusercontent.com/3708366/147897988-c9f9f3cd-11ca-485b-a698-a8a55a5bafc7.png)

icon.png

20.9 KB
Loading

package.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
11
{
22
"name": "vscode-displayfile",
3-
"displayName": "vscode-displayfile",
4-
"description": "Preview IBM i display files",
3+
"displayName": "IBM i Renderer",
4+
"description": "Preview IBM i display & printer files",
55
"version": "0.0.8",
66
"publisher": "halcyontechltd",
77
"author": {
88
"name": "Halcyon-Tech, Liam Allan"
99
},
10+
"keywords": [
11+
"ibmi",
12+
"rpgle",
13+
"cobol",
14+
"ile",
15+
"iseries",
16+
"as400",
17+
"printer",
18+
"5250"
19+
],
20+
"preview": true,
1021
"repository": "https://github.com/halcyon-tech/vscode-displayfile",
1122
"engines": {
1223
"vscode": "^1.63.0"
1324
},
1425
"categories": [
1526
"Other"
1627
],
28+
"icon": "icon.png",
1729
"activationEvents": [
1830
"onLanguage:dds.dspf",
1931
"onLanguage:dds.prtf"

0 commit comments

Comments
 (0)