-
Notifications
You must be signed in to change notification settings - Fork 0
Add async SSH connection management, reconnect logic, and security hardening to terminal screen #1
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f2bfe6b
Refactor terminal_screen.dart based on code review
6m10cmUK a424d88
Add CI workflow, CodeRabbit config, and unit tests
6m10cmUK 092e58b
Fix flutter-action typo and add master branch to CI
6m10cmUK 102b593
Fix flutter-action action name: subosito/flutter-action
6m10cmUK 14bf5f1
Use latest stable Flutter instead of version-file in CI
6m10cmUK 5044dc6
Ignore info-level warnings in CI analyze step
6m10cmUK 55ae327
Fix CodeRabbit review: retry count reset and tab index on close
6m10cmUK 3f13520
Add terminal logic tests: retry, tab index, scroll, pointer
6m10cmUK 13b7807
Fix dead code warning in tests, ignore warnings from local xterm pack…
6m10cmUK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| language: ja | ||
|
|
||
| reviews: | ||
| auto_review: | ||
| enabled: true | ||
| path_filters: | ||
| - "!build/**" | ||
| - "!.dart_tool/**" | ||
| - "!.flutter-plugins" | ||
| - "!.flutter-plugins-dependencies" | ||
| - "!**/*.g.dart" | ||
| - "!**/*.freezed.dart" | ||
| - "!**/*.mocks.dart" | ||
| - "!pubspec.lock" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - master | ||
| - develop | ||
| - 'refactor/**' | ||
| - 'feature/**' | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - master | ||
| - develop | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: subosito/flutter-action@v2 | ||
| with: | ||
| channel: stable | ||
|
|
||
| - name: Install dependencies | ||
| run: flutter pub get | ||
|
|
||
| - name: Analyze | ||
| run: flutter analyze --no-fatal-infos --no-fatal-warnings | ||
|
|
||
| - name: Test | ||
| run: flutter test | ||
|
|
||
| - name: Build APK | ||
| run: flutter build apk --release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.