ssh-x-term 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,8 +55,8 @@ ssh-x-term/
|
|
|
55
55
|
│ │ └── storage.go # Storage interface definition
|
|
56
56
|
│ ├── ssh/
|
|
57
57
|
│ │ ├── client.go # SSH client implementation
|
|
58
|
-
│ │ ├──
|
|
59
|
-
│ │
|
|
58
|
+
│ │ ├── session_bubbletea_unix.go # SSH session management (Unix)
|
|
59
|
+
│ │ ├── session_bubbletea_unix.go # SSH session management (Windows)
|
|
60
60
|
│ └── ui/
|
|
61
61
|
│ ├── components/
|
|
62
62
|
│ │ ├── bitwarden_collection_list.go # Bitwarden collection selector
|
|
@@ -67,16 +67,16 @@ ssh-x-term/
|
|
|
67
67
|
│ │ ├── connection_list.go # List of SSH connections
|
|
68
68
|
│ │ ├── form.go # Form for adding/editing connections
|
|
69
69
|
│ │ ├── storage_select.go # Credential storage selection (Local/Bitwarden)
|
|
70
|
-
│ │
|
|
70
|
+
│ │ ├── terminal.go # Terminal component for SSH sessions
|
|
71
|
+
│ │ ├── vterm.go # Virtual terminal component integrated inside Bubble Tea
|
|
72
|
+
│ │ └── vterm_test.go # Virtual terminal tests
|
|
71
73
|
│ ├── connection_handler.go # Connection lifecycle management
|
|
72
74
|
│ ├── model.go # Main UI model and state
|
|
73
75
|
│ ├── update.go # Update logic for UI events
|
|
74
76
|
│ └── view.go # View rendering logic
|
|
75
77
|
├── pkg/
|
|
76
78
|
│ └── sshutil/
|
|
77
|
-
│
|
|
78
|
-
│ ├── terminal_unix.go # Terminal utilities (Unix)
|
|
79
|
-
│ └── terminal_windows.go # Terminal utilities (Windows)
|
|
79
|
+
│ └── auth.go # Authentication utilities
|
|
80
80
|
├── go.mod # Go module dependencies
|
|
81
81
|
├── go.sum # Go module checksums
|
|
82
82
|
├── package.json # npm package configuration
|