Skip to content

Commit 93bdbd5

Browse files
committed
Update version
1 parent 9d27977 commit 93bdbd5

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
This file recaps changes between releases.
44

5+
## [0.2] - 2020-03-09
6+
7+
This release introduces more precise timeout specification (mind the new unit for `-t`) and an orientation option. This option makes it possible to chose between a new vertical style or the classic horizontal style.
8+
9+
### Added
10+
11+
- New vertical mode to display a bar that fills up from bottom to top.
12+
- New `orientation` option to choose between classic horizontal mode and new vertical mode.
13+
- More precise timeout specification (millisecond). Values below one second are now allowed.
14+
15+
### Changed
16+
17+
- Default style: the bar is now vertical near the right edge of the screen. This prevents the bar from overlapping two screens in typical horizontal dual-monitor setups.
18+
- Unit for timeout `-t` is now the millisecond. xob will issue a warning when the specified value seems too low (e.g. after a migration from v0.1.x).
19+
20+
### Fixed
21+
22+
- Integers (`0` and `1`) not accepted as values for `rel` options in configuration file .
23+
- Typos in documentation.
24+
25+
526
## [0.1.1] - 2018-08-25
627

728
This release does not add any major new end-user feature. It corrects issues and improves the build process thanks to a revamped `Makefile` for easier packaging of the program in linux distributions. It also provides a default system configuration file.

doc/xob.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 2.9.1.1
22
.\"
3-
.TH "XOB" "1" "March 2020" "xob 0.1.1" "xob Manual"
3+
.TH "XOB" "1" "March 2020" "xob 0.2" "xob Manual"
44
.hy
55
.SH NAME
66
.PP

doc/xob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% XOB(1) xob 0.1.1 | xob Manual
1+
% XOB(1) xob 0.2 | xob Manual
22
% Florent Ch
33
% March 2020
44

src/main.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* xob - A lightweight overlay volume/anything bar for the X Window System.
2-
* Copyright (C) 2018 Florent Ch.
2+
* Copyright (C) 2020 Florent Ch.
33
*
44
* xob is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
2121
#include "display.h"
2222
#include <stdbool.h>
2323

24-
#define VERSION_NUMBER "0.1.1"
24+
#define VERSION_NUMBER "0.2"
2525

2626
typedef struct
2727
{

0 commit comments

Comments
 (0)