diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -1,5 +1,43 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.14: | 2 | Changes for 0.9.14: |
3 | *05/06/03: | ||
4 | * Massive change of font handling (Mathias) | ||
5 | - Usage of xft-fonts is prefered, except a font-description starts with '-' | ||
6 | - Removed "antialias"-option completly, to enable/disable "antialias" | ||
7 | use either <fontname>:antialias=<bool> in the style or use | ||
8 | Xft.antialias: <bool> in your .Xdefaults | ||
9 | - Added new styleresources: | ||
10 | *.font.effect: <halo|shadow> | ||
11 | *.font.shadow.x : <int> - shadow x offset | ||
12 | *.font.shadow.y : <int> - shadow y offset | ||
13 | *.font.shadow.color : <color> - color of shadow | ||
14 | *.font.halo.color : <color> - color of halo | ||
15 | - Removed 'shadow' and 'halo' options from fontdefinitions: | ||
16 | !! Style authors have to update their styles !! | ||
17 | - Simplified XmbFontImp to not try all possible fonts to match locale | ||
18 | - Style authors may specify multiple fonts: | ||
19 | <font1>|<font2>|<font3> | ||
20 | if loading of font1 fails, fluxbox probes <font2>, etc. The last font is | ||
21 | "fixed". Hints for style authors: | ||
22 | - if xft tries to load a font it will _ALWAYS_ return a valid font, | ||
23 | it doesnt have to look like the one you want to have, read more | ||
24 | about it: http://fontconfig.org/fontconfig-user.html | ||
25 | - export XFT_DEBUG=1 before running fluxbox helps to see | ||
26 | which fonts are picked. | ||
27 | eg: | ||
28 | *.font: Verdana,Arial-12:antialias=true|-artwiz-snap-*- | ||
29 | if fluxbox is compiled with xft this will NEVER try to | ||
30 | load "-artwiz-snap-*-" since xft gives for sure a font, | ||
31 | most likely Verdana or Arial but noone knows. So, if | ||
32 | fluxbox has no xft support the first fontpattern fails | ||
33 | and fluxbox tries the next one, which might be successful. | ||
34 | if everything fails, it will use "fixed" | ||
35 | - Added caching of fonts, fonts are only loaded once. | ||
36 | - Fixed #1090902 | ||
37 | ToolFactory.cc TextTheme.hh/cc IconbarTheme.cc Screen.hh/cc | ||
38 | FbTk/Font.hh/cc FbTk/XftFontImp.cc FbTk/XmbFontImp.cc | ||
39 | FbTk/MenuTheme.cc FbTk/Texture.cc FbTk/ThemeItems.cc | ||
40 | fbrun/main.cc fbrun/FbRun.cc | ||
3 | *05/06/02: | 41 | *05/06/02: |
4 | * Fixed _BLACKBOX_NOTIFY_WINDOW_ADD issue (thanx Vadim) | 42 | * Fixed _BLACKBOX_NOTIFY_WINDOW_ADD issue (thanx Vadim) |
5 | _BLACKBOX_NOTIFY_WINDOW_ADD was emited before _NET_CLIENT_LIST | 43 | _BLACKBOX_NOTIFY_WINDOW_ADD was emited before _NET_CLIENT_LIST |