docs: comments
This commit is contained in:
+1
-1
@@ -2,11 +2,11 @@
|
||||
+ dependencies updated, [a3168daa3f769a6747dfbe61103073a7e80a1485], [78e59160bb6a978ee80e3a99eb72f051fb64e737]
|
||||
|
||||
### Fixes
|
||||
+ limit image name to 64 chars max, [b8f7763dd5ac7d0361dd7bfc1dad40f50ee95ae1]
|
||||
+ devcontainer updated, [3bde4f5629539cab3dbb57556663ab81685f9d7a]
|
||||
|
||||
### Features
|
||||
+ derive Eq where appropriate, [d7c2601f959bc12a64cd25cef59c837e1e8c2b2a]
|
||||
+ containerize self, github action to build and push to Docker Hub, []
|
||||
+ ignore containers 'oxker' containers, [1be9f52ad4a68f93142784e9df630c59cdec0a79]
|
||||
|
||||
### Refactors
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
docker login
|
||||
|
||||
docker buildx prune
|
||||
|
||||
docker buildx build --platform linux/arm/v6,linux/arm64,linux/amd64 -t mrjackwills/oxker --push -f containerised/Dockerfile .
|
||||
|
||||
# Github as well?
|
||||
# docker buildx build --platform linux/arm/v6,linux/arm64,linux/amd64 -t ghcr.io/mrjackwills/oxker --push -f containerised/Dockerfile .
|
||||
@@ -100,6 +100,7 @@ async fn main() {
|
||||
.unwrap_or(());
|
||||
} else {
|
||||
loop {
|
||||
// TODO this needs to be improved to display something useful
|
||||
info!("in debug mode");
|
||||
tokio::time::sleep(std::time::Duration::from_millis(5000)).await;
|
||||
}
|
||||
|
||||
+1
-1
@@ -109,7 +109,7 @@ async fn run_app<B: Backend + Send>(
|
||||
if terminal.draw(|f| ui(f, &app_data, &gui_state)).is_err() {
|
||||
return Err(AppError::Terminal);
|
||||
}
|
||||
if crossterm::event::poll(input_poll_rate).unwrap_or_default() {
|
||||
if crossterm::event::poll(input_poll_rate).unwrap_or(false) {
|
||||
if let Ok(event) = event::read() {
|
||||
if let Event::Key(key) = event {
|
||||
sender
|
||||
|
||||
Reference in New Issue
Block a user