Skip to content

Commit

Permalink
v1.1.5 makeWorkflow 마이너픽스
Browse files Browse the repository at this point in the history
  • Loading branch information
dltkdgns00 committed Feb 13, 2024
1 parent 8b9d7cb commit c307bfc
Show file tree
Hide file tree
Showing 17 changed files with 3,813 additions and 3,608 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ dist
node_modules
.vscode-test/
*.vsix
.vscode
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
}
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
38 changes: 26 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@
## [1.0.0] - 2023-08-02

### Added
- Command: 문제 번호 입력 시 문제 검색
- Command: 문제 번호 입력 시 헤더 자동 생성

- Command: 문제 번호 입력 시 문제 검색
- Command: 문제 번호 입력 시 헤더 자동 생성

## [1.0.1] - 2023-08-02

### Added
- Command: 문제 번호 입력 시 파일 생성, 문제 검색, 헤더 자동 생성

- Command: 문제 번호 입력 시 파일 생성, 문제 검색, 헤더 자동 생성

## [1.0.2] - 2023-08-02

### Added
- 확장 아이콘 추가

- 확장 아이콘 추가

## [1.0.3] - 2023-08-03

Expand All @@ -23,27 +26,38 @@
## [1.1.0] - 2023-08-08

### Added
- Command: Github Action을 위한 workflow.yml 생성 및 Github 푸시
- Command: workflow.yml 생성
- Command: 매뉴얼 열기

- Command: Github Action을 위한 workflow.yml 생성 및 Github 푸시
- Command: workflow.yml 생성
- Command: 매뉴얼 열기

## [1.1.1] - 2023-08-09

### Bug Fix
- 문제 파일 생성시 문제 이름에 파일 이름으로 사용 할 수 없는 문자가 포함되어 있을 경우 문제 파일이 생성되지 않는 버그 수정
- workflow.yml 버그 수정

- 문제 파일 생성시 문제 이름에 파일 이름으로 사용 할 수 없는 문자가 포함되어 있을 경우 문제 파일이 생성되지 않는 버그 수정
- workflow.yml 버그 수정

## [1.1.2] - 2023-09-15

### Bug Fix
- 문제 파일 생성 및 문제 검색 시 입력과 출력 부분이 제대로 생성되지 않는 버그 수정

- 문제 파일 생성 및 문제 검색 시 입력과 출력 부분이 제대로 생성되지 않는 버그 수정

## [1.1.3] - 2023-09-15

### Bug Fix
- 문제 파일 생성 및 문제 검색 시 예제 설명 부분과 입,출력 예제가 두 개 이상 있을 경우 제대로 생성되지 않는 버그 수정

- 문제 파일 생성 및 문제 검색 시 예제 설명 부분과 입,출력 예제가 두 개 이상 있을 경우 제대로 생성되지 않는 버그 수정

## [1.1.4] - 2023-09-15

### Bug Fix
- 문제 검색 및 생성 null 값이 보이는 버그 수정

- 문제 검색 및 생성 null 값이 보이는 버그 수정

## [1.1.5] - 2024-02-14

### Bug Fix

- makeWorkflow 마이너 픽스
Loading

0 comments on commit c307bfc

Please sign in to comment.