Skip to content

Commit 7062a7f

Browse files
authored
released at 0.1.5
1 parent 01c96fb commit 7062a7f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9595

9696
### Fixed
9797
- Spelling and grammar in man page.
98+
99+
## [0.1.5] - 2020-12-23
100+
### Removed
101+
- Unused root padding definitions.

config.h

-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
* window behavior.
2222
*/
2323

24-
#define ROOT_PADDING_TOP 0
25-
#define ROOT_PADDING_BOTTOM 0
26-
#define ROOT_PADDING_LEFT 0
27-
#define ROOT_PADDING_RIGHT 0
2824
#define WINDOW_X 600
2925
#define WINDOW_Y 400
3026
#define WINDOW_MIN_X 60

xwm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ static int strcmp_c(char * str1, char * str2) {
264264
int main(int argc, char * argv[]) {
265265
int ret = 0;
266266
if ((argc == 2) && (strcmp_c("-v", argv[1]) == 0)) {
267-
ret = die("xwm-0.1.4, © 2020 Michael Czigler, see LICENSE for details\n");
267+
ret = die("xwm-0.1.5, © 2020 Michael Czigler, see LICENSE for details\n");
268268
}
269269
if ((ret == 0) && (argc != 1)) {
270270
ret = die("usage: xwm [-v]\n");

0 commit comments

Comments
 (0)