aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0e38acf..5971f05 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,20 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.0.1: 2Changes for 1.0.1:
3*07/11/22: 3*07/11/22:
4 * Added some new special keys to the keys file: FocusIn, FocusOut, MouseOver,
5 MouseOut, ChangeWorkspace (Mark)
6 - FocusIn/FocusOut correspond to a window gaining or losing focus, e.g. the
7 following will raise all xterms when one gains focus:
8 FocusIn :If {Matches (xterm)} {Raise (xterm)} {}
9 - MouseOver/MouseOut correspond to the mouse moving over the window or
10 toolbar (when used with OnToolbar) -- OnDesktop not yet supported, e.g.
11 the following will unshade a window when you move your mouse over it with
12 alt pressed:
13 Mod1 MouseOver :If {Matches (shaded=yes)} {Shade} {}
14 - ChangeWorkspace corresponds to the workspace being changed, e.g. the
15 following will set a different wallpaper for each workspace:
16 ChangeWorkspace :Exec fbsetbg ~/.fluxbox/bg$(xprop -root _NET_CURRENT_DESKTOP | awk '{print $3}').png
17 Keys.cc Window.cc Screen.cc Toolbar.cc
4 * Added translations for zh_TW (thanks Wei-Lun Chao) 18 * Added translations for zh_TW (thanks Wei-Lun Chao)
5 * Fix division by 0 error when resize increments are set to 0 by an 19 * Fix division by 0 error when resize increments are set to 0 by an
6 application, bug #1836182 20 application, bug #1836182