Skip to content

Commit

Permalink
发布 v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whyour committed Nov 1, 2023
1 parent d33ac2a commit 5b272ce
Show file tree
Hide file tree
Showing 22 changed files with 4,251 additions and 2,262 deletions.
14 changes: 0 additions & 14 deletions .dependabot/config.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "import",
"format": ["camelCase", "PascalCase"]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": ["out", "dist", "**/*.d.ts"]
}
23 changes: 14 additions & 9 deletions .github/workflows/vsce-publish.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: Deploy Extension
on:
push:
branches:
- master
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- uses: lannonbr/vsce-action@3.0.0
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
node-version: 20

- name: Install vsce
run: |
npm install
npm install --global @vscode/vsce
- name: Publish
run: vsce publish -p ${{ secrets.VSCE_TOKEN }}
14 changes: 0 additions & 14 deletions .prettierrc

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '12.19.0'
- '20.9.0'
install:
- npm install
script:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2019 whyour
Copyright 2023 whyour

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Issue Blog

[![Version](https://vsmarketplacebadge.apphb.com/version/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog)
[![Installs](https://vsmarketplacebadge.apphb.com/installs/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog)
[![Ratings](https://vsmarketplacebadge.apphb.com/rating/whyour.issue-blog.svg)](https://vsmarketplacebadge.apphb.com/rating/whyour.issue-blog.svg)
[![Build Status](https://travis-ci.org/whyour/issue-blog.svg?branch=master)](https://travis-ci.org/whyour/issue-blog)
[![Version](https://vsmarketplacebadges.dev/version/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog)
[![Installs](https://vsmarketplacebadges.dev/installs/whyour.issue-blog.svg)](https://marketplace.visualstudio.com/items?itemName=whyour.issue-blog)
[![Ratings](https://vsmarketplacebadges.dev/rating/whyour.issue-blog.svg)](https://vsmarketplacebadge.apphb.com/rating/whyour.issue-blog.svg)
[![Build Status](https://travis-ci.com/whyour/issue-blog.svg?branch=master)](https://travis-ci.org/whyour/issue-blog)

## 安装 issue-blog 插件

Expand Down Expand Up @@ -69,6 +69,9 @@ Document images can be used to [v - picgo](https://github.com/PicGo/vs-picgo) ca
* `issue.repo`: 设置 github issue-blog 仓库名

## Version Feature
### 1.2.0
* 修复 github api 请求问题

### 1.0.2
* 支持获取issue列表后在vscode中打开

Expand Down
Loading

0 comments on commit 5b272ce

Please sign in to comment.