aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog76
-rw-r--r--NEWS20
-rw-r--r--configure.ac2
3 files changed, 94 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7c4350f..8c6b0ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,82 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2 2
3----------------------------- 3-----------------------------
4Changes 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
3014/04/09:
31 * Bugfix: Fix excessive loading of the keys file caused by xmodmap
32
3314/02/18:
34 * Bugfix: Fix race condition on shutdown
35
3614/02/05:
37 * Translation: Fix encoding of the Bulgarian translation
38 (Thanks Peter Pentchev)
39
4013/09/15:
41 * Bugfix: Fix integer math which caused problems with Focus, Resize and
42 Move commands. (Thanks Amadeusz S¿awi¿ski)
43
4413/08/02:
45 * Feature: Add 'ArrangeWindowsStack' (Thanks John Sennesael)
46 * Bugfix: Fix lost keypresses after workspace change (#1067)
47
4813/07/14:
49 * Translation: Update to Japanese translation (Thanks Takeshi Hamasaki)
50
5113/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
5613/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
6613/05/16:
67 * Bugfix: Fix Window-Motion-Outline
68
6913/03/18:
70 * Translation: Update to Hebrew translation (Thanks Isratine Citizen)
71
7213/02/27:
73 * Feature: Workspace switching via toolbar
74
7513/02/26:
76 * Bugfix: Fix initial window placement for better head detection
77 (Thanks Peter Hercek)
78
79-----------------------------
4Changes for 1.3.5 80Changes for 1.3.5
5 81
6*13/02/13: 82*13/02/13:
diff --git a/NEWS b/NEWS
index 8a635bf..5572be7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,19 @@
1Version 1.3.5 is a bug fix release. 1Version 1.3.6 is a bug fix release.
2 2
3Critical Bugfixes in 1.3.5: 3Critical 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
10Minor Bugfixes:
11 * Resize and Move problems
12
13Features:
14 * 'ArrangeWindowsStack' action
15 * Treat Windows with WM_CLASS == "DockApp" as DockApps
16
17Minor:
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 @@
1dnl Initialize autoconf and automake 1dnl Initialize autoconf and automake
2AC_PREREQ([2.52]) 2AC_PREREQ([2.52])
3AC_INIT([fluxbox], 3AC_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/])
7AC_CONFIG_SRCDIR([src/fluxbox.cc]) 7AC_CONFIG_SRCDIR([src/fluxbox.cc])