Skip to content

Commit bda67e0

Browse files
committed
Update version number to 0.1.1
1 parent 5d266d4 commit bda67e0

File tree

5 files changed

+32
-3
lines changed

5 files changed

+32
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
This file recaps changes between releases.
4+
5+
## [0.1.1] - 2018-08-25
6+
7+
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.
8+
9+
### Added
10+
11+
- `WM_CLASS` property for the xob windows
12+
- Default system configuration file
13+
- Configurable (during build) system configuration path: xob does not always fallback to `/etc/xob/styles.cfg` anymore, it adapts to the system configuration directory specified during the build process.
14+
- Changelog
15+
- New planned feature: configuration through X resources
16+
17+
### Changed
18+
19+
- Naming conventions in types and include guards to avoid clash with possible reserved C and POSIX identifiers
20+
- Naming conventions of the variables in the `Makefile` to fit the GNU Coding Standards
21+
22+
### Fixed
23+
24+
- Build errors on certain configurations due to blunders in `Makefile`
25+
26+
## [0.1] - 2018-08-21
27+
28+
Initial release of xob.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ xob works well under multihead setups but there is no easy way to configure the
256256
* Vertical mode.
257257
* New overflow styles.
258258
* Smooth transitions.
259+
* Configuration through X resources.
259260

260261
## License
261262

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.2.2.1
22
.\"
3-
.TH "XOB" "1" "August 2018" "xob 0.1.0" ""
3+
.TH "XOB" "1" "August 2018" "xob 0.1.1" "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.0
1+
% XOB(1) xob 0.1.1 | xob Manual
22
% Florent Ch
33
% August 2018
44

src/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "display.h"
2222
#include <stdbool.h>
2323

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

2626
typedef struct
2727
{

0 commit comments

Comments
 (0)