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

Refactor: Live Mode and General Improvements #65

Merged
merged 53 commits into from
Jan 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
b5da129
Separate the header
canack Jun 26, 2024
5b4f1dc
Make the code better
canack Jun 26, 2024
44e7f4a
Merge branch 'refs/heads/main' into feature/i31-live-mode
canack Jun 26, 2024
c86f842
small improvements for better user experience
canack Jun 26, 2024
ed66581
Make the code better
canack Jun 27, 2024
84c66e2
Make the code better
canack Jun 29, 2024
0080dcb
Refactor the code
canack Jul 14, 2024
1d3487b
Architectural changes
canack Jul 30, 2024
b7eae64
Minor resizing
canack Aug 3, 2024
71bcbd9
Minor enhancements
canack Aug 3, 2024
c0a8dbc
Fix blocking calls
canack Aug 4, 2024
013baf6
Small code changes
canack Aug 4, 2024
980d167
Clean empty table
canack Aug 6, 2024
c89755a
Implement live mode
canack Aug 6, 2024
8b64ae2
Show running workflow's duration
canack Aug 6, 2024
0be0559
Custom interval support for live mode
canack Aug 6, 2024
34334fe
Change trigger pane colors
canack Aug 6, 2024
ca9658a
remove unused code
canack Aug 6, 2024
16afd93
remove unnecessary file
canack Aug 6, 2024
1c1e23a
first steps of enhanced ui
canack Aug 8, 2024
d073ee7
Start to use skeleton package
canack Sep 1, 2024
e54e3e5
Enhance UI
canack Sep 2, 2024
fc1445a
Improve code style
canack Sep 2, 2024
660ccd9
Revert "Improve code style"
canack Sep 2, 2024
7b538bc
Reapply "Improve code style"
canack Sep 2, 2024
8dc8680
Make architecture basic
canack Sep 2, 2024
598ef3d
Rearrange methods and delete unused code
canack Sep 2, 2024
648bcf5
Rearrange code
canack Sep 2, 2024
371eada
Fix refresh history after trigger
canack Sep 2, 2024
87f1532
Remove unnecessary spinner and fix self update
canack Sep 5, 2024
4b01fd0
Made listeners common
canack Sep 5, 2024
39b271b
Minor improvements
canack Sep 5, 2024
65c42cd
Rename and make private some variables
canack Sep 5, 2024
99f1187
Rename & minor improvements
canack Sep 7, 2024
a9110ab
Minor improvements
canack Sep 7, 2024
206ba46
Update gitignore
canack Dec 17, 2024
a9bc5ef
Upgrade dependencies
canack Dec 17, 2024
e11dbd3
Remove "Launch the selected option" helper. No need to show it always.
canack Dec 17, 2024
8efeab6
Make confirmation message better
canack Dec 17, 2024
1460ed0
Improve updater mechanism, remove obsolete and unused code for better…
canack Dec 17, 2024
8ca134e
remove go.work.sum
canack Dec 17, 2024
f168b6a
Merge branch 'main' into feature/i31-live-mode
canack Dec 17, 2024
0e11431
Upgrade the dependencies
canack Dec 18, 2024
ac225e2
Upgrade termkit/skeleton to v0.2.0 and add GetRepositoryBranches func…
canack Jan 5, 2025
2a0de10
Refactor terminal handler models and improve UI components
canack Jan 5, 2025
f5f501e
Update go.mod and go.sum to include new dependencies and upgrade exis…
canack Jan 6, 2025
b57e81e
Enhance GitHub workflow handling and state management
canack Jan 6, 2025
9fa580e
Refactor GitHub repository and workflow handling for improved perform…
canack Jan 6, 2025
ac4de9a
Minor changes
canack Jan 6, 2025
7456da0
Update input size
canack Jan 6, 2025
cac6e63
update readme
canack Jan 6, 2025
1f7227d
Update go version
canack Jan 6, 2025
d9e0412
Minor changes
canack Jan 6, 2025
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
Prev Previous commit
Next Next commit
Update input size
canack committed Jan 6, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 7456da0f1c24145e80253c432190de2cc920454f
2 changes: 1 addition & 1 deletion internal/terminal/handler/ghtrigger.go
Original file line number Diff line number Diff line change
@@ -628,7 +628,7 @@ func (m *ModelGithubTrigger) getSelectorStyle() lipgloss.Style {
Border(lipgloss.NormalBorder()).
BorderForeground(lipgloss.Color("#3b698f")).
Padding(0, 1).
Width(m.skeleton.GetTerminalWidth() - 18).
Width(m.skeleton.GetTerminalWidth() - 17).
MarginLeft(1)
}