Skip to content

Commit bbfeb31

Browse files
authored
released at 0.1.9
1 parent 10ebcac commit bbfeb31

File tree

5 files changed

+25
-19
lines changed

5 files changed

+25
-19
lines changed

CHANGELOG

+14
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.1.9] - 2022-01-25
8+
### Added
9+
- New year to LICENSE file.
10+
11+
### Removed
12+
- "PATCHES" section from the README.
13+
14+
###Fixed
15+
- Typographic errors in the CHANGELOG.
16+
717
## [0.1.8] - 2021-03-14
818
### Fixed
919
- free(ev), which is called erroneously when ev might equal NULL.
1020

21+
### Removed
22+
- xcb_destroy_window call in the spawn(), which is unnecessary and, furthermore,
23+
not recommended per the developer documentation.
24+
1125
## [0.1.7] - 2021-03-03
1226
### Fixed
1327
- Memory leak due to xcb_wait_for_event() not being freed.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Michael Czigler
3+
Copyright (c) 2021-2022 Michael Czigler
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ install: all
1818
xwm: xwm.o
1919
$(CC) $(ALL_LDFLAGS) -o xwm xwm.o $(LDLIBS)
2020
xwm.o: xwm.c xwm.h config.h
21-
$(CC) $(ALL_CFLAGS) -c xwm.c
2221
clean:
2322
rm -f xwm *.o
2423
uninstall:

README

+9-16
Original file line numberDiff line numberDiff line change
@@ -32,33 +32,26 @@ INSTALL
3232
-------
3333

3434
Building and installing from source:
35-
git clone https://github.com/mcpcpc/xwm
36-
cd xwm
37-
make
38-
sudo make install
39-
40-
PATCHES
41-
-------
42-
43-
For additional features, I have provided a respository for sharing
44-
and hosting user created patches:
45-
https://github.com/mcpcpc/xwm-community
35+
$ git clone https://github.com/mcpcpc/xwm
36+
$ cd xwm
37+
$ make
38+
$ sudo make install
4639

4740
EXAMPLES
4841
--------
4942

5043
Checking the installed version of xwm:
51-
xwm -v
44+
$ xwm -v
5245

5346
Using startx to run xwm:
54-
echo "exec xwm" > ~/.xinitrc
55-
startx
47+
$ echo "exec xwm" > ~/.xinitrc
48+
$ startx
5649

5750
Using imagemagick to set a wallpaper:
58-
display -window root background.png
51+
$ display -window root background.png
5952

6053
Patching xwm:
61-
patch -p0 < mypatch.patch
54+
$ patch -p0 < mypatch.patch
6255

6356
DISCLAIMER
6457
----------

xwm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ static int strcmp_c(char *str1, char *str2) {
253253
int main(int argc, char *argv[]) {
254254
int ret = 0;
255255
if ((argc == 2) && (strcmp_c("-v", argv[1]) == 0)) {
256-
ret = die("xwm-0.1.8, Copyright © 2021 Michael Czigler, MIT License\n");
256+
ret = die("xwm-0.1.9, Copyright © 2021-2022 Michael Czigler, MIT License\n");
257257
}
258258
if ((ret == 0) && (argc != 1)) {
259259
ret = die("usage: xwm [-v]\n");

0 commit comments

Comments
 (0)