diff options
-rw-r--r-- | NEWS | 43 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 15 insertions, 30 deletions
@@ -1,33 +1,18 @@ | |||
1 | Here are some of the new features and bug fixes in this release. | 1 | This is mostly a bug fix release. For a more complete list and detailed |
2 | For a more complete list and detailed description of them see the documention | 2 | description of them see the documention and ChangeLog. |
3 | and ChangeLog. | ||
4 | 3 | ||
5 | News in 1.3.0: | 4 | Critical Bugfixes in 1.3.1: |
6 | * Added support for bidirectional text, #2801836. | 5 | * Fix for not hiding submenus if menuDelay is set. |
7 | * Allow to override 'Focus New Windows' via .fluxbox/apps | 6 | * Fix crash when moving transient windows (Dialogs) between Workspaces, |
8 | * New actions: | 7 | #3088856. |
9 | * ActivateTab | 8 | * Fix crash when SystemTray was rotated 90/270°, #3188223. |
10 | * ArrangeWindowsVertical | 9 | * Fix potential crash when gettting an UnmapEvent before a FocusEvent. |
11 | * New 'MoveN' and 'ClickN' action support for keys file | 10 | * Fix potential crash on accessing NULL-pointer. |
12 | * New focus model 'StrictMouseFocus'. This will affect focus when | ||
13 | closing, moving, lowering windows, changing desktops, etc, whereas the | ||
14 | 'MouseFocus' model will only change focus when you move the mouse. | ||
15 | * New "background: unset" property for use in overlays. | ||
16 | * Allowing relative paths for background images in style files. | ||
17 | * Allowing matching screen number in ClientPattern. | ||
18 | * Removed rootcommand from init, as fbsetbg is run automatically nowadays. | ||
19 | * Removed line style resources from init file. | ||
20 | |||
21 | Bug fixes: | ||
22 | * Fixed issues with round corners on restart, #2110455. | ||
23 | * Fix for flickering of shaped windows, #2131548 and #2001027. | ||
24 | * Key file parsing error for MacroCmd with unterminated {...} pairs. | ||
25 | * Empty submenus lead to misfunction of the 'HideMenus' command | ||
26 | * Fixed so fluxbox-update_configs does not wipe out keys file | ||
27 | * Fixed placement bug of maximized windows when moved out of a xinerama | ||
28 | screen. | ||
29 | * Handle result of DisplayString() correctly, #3136775. | ||
30 | * Prevent SIGFPE when using nxserver, #2813828. | ||
31 | 11 | ||
12 | Other Bugfixes: | ||
13 | * Fix wrong width calculation of Systemtray, #3150939. | ||
14 | * Fix initial placement of WindowMenu, #2731524. | ||
15 | * Fix incorrectly shown alpha values in Menus, #3187373. | ||
16 | * Fix render 'sunken' Textures correctly. | ||
32 | 17 | ||
33 | 18 | ||
diff --git a/configure.in b/configure.in index a5ee056..26fa1b5 100644 --- a/configure.in +++ b/configure.in | |||
@@ -1,7 +1,7 @@ | |||
1 | dnl Initialize autoconf and automake | 1 | dnl Initialize autoconf and automake |
2 | AC_INIT(src/main.cc) | 2 | AC_INIT(src/main.cc) |
3 | AC_PREREQ(2.52) | 3 | AC_PREREQ(2.52) |
4 | AM_INIT_AUTOMAKE(fluxbox,1.3.0, no-define) | 4 | AM_INIT_AUTOMAKE(fluxbox,1.3.1, no-define) |
5 | 5 | ||
6 | dnl Determine default prefix | 6 | dnl Determine default prefix |
7 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" | 7 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" |