Skip to content

Commit

Permalink
released at 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpcpc authored Jan 25, 2022
1 parent 10ebcac commit bbfeb31
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 19 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.9] - 2022-01-25
### Added
- New year to LICENSE file.

### Removed
- "PATCHES" section from the README.

###Fixed
- Typographic errors in the CHANGELOG.

## [0.1.8] - 2021-03-14
### Fixed
- free(ev), which is called erroneously when ev might equal NULL.

### Removed
- xcb_destroy_window call in the spawn(), which is unnecessary and, furthermore,
not recommended per the developer documentation.

## [0.1.7] - 2021-03-03
### Fixed
- Memory leak due to xcb_wait_for_event() not being freed.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Michael Czigler
Copyright (c) 2021-2022 Michael Czigler

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ install: all
xwm: xwm.o
$(CC) $(ALL_LDFLAGS) -o xwm xwm.o $(LDLIBS)
xwm.o: xwm.c xwm.h config.h
$(CC) $(ALL_CFLAGS) -c xwm.c
clean:
rm -f xwm *.o
uninstall:
Expand Down
25 changes: 9 additions & 16 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -32,33 +32,26 @@ INSTALL
-------

Building and installing from source:
git clone https://github.com/mcpcpc/xwm
cd xwm
make
sudo make install

PATCHES
-------

For additional features, I have provided a respository for sharing
and hosting user created patches:
http://github.com/mcpcpc/xwm-community
$ git clone https://github.com/mcpcpc/xwm
$ cd xwm
$ make
$ sudo make install

EXAMPLES
--------

Checking the installed version of xwm:
xwm -v
$ xwm -v

Using startx to run xwm:
echo "exec xwm" > ~/.xinitrc
startx
$ echo "exec xwm" > ~/.xinitrc
$ startx

Using imagemagick to set a wallpaper:
display -window root background.png
$ display -window root background.png

Patching xwm:
patch -p0 < mypatch.patch
$ patch -p0 < mypatch.patch

DISCLAIMER
----------
Expand Down
2 changes: 1 addition & 1 deletion xwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ static int strcmp_c(char *str1, char *str2) {
int main(int argc, char *argv[]) {
int ret = 0;
if ((argc == 2) && (strcmp_c("-v", argv[1]) == 0)) {
ret = die("xwm-0.1.8, Copyright © 2021 Michael Czigler, MIT License\n");
ret = die("xwm-0.1.9, Copyright © 2021-2022 Michael Czigler, MIT License\n");
}
if ((ret == 0) && (argc != 1)) {
ret = die("usage: xwm [-v]\n");
Expand Down

0 comments on commit bbfeb31

Please sign in to comment.