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

Release of v4.18.0. #325

Merged
merged 26 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4f78784
Wrap disabled buttons with tooltips in divs. Add debug message.
gbmhunter Jun 11, 2024
82f06b2
Start adding accordions to right-hand drawer in terminal view.
gbmhunter Jun 13, 2024
02f0000
Add quick serial port settings to right-hand terminal drawer.
gbmhunter Jun 13, 2024
d17a6c4
Style the accordions.
gbmhunter Jun 13, 2024
5ca679e
Fix broken e2e tests.
gbmhunter Jun 13, 2024
18856a7
Fix MUI Link components.
gbmhunter Jun 13, 2024
5939e2b
Make accordions controlled.
gbmhunter Jun 13, 2024
370a440
Refactor app data storage to use single key in local storage.
gbmhunter Jun 14, 2024
dc1a9a9
Save right-hand drawer open/close state in app data.
gbmhunter Jun 14, 2024
14b2a96
Clicking on the data type in status bar takes you to settings.
gbmhunter Jun 14, 2024
96bf7dd
Add click capability to more status bar items.
gbmhunter Jun 14, 2024
0cc80a5
Added ability to send break signal on Enter key press.
gbmhunter Jun 15, 2024
e17e85c
Half-way through adding better break support to macros.
gbmhunter Jun 15, 2024
f42c925
Upgrade all node packages to latest.
gbmhunter Jun 15, 2024
ffb4926
Fix broken macro tests.
gbmhunter Jun 15, 2024
c2a94d5
Make ASCII macro send new line char at end of every line.
gbmhunter Jun 15, 2024
387ea96
Improve tooltips.
gbmhunter Jun 15, 2024
e294b58
Add ability to enable/disable "break signal received" warnings.
gbmhunter Jun 15, 2024
906411f
Update CHANGELOG.
gbmhunter Jun 15, 2024
0d05243
Improve macro UI. Change defaults.
gbmhunter Jun 15, 2024
852d010
Snackbar message when profile is loaded now tells you if already conn…
gbmhunter Jun 15, 2024
2ac4f31
The right-hand terminal drawer width is now saved as part of the appl…
gbmhunter Jun 15, 2024
0c40229
Active profile name is updated when the app state is saved to a profile.
gbmhunter Jun 15, 2024
7c19ab1
Fix broken macro tests.
gbmhunter Jun 15, 2024
8f8e4ef
Tidy up code and change font sizes.
gbmhunter Jun 15, 2024
0e65eb3
Prep. for release of v4.18.0.
gbmhunter Jun 15, 2024
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
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [4.18.0] - 2024-06-16

### Added

- Clicking on the many of the indicators in the bottom status bar takes you to the settings view where you can change the related settings.
- Added accordions to the terminal right-hand drawer, and added more controls such as quick port settings.
- The terminal right-hand drawer now remembers if it was open or closed. This info is also saved in each profile.
- Added to option to send a break signal on Enter key press.
- Added ability to send a break signal at the end of every line of hex data in a macro.
- ASCII macro data now adds the "on enter" sequence to the end of every line, if enabled.
- You can now disable "received break signal" warnings from the RX Settings view.
- The right-hand terminal drawer width is now saved as part of the application data and in profiles.

### Changed

- Improved the way app data is stored in local storage.
- Snackbar message when profile is loaded now tells you if already connected port matches the one specified in the profile.
- Active profile name is updated when the app state is saved to a profile.

## [4.17.1] - 2024-06-11

### Changed
Expand Down Expand Up @@ -720,7 +739,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added auto-scroll to TX pane, closes #89.
- Added special delete behaviour for backspace button when in "send on enter" mode, closes #90.

[unreleased]: https://github.com/gbmhunter/NinjaTerm/compare/v4.17.1...HEAD
[unreleased]: https://github.com/gbmhunter/NinjaTerm/compare/v4.18.0...HEAD
[4.18.0]: https://github.com/gbmhunter/NinjaTerm/compare/v4.17.1...v4.18.0
[4.17.1]: https://github.com/gbmhunter/NinjaTerm/compare/v4.17.0...v4.17.1
[4.17.0]: https://github.com/gbmhunter/NinjaTerm/compare/v4.16.0...v4.17.0
[4.16.0]: https://github.com/gbmhunter/NinjaTerm/compare/v4.15.0...v4.16.0
Expand Down
2 changes: 1 addition & 1 deletion arduino-serial/Baud115200Test/Baud115200Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void loop() {
Serial.println("fast ");
// Wait until data is sent
Serial.flush();
// delay(DISPLAY_PERIOD);
delay(DISPLAY_PERIOD);
}


Expand Down
Loading
Loading