diff options
author | Mathias Gumz <akira@fluxbox.org> | 2015-01-03 14:43:33 (GMT) |
---|---|---|
committer | Mathias Gumz <akira@fluxbox.org> | 2015-01-03 14:43:33 (GMT) |
commit | 1a5d52481c8e2edbbf9e44725346e3e8cc5f6dac (patch) | |
tree | 85dfa73901553478946c7cce75a13363ddc6fd0f | |
parent | 495271853665243852bf3693567bd5ca33c92cf8 (diff) | |
download | fluxbox-1a5d52481c8e2edbbf9e44725346e3e8cc5f6dac.zip fluxbox-1a5d52481c8e2edbbf9e44725346e3e8cc5f6dac.tar.bz2 |
Preparation of release 1.3.6
-rw-r--r-- | ChangeLog | 76 | ||||
-rw-r--r-- | NEWS | 20 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 94 insertions, 4 deletions
@@ -1,6 +1,82 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | 2 | ||
3 | ----------------------------- | 3 | ----------------------------- |
4 | Changes for 1.3.6 | ||
5 | |||
6 | *15/01/02: | ||
7 | * Bugfix: Corruption of fbrun-history | ||
8 | (closes #72, #73 and patch #162, thanks to Mattias Guns, | ||
9 | 'Nable 80' and Ulrich Eckhardt) | ||
10 | |||
11 | *14/09/29: | ||
12 | * Feature: Treat Windows having WM_CLASS == "DockApp" set like DockApps | ||
13 | |||
14 | *14/09/28: | ||
15 | * Bugfix: Fix border width for relative resizes (Thanks to Arkadiusz Bokowy) | ||
16 | |||
17 | *14/09/14: | ||
18 | * Bugfix: Check correct XClassHint property (Thanks to Arkadiusz Bokowy) | ||
19 | |||
20 | *14/07/22: | ||
21 | * Bugfix: Fix _NET_MOVERESIZE_WINDOW resize issue, closes #1108 | ||
22 | |||
23 | *14/05/12: | ||
24 | * Bugfix: Fix clocktool and other entities lagging behind the systemclock. | ||
25 | |||
26 | *14/04/11: | ||
27 | * Build-System: Modernized variant of the autotools-based build system | ||
28 | fluxbox uses. Many thanks to Sami Kerola. | ||
29 | |||
30 | 14/04/09: | ||
31 | * Bugfix: Fix excessive loading of the keys file caused by xmodmap | ||
32 | |||
33 | 14/02/18: | ||
34 | * Bugfix: Fix race condition on shutdown | ||
35 | |||
36 | 14/02/05: | ||
37 | * Translation: Fix encoding of the Bulgarian translation | ||
38 | (Thanks Peter Pentchev) | ||
39 | |||
40 | 13/09/15: | ||
41 | * Bugfix: Fix integer math which caused problems with Focus, Resize and | ||
42 | Move commands. (Thanks Amadeusz S¿awi¿ski) | ||
43 | |||
44 | 13/08/02: | ||
45 | * Feature: Add 'ArrangeWindowsStack' (Thanks John Sennesael) | ||
46 | * Bugfix: Fix lost keypresses after workspace change (#1067) | ||
47 | |||
48 | 13/07/14: | ||
49 | * Translation: Update to Japanese translation (Thanks Takeshi Hamasaki) | ||
50 | |||
51 | 13/06/29: | ||
52 | * Code cleanup: Adjust use of std::equal_to to be more portable | ||
53 | with other implementations of STL (Thanks Raphael Kubo da Costa) | ||
54 | * Bugfix: Fix detection of $HOME folder | ||
55 | |||
56 | 13/06/18: | ||
57 | * Speedup: Use binary search to find longest possible text | ||
58 | to render. A malignant webpage could set a document title with something | ||
59 | like this: document.title = new Array(4999).join(".") and then fluxbox | ||
60 | would waste lots of cycles upon detecting the renderable width for that | ||
61 | title. Closes #1090 | ||
62 | * Bugfix: Fix maximum length for text. XGlyphInfo.xOff is a signed short | ||
63 | and thus it handles "only" ~32k pixels. A monospace font with a font-size | ||
64 | of 10 pixels will overflow after ~ 3276 glyphs. | ||
65 | |||
66 | 13/05/16: | ||
67 | * Bugfix: Fix Window-Motion-Outline | ||
68 | |||
69 | 13/03/18: | ||
70 | * Translation: Update to Hebrew translation (Thanks Isratine Citizen) | ||
71 | |||
72 | 13/02/27: | ||
73 | * Feature: Workspace switching via toolbar | ||
74 | |||
75 | 13/02/26: | ||
76 | * Bugfix: Fix initial window placement for better head detection | ||
77 | (Thanks Peter Hercek) | ||
78 | |||
79 | ----------------------------- | ||
4 | Changes for 1.3.5 | 80 | Changes for 1.3.5 |
5 | 81 | ||
6 | *13/02/13: | 82 | *13/02/13: |
@@ -1,5 +1,19 @@ | |||
1 | Version 1.3.5 is a bug fix release. | 1 | Version 1.3.6 is a bug fix release. |
2 | 2 | ||
3 | Critical Bugfixes in 1.3.5: | 3 | Critical Bugfixes: |
4 | * Reenabled 'If' 'Or' 'And' actions again | 4 | * Clocktool problems |
5 | * Rendering long text | ||
6 | * Race condition on shutdown | ||
7 | * Lost keypresses after workspace switch | ||
8 | * Corruption of fbrun-history | ||
5 | 9 | ||
10 | Minor Bugfixes: | ||
11 | * Resize and Move problems | ||
12 | |||
13 | Features: | ||
14 | * 'ArrangeWindowsStack' action | ||
15 | * Treat Windows with WM_CLASS == "DockApp" as DockApps | ||
16 | |||
17 | Minor: | ||
18 | * Updated translations (Bulgarian, Hebrew, Japanese) | ||
19 | * Updated build system | ||
diff --git a/configure.ac b/configure.ac index de6db38..65ee23e 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,7 +1,7 @@ | |||
1 | dnl Initialize autoconf and automake | 1 | dnl Initialize autoconf and automake |
2 | AC_PREREQ([2.52]) | 2 | AC_PREREQ([2.52]) |
3 | AC_INIT([fluxbox], | 3 | AC_INIT([fluxbox], |
4 | [1.3.5], | 4 | [1.3.6], |
5 | [fluxbox-devel@lists.sourceforge.net], [], | 5 | [fluxbox-devel@lists.sourceforge.net], [], |
6 | [http://fluxbox.org/]) | 6 | [http://fluxbox.org/]) |
7 | AC_CONFIG_SRCDIR([src/fluxbox.cc]) | 7 | AC_CONFIG_SRCDIR([src/fluxbox.cc]) |