Skip to content

Commit f177ada

Browse files
authored
Merge pull request #138 from TomasTomecek/0.6.0-release
0.6.0
2 parents 4dc9c4e + 16426b5 commit f177ada

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
# Changelog
22

33

4+
## 0.6.0
5+
6+
### Features
7+
8+
* There is a new view which resembles `docker system df`, initiated by [@soyo42](https://github.com/soyo42), thank you! [#135](https://github.com/TomasTomecek/sen/issues/135).
9+
* This view shows how much disk space is being occupied.
10+
* You can activate it by typing `:df`.
11+
* sen will now display only a first line of a command in listing view.
12+
* Everyone who uses k8s or OpenShift gets this.
13+
* You can now forcibly remove containers and images.
14+
* Pretty handy when an image has multiple names.
15+
* There is a prompt presented after you try to remove anything in listing view.
16+
* to prevent accidental deletion
17+
* This feature can by turned off by invoking sen as `$ sen --skip-prompt-for-irreversible-action`.
18+
* [reported](https://github.com/TomasTomecek/sen/issues/78) by [@jarfil](https://github.com/jarfil), thank you!
19+
20+
### Bug Fixes
21+
22+
* sen is able to display CPU stats correctly for API 1.25+, reported by [@soyo42](https://github.com/soyo42) [#131](https://github.com/TomasTomecek/sen/issues/131).
23+
* `--debug` option now has a description, provided by [@nagracks](https://github.com/nagracks), thank you!
24+
25+
426
## 0.5.1
527

628

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* sen notifies you whenever something happens (and reports slow queries)
1616
* supports a lot of vim-like keybindings (`j`, `k`, `gg`, `/`, ...)
1717
* you can get interactive tree view of all images (equivalent of `docker images --tree`)
18+
* see how much space containers, images and volumes occupy (just type `:df`)
1819

1920
You can [see the features yourself](/docs/features.md).
2021

@@ -167,6 +168,7 @@ f4 filtering, for more info run `help filter` in sen
167168
```
168169
i inspect image
169170
d remove image (irreversible!)
171+
D remove image forcibly (irreversible!)
170172
enter display detailed info about image (when layer is focused)
171173
```
172174

@@ -177,6 +179,7 @@ i inspect container
177179
l display logs of container
178180
f follow logs of container
179181
d remove container (irreversible!)
182+
D remove container forcibly (irreversible!)
180183
t stop container
181184
s start container
182185
r restart container

sen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from sen.constants import FALLBACK_LOG_PATH
44

5-
__version__ = "0.5.1"
5+
__version__ = "0.6.0"
66

77

88
def set_logging(name="sen", level=logging.DEBUG, path=FALLBACK_LOG_PATH):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='sen',
20-
version='0.5.1',
20+
version='0.6.0',
2121
description="Terminal User Interface for Docker Engine",
2222
author='Tomas Tomecek',
2323
author_email='[email protected]',

0 commit comments

Comments
 (0)