diff --git a/.github/actions/build_extension.yml b/.github/workflows/build_extension.yml similarity index 96% rename from .github/actions/build_extension.yml rename to .github/workflows/build_extension.yml index b8d5474..0772031 100644 --- a/.github/actions/build_extension.yml +++ b/.github/workflows/build_extension.yml @@ -14,6 +14,8 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v3 + with: + ref: ${{ github.sha }} - name: Setup Node.js Version uses: actions/setup-node@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e12446..0f3bafc 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ All notable changes to the "avr-utils" extension will be documented in this file - Fix error where commands like "Create New Project" in the command palette claim that they are missing ( Would happen especially on VSCode version < 1.75 ). - Added a progress bar when downloading the toolchain, so that you (the user) are aware of the process. - Better error message diagnostics, the extension was really lacking in this area as compilations were not giving useful error messages in case errors existed. +- Added necessary configurations to allow VSCode's keybinds `Ctrl+/` and `Alt+Shift+A` to quickly comment and uncomment lines and blocks of code respectively. - There was also a (slightly annoying) visual bug where the compile button would render at ALL times. This has also been fixed. - Changed the quick action for compiling from `F5` to `F4` because F5 is usually used for debugging. - Moving from manual builds of minified js file to a CI based workflow (Thank you, GitHub Actions!) diff --git a/README.md b/README.md index 44a1afc..f197e85 100755 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ This extension helps users to write and compile code for their avr microcontroll ## !! New !! - Progress bar when downloading toolchain. - Better error message diagnostics (Big Improvement!) +- Simplified Commenting of code. More in [Changelog.md](./CHANGELOG.md)