chore: merge release-v0.0.4 into main

This commit is contained in:
Jack Wills
2022-05-08 19:46:47 +00:00
4 changed files with 13 additions and 19 deletions
+1 -13
View File
@@ -1,19 +1,7 @@
### 2022-05-08 ### 2022-05-08
### Docs
+ slight readme tweaks, [eb9184a1aee64be1c20fabd482bfcbe676bed049]
### Features
+ vim movement keys, 'j' & 'k', to move through menus, thanks [siph](https://github.com/siph), [77eb33c008e36965d84d1eafbbc3733af19fd262]
### Fixes ### Fixes
+ create_release.sh correctly link to closed issues, [5820d0a9b68ead71d031377c5d22138675d7dfa8] + Help menu logo corrected, [2f5452027e86f714729b804d4bf65306e755df7f]
### Refactors
+ generate_block reduce params, insert into area hashmap from inside generate_block function, [32705a60c4f865eb829cc460b2ac82db79107c1a]
+ dead code removed, [d20e1bcd47965859a04f8e080509a5afb2de36d9]
+ create_release.sh improved flow & comments, [4283a285e2e60907e432294e3b97a759ec06a23d]
see <a href='https://github.com/mrjackwills/oxker/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details see <a href='https://github.com/mrjackwills/oxker/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
+6
View File
@@ -1,3 +1,9 @@
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.0.4'>v0.0.4</a>
### 2022-05-08
### Fixes
+ Help menu logo corrected, [2f545202](https://github.com/mrjackwills/oxker/commit/2f5452027e86f714729b804d4bf65306e755df7f),
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.0.3'>v0.0.3</a> # <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.0.3'>v0.0.3</a>
### 2022-05-08 ### 2022-05-08
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "oxker" name = "oxker"
version = "0.0.3" version = "0.0.4"
edition = "2021" edition = "2021"
authors = ["Jack Wills <email@mrjackwills.com>"] authors = ["Jack Wills <email@mrjackwills.com>"]
description = "a simple tui to view & control docker containers" description = "a simple tui to view & control docker containers"
+5 -5
View File
@@ -23,13 +23,13 @@ use super::gui_state::BoxLocation;
use super::{GuiState, SelectablePanel}; use super::{GuiState, SelectablePanel};
const NAME_TEXT: &str = r#" const NAME_TEXT: &str = r#"
88 88
88 88
88 88
,adPPYba, 8b, ,d8 88 ,d8 ,adPPYba, 8b,dPPYba, ,adPPYba, 8b, ,d8 88 ,d8 ,adPPYba, 8b,dPPYba,
a8" "8a `Y8, ,8P' 88 ,a8" a8P_____88 88P' "Y8 a8" "8a `Y8, ,8P' 88 ,a8" a8P_____88 88P' "Y8
8b d8 )888( 8888[ 8PP""""""" 88 8b d8 )888( 8888[ 8PP""""""" 88
"8a, ,a8" ,d8" "8b, 88`"Yba, "8b, ,aa 88 "8a, ,a8" ,d8" "8b, 88`"Yba, "8b, ,aa 88
`"YbbdP"' 8P' `Y8 88 `Y8a `"Ybbd8"' 88 "#; `"YbbdP"' 8P' `Y8 88 `Y8a `"Ybbd8"' 88 "#;
const NAME: &str = env!("CARGO_PKG_NAME"); const NAME: &str = env!("CARGO_PKG_NAME");