Skip to content

Commit

Permalink
Merge pull request #44 from yamajyn/develop
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
yamajyn authored Aug 15, 2022
2 parents 7110a21 + 200375d commit 8454fd0
Show file tree
Hide file tree
Showing 14 changed files with 680 additions and 4,457 deletions.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Bug report
about: Create a report to help us improve
labels: ["bug"]
---
- Extension Version:
- OS Version:

Steps to Reproduce:

1.
2.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Feature request
about: Suggest an idea for this project
labels: ["enhancement"]
---

### Specific Request

#### Which

#### How

70 changes: 70 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ develop, master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '30 9 * * 0'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2022-08-15
### Added
- Enabled to open the destination JSON files.
- [BETA] Show progress bar

## [1.0.5] - 2022-04-14
### Fixed
- not changed explorer data🙏🏻
Expand Down Expand Up @@ -48,7 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- README
- icon

[Unreleased]: https://github.com/yamajyn/commandlist/compare/v1.0.3...HEAD
[Unreleased]: https://github.com/yamajyn/commandlist/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/yamajyn/commandlist/releases/tag/v1.1.0
[1.0.5]: https://github.com/yamajyn/commandlist/releases/tag/v1.0.5
[1.0.4]: https://github.com/yamajyn/commandlist/releases/tag/v1.0.4
[1.0.3]: https://github.com/yamajyn/commandlist/releases/tag/v1.0.3
Expand Down
23 changes: 4 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,27 +40,12 @@ right-click on command



## Release Notes
## Release Note

### 1.0.2
### 1.1.0

Put commands in alphabetical order

### 1.0.1

Fix light theme icon.

### 1.0.0

Initial release of commandlist.

### 0.2.0

Function addition of command group.

### 0.1.0

create command explorer and command executer.
- Enabled to open the destination JSON files.
- [BETA] Show progress bar

-----------------------------------------------------------------------------------------------------------

Expand Down
Loading

0 comments on commit 8454fd0

Please sign in to comment.