Commit Graph

912 Commits

Author SHA1 Message Date
Jack Wills a70d6fa968 refacor: creation & drawing of headers 2022-07-22 20:38:22 +00:00
Jack Wills 96ca208197 wip: header+column widths 2022-07-22 19:38:19 +00:00
Jack Wills d14744b378 wip: sort by 2022-07-22 16:33:40 +00:00
Jack Wills dc4a62910c wip: sort_by 2022-07-22 03:29:23 +00:00
Jack Wills cf7e02dde9 chore: dependencies updated 2022-07-21 18:19:19 +00:00
Jack Wills ba902cb671 chore: merge main into dev 2022-07-06 00:53:58 +00:00
Jack Wills 91d103a108 chore: merge release-v0.0.6 into main 2022-07-06 00:53:57 +00:00
Jack Wills f213409cb9 chore: release v0.0.6 2022-07-06 00:53:57 +00:00
Jack Wills 45d7212a6c docs: changelog 2022-07-06 00:53:14 +00:00
Jack Wills 297979c197 refactor: create_release dead code removed 2022-07-06 00:52:45 +00:00
Jack Wills f556b6f829 docs: changelog 2022-07-06 00:50:58 +00:00
Jack Wills 7d992fa431 docs: changelog 2022-07-06 00:50:42 +00:00
Jack Wills b8b0e36164 docs: changelog 2022-07-06 00:50:05 +00:00
Jack Wills 576a42b1b0 docs: changelog 2022-07-06 00:49:43 +00:00
Jack Wills 5762676647 docs: changelog 2022-07-06 00:48:58 +00:00
Jack Wills 0446680348 fix: alt+tab > shift+tab typo 2022-07-06 00:47:59 +00:00
Jack Wills 8a02656115 docs: changelog 2022-07-06 00:44:18 +00:00
Jack Wills f29e29ad15 docs: readme 2022-05-30 15:08:40 +00:00
Jack Wills 1fd230f2f3 refactor: tokio::spawn
replace async move { fn(x).await} with just tokio::spawn(fn(x))
2022-05-30 14:34:40 +00:00
Jack Wills 1674db8a20 docs: comments improved 2022-05-30 14:30:25 +00:00
Jack Wills a5d7dabbd6 refactor(draw_blocks)r: max_line_width() 2022-05-30 14:24:49 +00:00
Jack Wills 61db81ecfe fix(docker_data): remove unwrap()
use if let (Some(x), Some(y)) instead of x.is_some && y.is_some()
2022-05-30 14:13:24 +00:00
Jack Wills a733efa658 docs: readme logo size 2022-05-30 13:39:49 +00:00
Jack Wills ee182928e1 chore: merge main into dev 2022-05-30 02:36:08 +00:00
Jack Wills 7364597f97 chore: merge release-v0.0.5 into main 2022-05-30 02:36:07 +00:00
Jack Wills 643e6e8cc5 chore: release v0.0.5 2022-05-30 02:36:07 +00:00
Jack Wills 666e22e454 fix: chmod create_release.sh 2022-05-30 02:35:34 +00:00
Jack Wills f9075519ed refactor: cargo fmt 2022-05-30 02:31:20 +00:00
Jack Wills 28555d25b2 refactor: unwrap > unwrap_or 2022-05-30 02:28:45 +00:00
Jack Wills b8b7bda32d fix: core::fmt > std::fmt 2022-05-30 02:28:27 +00:00
Jack Wills 2ad9cbead9 docs: CHANGELOG 2022-05-30 02:19:57 +00:00
Jack Wills 98c83f2f68 docs: bump docker-compose image versions
use alpine 3.16 for redis & postgres in example docker-compose file
2022-05-30 02:19:18 +00:00
Jack Wills 9ce796f31d docs: changelog 2022-05-30 02:15:15 +00:00
Jack Wills 4cf02e3f04 Merge branch 'feat/out_of_bounds' into dev, closes [#8] 2022-05-30 02:13:58 +00:00
Jack Wills 63b7de5345 fix: out of bounds error, closes [#8]
use .is_some() and if let Some() to make sure that container indexes are still valid, without can cause out of bounds issue due to docker update frequencies
2022-05-30 02:13:17 +00:00
Jack Wills 9c0e98a1d7 docs: changelog 2022-05-30 02:05:56 +00:00
Jack Wills d8e22d7444 Merge branch 'fix/unwraps' into dev 2022-05-30 02:05:01 +00:00
Jack Wills 78dca39a65 fix: ui unwraps()
replace unwraps with if let Ok() and unwrap_or(())
2022-05-30 01:39:15 +00:00
Jack Wills d68285a233 fix: remove unwraps()
update_containers use an if let Some() instead of an unwrtap().to_owned()
2022-05-30 01:30:24 +00:00
Jack Wills 846fb60131 fix: docker data remove unwrap()
use filter_map in update_containers iter, rather than map(i.unwrap())
2022-05-30 01:19:37 +00:00
Jack Wills c5c859d6b6 refactor: input_handler unwraps()
feat: disregarding docker command errors

replace if_some() +unwrap() with if let Some().
Docker commands unwrap()  replace with unwrap_or(())
2022-05-30 01:11:54 +00:00
Jack Wills 9573512e92 fix: enable stopping restarting containers
Show stop for restartig containers, so that if a container is in a restart loop can stop the loop
2022-05-30 01:10:08 +00:00
Jack Wills 3a7e3974f5 refactor: cargo fmt 2022-05-30 01:00:45 +00:00
Jack Wills fc39aea582 refactor: input m_button
replace is_some() with a if let Some(), and improve comments
2022-05-30 00:44:40 +00:00
Jack Wills ad43f69152 fix: docker_data remove unwrap()
change update_all_containers unwrap with unwrap_or, and use a filter_map on output vec
2022-05-30 00:27:11 +00:00
Jack Wills dc063a2b87 fix: docker_data remove unwrap()
change update_all_containers unwrap with unwrap_or_default()
2022-05-30 00:18:36 +00:00
Jack Wills 108c457e27 fix: app_data unwrap() removal
update_log_by_index replaced unwrap with unwrap_or_default, for a usize
2022-05-30 00:15:38 +00:00
Jack Wills 6dc0c8f679 fix: docker_data unwrap()
use a match clause to remove an unwrap() from the network_stats section of update_container_stat
2022-05-30 00:14:28 +00:00
Jack Wills 7c7248a63a docs: readme 2022-05-29 23:59:20 +00:00
Jack Wills e497f3f2d9 fix: help panel text
show pg/pgdown, home/end, in help panel
2022-05-22 12:14:52 +00:00