diff options
author | rathnor <rathnor> | 2003-06-12 15:12:19 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-06-12 15:12:19 (GMT) |
commit | e139cbb0283f7480fc26c58dc3f8a48e69011eab (patch) | |
tree | 2058a848943cb008dfe17270ad49853747212481 /ChangeLog | |
parent | 94f1c164161e8faaf064d8b7cdfe36c9ca978055 (diff) | |
download | fluxbox-e139cbb0283f7480fc26c58dc3f8a48e69011eab.zip fluxbox-e139cbb0283f7480fc26c58dc3f8a48e69011eab.tar.bz2 |
add regular expression support in remember capabilities
see ChangeLog for details
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -1,4 +1,25 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.4: | ||
3 | *03/06/13: | ||
4 | * Regular expression support for remember (Simon) | ||
5 | Also ability to limit number of matches for a given rule | ||
6 | Also ability to match several different window attributes | ||
7 | Can disable in compile using --disable-regexp (will just do plain | ||
8 | string equality then) | ||
9 | - General format is: | ||
10 | [app] (property=expr) ... {number} | ||
11 | If "property=" is excluded, the name property is assumed. | ||
12 | If {number} is excluded, 0 = no limit is assumed. | ||
13 | - Current available properties are: | ||
14 | * name -> the name of the window - the first field of WM_CLASS | ||
15 | * class -> the class of the window - the second field of WM_CLASS | ||
16 | * title -> the title of the window - the WM_NAME property | ||
17 | - e.g. [app] (*[tT]erm) {2} | ||
18 | will match anything ending with term, for up to 2 instances | ||
19 | - e.g. [app] (title=.*gaim.*) | ||
20 | will match anything with gaim in the title ("gaim", "the gaim | ||
21 | window", etc. | ||
22 | RegExp.hh/cc ClientPattern.hh/cc configure.in Makefile.am Remember.hh/cc WinClient.hh/cc StringUtil.hh/cc | ||
2 | Changes for 0.9.3: | 23 | Changes for 0.9.3: |
3 | *03/06/08: | 24 | *03/06/08: |
4 | * Add Reconfigure and Restart Key actions, thanks Jann Fisher (Simon) | 25 | * Add Reconfigure and Restart Key actions, thanks Jann Fisher (Simon) |