chore: merge main into dev
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
### 2022-07-23
|
||||
### 2022-08-04
|
||||
|
||||
### Chores
|
||||
+ dependencies updated, [d9801cdf372521fe5624a8d68fac83ed39ef81f4]
|
||||
+ linting: nursery, pedantic, unused_unwraps, [1bd61d4ce8b369d6d078201add3eea0f59fe0dea], [1263662bd9412afacddbc10721bf216ae3a843f1], [ca3315a69f593ad705eb637f227f195edd7781b2]
|
||||
|
||||
### Features
|
||||
+ build all production targets on release, [44f8140eaec330abe5a94f3ddae9e8b223688aa8]
|
||||
|
||||
### Fixes
|
||||
+ remove reqwest dependency, [10ff8bab5f01f097fd6cdec60b2be947f238197b]
|
||||
+ toml keywords, [dd2d82d114537e09dbeb12f360157f0e68e7846e]
|
||||
|
||||
|
||||
see <a href='https://github.com/mrjackwills/oxker/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
|
||||
|
||||
+7
-4
@@ -1,12 +1,15 @@
|
||||
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.1.3'>v0.1.3</a>
|
||||
### 2022-08-04
|
||||
|
||||
### Chores
|
||||
+ dependencies updated, [d9801cdf372521fe5624a8d68fac83ed39ef81f4]
|
||||
+ linting: nursery, pedantic, unused_unwraps, [1bd61d4ce8b369d6d078201add3eea0f59fe0dea], [1263662bd9412afacddbc10721bf216ae3a843f1], [ca3315a69f593ad705eb637f227f195edd7781b2]
|
||||
+ dependencies updated, [d9801cdf](https://github.com/mrjackwills/oxker/commit/d9801cdf372521fe5624a8d68fac83ed39ef81f4),
|
||||
+ linting: nursery, pedantic, unused_unwraps, [1bd61d4c](https://github.com/mrjackwills/oxker/commit/1bd61d4ce8b369d6d078201add3eea0f59fe0dea),, [1263662b](https://github.com/mrjackwills/oxker/commit/1263662bd9412afacddbc10721bf216ae3a843f1),, [ca3315a6](https://github.com/mrjackwills/oxker/commit/ca3315a69f593ad705eb637f227f195edd7781b2),
|
||||
|
||||
### Features
|
||||
+ build all production targets on release, [44f8140eaec330abe5a94f3ddae9e8b223688aa8]
|
||||
+ build all production targets on release, [44f8140e](https://github.com/mrjackwills/oxker/commit/44f8140eaec330abe5a94f3ddae9e8b223688aa8),
|
||||
|
||||
### Fixes
|
||||
+ toml keywords, [dd2d82d114537e09dbeb12f360157f0e68e7846e]
|
||||
+ toml keywords, [dd2d82d1](https://github.com/mrjackwills/oxker/commit/dd2d82d114537e09dbeb12f360157f0e68e7846e),
|
||||
|
||||
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.1.2'>v0.1.2</a>
|
||||
### 2022-07-23
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "oxker"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
edition = "2021"
|
||||
authors = ["Jack Wills <email@mrjackwills.com>"]
|
||||
description = "a simple tui to view & control docker containers"
|
||||
|
||||
+1
-5
@@ -148,11 +148,7 @@ fn ui<B: Backend>(
|
||||
) {
|
||||
// set max height for container section, needs +4 to deal with docker commands list and borders
|
||||
let height = app_data.lock().get_container_len();
|
||||
let height = if height < 12 {
|
||||
(height + 4) as u16
|
||||
} else {
|
||||
12
|
||||
};
|
||||
let height = if height < 12 { (height + 4) as u16 } else { 12 };
|
||||
|
||||
let column_widths = app_data.lock().get_width();
|
||||
let has_containers = !app_data.lock().containers.items.is_empty();
|
||||
|
||||
Reference in New Issue
Block a user