Skip to content

Commit

Permalink
Merge pull request #320 from gbmhunter/develop
Browse files Browse the repository at this point in the history
Release of v4.17.0.
  • Loading branch information
gbmhunter authored May 30, 2024
2 parents c1d5d0c + f8b232a commit 9e06afa
Show file tree
Hide file tree
Showing 36 changed files with 1,893 additions and 984 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.tsx]
quote_type = single

[*.ts]
quote_type = single

[*.md]
trim_trailing_whitespace = false
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [4.17.0] - 2024-05-31

### Added

- Added ability to select flow control type (none or hardware) in the serial port settings.
- Added tooltips to parameters in the serial port settings pane.
- Added "Send Break" button to the terminal right-hand drawer.
- Added profiles (and a profile settings view) so that the user can save and load different serial port configurations.

## [4.16.0] - 2024-05-19

### Added
Expand Down Expand Up @@ -705,7 +714,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.16.0...HEAD
[unreleased]: https://github.com/gbmhunter/NinjaTerm/compare/v4.17.0...HEAD
[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
[4.15.0]: https://github.com/gbmhunter/NinjaTerm/compare/v4.14.0...v4.15.0
[4.14.0]: https://github.com/gbmhunter/NinjaTerm/compare/v4.13.2...v4.14.0
Expand Down
65 changes: 48 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "ninjaterm",
"version": "4.16.0",
"version": "4.17.0",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@mui/x-data-grid": "^6.20.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
Expand Down
19 changes: 13 additions & 6 deletions src/Homepage/HomepageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export default observer((props: Props) => {
<Typography variant="h2" style={{ marginBottom: '20px' }}>Features</Typography>

<Grid container xs={12} spacing={2.0} sx={{ marginBottom: '20px' }}>
{/* ========================================================================== */}
{/* ANSI Escape Code Support */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -158,7 +159,7 @@ export default observer((props: Props) => {
</div>
</div>
</Grid>

{/* ========================================================================== */}
{/* Graphing */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -179,7 +180,7 @@ export default observer((props: Props) => {
</div>
</div>
</Grid>

{/* ========================================================================== */}
{/* Smart Scrolling */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -200,7 +201,7 @@ export default observer((props: Props) => {
</div>
</div>
</Grid>

{/* ========================================================================== */}
{/* Show Invisible Characters */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -221,7 +222,7 @@ export default observer((props: Props) => {
</div>
</div>
</Grid>

{/* ========================================================================== */}
{/* Logging */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -242,7 +243,7 @@ export default observer((props: Props) => {
</div>
</div>
</Grid>

{/* ========================================================================== */}
{/* Filtering */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -263,7 +264,7 @@ export default observer((props: Props) => {
</div>
</div>
</Grid>

{/* ========================================================================== */}
{/* Number Types */}
{/* ========================================================================== */}
<Grid xs={12}>
Expand All @@ -287,6 +288,9 @@ export default observer((props: Props) => {

</Grid>

{/* ========================================================================== */}
{/* AND MORE */}
{/* ========================================================================== */}
<Typography variant="h2">And more!</Typography>
<ul>
<li>Ability to switch between a combined TX/RX terminal and separate terminals.</li>
Expand All @@ -300,6 +304,9 @@ export default observer((props: Props) => {
<Typography style={{ marginBottom: '20px' }}>Found a bug? Have a awesome feature you'd like added to NinjaTerm? <a href="https://github.com/gbmhunter/NinjaTerm/issues">Open an issue on GitHub</a>.
</Typography>

{/* ========================================================================== */}
{/* CONTRIBUTORS */}
{/* ========================================================================== */}
<Typography variant="h2">Contributors</Typography>

<Typography>Thanks to Zac Frank for user-interaction guidance and tips!</Typography>
Expand Down
Loading

0 comments on commit 9e06afa

Please sign in to comment.