Skip to content

Commit

Permalink
updated v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Escolar committed Dec 5, 2019
1 parent 0ed5656 commit 4d82ee9
Show file tree
Hide file tree
Showing 6 changed files with 450 additions and 22 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and build
run: |
npm install
npm run compile
env:
CI: true
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: npm install
run: |
npm install
- name: publish
run: |
vsce publish -p ${{secrets.VSCE_TOKEN}}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to the "vscode-solution-explorer" extension will be documented in this file.

## 0.3.6

PR #100 Configurable Line Endings. Thanks to [jesperbjensen](https://github.com/jesperbjensen)

PR #105 Fixed empty projects and directories on fs.lstat error. Thanks to [Dvvarf](https://github.com/Dvvarf)

PR #106 Added ProjectReference and CustomBuild item support to StandardProject. Thanks to [Dvvarf](https://github.com/Dvvarf)

PR #110 Minor spelling fix in README. Thanks to [vthg2themax](https://github.com/vthg2themax)

Added automated build and publish from Github

## 0.3.5

Bugfix #80: thanks to [martinothamar](https://github.com/martinothamar) for his PR
Expand Down
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,18 @@ Please report your issues: [vscode-solution-explorer GitHub page](https://github

There is a lot of work to do.

### 0.3.6

PR #100 Configurable Line Endings. Thanks to [jesperbjensen](https://github.com/jesperbjensen)

PR #105 Fixed empty projects and directories on fs.lstat error. Thanks to [Dvvarf](https://github.com/Dvvarf)

PR #106 Added ProjectReference and CustomBuild item support to StandardProject. Thanks to [Dvvarf](https://github.com/Dvvarf)

PR #110 Minor spelling fix in README. Thanks to [vthg2themax](https://github.com/vthg2themax)

Added automated build and publish from Github

### 0.3.5

Bugfix #80: thanks to [martinothamar](https://github.com/martinothamar) for his PR
Expand All @@ -124,12 +136,6 @@ Bugfix #83: fixed dynamic scripts loading due to webpack use.

PR #75: fix: convert dash to underscore in namespace - by [emrahcetiner](https://github.com/emrahcetiner)

### 0.3.3

Bugfix #79: fixed dynamic scripts loading due to webpack use.

Bugfix #25 #80: check if the project loaded XML has no elements in CPS projects.

## Thanks to contributors

[dfrencham](https://github.com/dfrencham)
Expand All @@ -140,5 +146,7 @@ Bugfix #25 #80: check if the project loaded XML has no elements in CPS projects.
[emrahcetiner](https://github.com/emrahcetiner)
[martinothamar](https://github.com/martinothamar)
[jesperbjensen](https://github.com/jesperbjensen)
[Dvvarf](https://github.com/Dvvarf)
[vthg2themax](https://github.com/vthg2themax)

**Enjoy!**
Loading

0 comments on commit 4d82ee9

Please sign in to comment.