Skip to content

Commit 5c634cb

Browse files
committed
Added logo
1 parent a07b03b commit 5c634cb

6 files changed

Lines changed: 244 additions & 3 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [atsyplenkov]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
push:
3+
tags:
4+
- "*"
5+
6+
name: Deploy Extension
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 20
15+
- run: npm ci
16+
- name: Publish to Open VSX Registry
17+
uses: HaaLeo/publish-vscode-extension@v1
18+
with:
19+
pat: ${{ secrets.OPEN_VSX_TOKEN }}

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to the "formalist" extension will be documented in this file
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7-
## [Unreleased]
7+
## [0.1.0] -- 2024-12-18
8+
9+
- Added logo
10+
- Published on Open VSX Registry
11+
12+
## [0.0.1] -- 2024-12-16
813

914
- Initial release

assets/logo.png

22.5 KB
Loading

assets/logo.svg

Lines changed: 210 additions & 0 deletions
Loading

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"name": "formalist",
33
"displayName": "formalist",
44
"description": "Make R function calls excplicit",
5-
"version": "0.0.1",
5+
"version": "0.1.0",
66
"publisher": "atsyplenkov",
77
"license": "MIT",
88
"pricing": "Free",
99
"sponsor": {
1010
"url": "https://github.com/sponsors/atsyplenkov"
1111
},
12+
"icon": "assets/logo.png",
1213
"repository": {
1314
"type": "git",
1415
"url": "https://github.com/atsyplenkov/formalist"
@@ -22,7 +23,12 @@
2223
"vscode": "^1.93.0"
2324
},
2425
"categories": [
25-
"Other"
26+
"Other",
27+
"Snippets"
28+
],
29+
"keywords": [
30+
"r",
31+
"keybindings"
2632
],
2733
"activationEvents": [],
2834
"main": "./extension.js",

0 commit comments

Comments
 (0)