Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relocating Workflow #5

Merged
merged 4 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading