Skip to content

Commit

Permalink
Update version number to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
florentc committed Aug 25, 2018
1 parent 5d266d4 commit bda67e0
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

This file recaps changes between releases.

## [0.1.1] - 2018-08-25

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.

### Added

- `WM_CLASS` property for the xob windows
- Default system configuration file
- 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.
- Changelog
- New planned feature: configuration through X resources

### Changed

- Naming conventions in types and include guards to avoid clash with possible reserved C and POSIX identifiers
- Naming conventions of the variables in the `Makefile` to fit the GNU Coding Standards

### Fixed

- Build errors on certain configurations due to blunders in `Makefile`

## [0.1] - 2018-08-21

Initial release of xob.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ xob works well under multihead setups but there is no easy way to configure the
* Vertical mode.
* New overflow styles.
* Smooth transitions.
* Configuration through X resources.

## License

Expand Down
2 changes: 1 addition & 1 deletion doc/xob.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 2.2.2.1
.\"
.TH "XOB" "1" "August 2018" "xob 0.1.0" ""
.TH "XOB" "1" "August 2018" "xob 0.1.1" "xob Manual"
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion doc/xob.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% XOB(1) xob 0.1.0
% XOB(1) xob 0.1.1 | xob Manual
% Florent Ch
% August 2018

Expand Down
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "display.h"
#include <stdbool.h>

#define VERSION_NUMBER "0.1.0"
#define VERSION_NUMBER "0.1.1"

typedef struct
{
Expand Down

0 comments on commit bda67e0

Please sign in to comment.