Increment version to 0.6, add statusbar to mkpatch, update TODO

This commit is contained in:
speediegq 2022-10-08 18:10:26 +02:00
parent 781225febc
commit fd968ecc2a
4 changed files with 8 additions and 4 deletions

View file

@ -66,6 +66,8 @@ install: all
[ -f docs/keybinds.def.h ] || cp -f keybinds.h docs/keybinds.def.h || :
[ -f docs/actions.def.h ] || cp -f actions.h docs/actions.def.h || :
[ -f docs/colors.def.h ] || cp -f colors.h docs/colors.def.h || :
[ -f docs/colors.def.h ] || cp -f colors.h docs/colors.def.h || :
[ -f docs/statusbar.def.h ] || cp -f statusbar.h docs/statusbar.def.h || :
[ -f docs/status.def ] || cp -f status docs/status.def || :
cp -f docs/keybinds ${DESTDIR}${PREFIX}/share/speedwm/keybinds
cp -f docs/dependencies ${DESTDIR}${PREFIX}/share/speedwm/dependencies

4
TODO
View file

@ -1,7 +1,5 @@
speedwm 0.5 to-do list
speedwm 0.6 to-do list
- Fix full screen when using rounded corners (Temporary solution: Disable roundedcorners in speedwmrc)
- Finish clickable bar modules
- Release 0.6 (After clickable bar modules have been worked out)
- Escape special characters in status bar (such as &)
- Add compatibility with the tcc compiler (Main issue is the transparency)
- Add awesomebar (show all windows in taskbar) toggle (int hideothertitle?) Check musl, NixOS and BSD support

View file

@ -4,7 +4,7 @@
###################################################################################
# speedwm version
VERSION = 0.5
VERSION = 0.6
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

View file

@ -16,6 +16,7 @@ CP() {
cp docs/rules.def.h /tmp/rules.h
cp docs/actions.def.h /tmp/actions.h
cp docs/colors.def.h /tmp/colors.h
cp docs/statusbar.def.h /tmp/statusbar.h
cp docs/status.def /tmp/status
}
@ -33,6 +34,7 @@ MKDIFF() {
diff -up ./rules.h $CD/rules.h > $CD/rules.h_settings.patch && echo "Created rules.h patch (see rules.h_settings.patch)"
diff -up ./actions.h $CD/actions.h > $CD/actions.h_settings.patch && echo "Created actions.h patch (see actions.h_settings.patch)"
diff -up ./colors.h $CD/colors.h > $CD/colors.h_settings.patch && echo "Created colors.h patch (see colors.h_settings.patch)"
diff -up ./statusbar.h $CD/statusbar.h > $CD/statusbar.h_settings.patch && echo "Created statusbar.h patch (see statusbar.h_settings.patch)"
diff -up ./status $CD/status > $CD/status_settings.patch && echo "Created status patch (see status_settings.patch)"
# Delete
@ -57,6 +59,7 @@ if [ "$1" = "-p" ]; then
patch < rules.h_settings.patch
patch < actions.h_settings.patch
patch < colors.h_settings.patch
patch < statusbar.h_settings.patch
patch < status_settings.patch
cd $CD
exit 0
@ -75,6 +78,7 @@ if [ "$1" = "-r" ]; then
patch -R < rules.h_settings.patch
patch -R < actions.h_settings.patch
patch -R < colors.h_settings.patch
patch -R < statusbar.h_settings.patch
patch -R < status_settings.patch
cd $CD
exit 0