aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-11-17 17:36:50 (GMT)
committerfluxgen <fluxgen>2002-11-17 17:36:50 (GMT)
commit401f95cb2e91b2bbadb030939da5289134c3db74 (patch)
treea7b7f49885134c42625530bd2e6bfd5548c21ad0
parent9a9e59a233844546f0d923989f65e416ff350ee0 (diff)
downloadfluxbox-401f95cb2e91b2bbadb030939da5289134c3db74.zip
fluxbox-401f95cb2e91b2bbadb030939da5289134c3db74.tar.bz2
update
-rw-r--r--ChangeLog7
-rw-r--r--TODO5
-rwxr-xr-xutil/fluxbox-generate_menu10
3 files changed, 14 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 49cb78f..8aac709 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
1(Format: Year/Month/Day) 1(Format: Year/Month/Day)
2Changes for 0.1.13: 2Changes for 0.1.13:
3*02/11/17:
4 * Fixed bug in toggleTab
5 Window.cc
6 * Fixed alignment bug in Tab
7 Tab.cc
8 * Fixed HAVE_XFT_UTF8 check (Simon)
9 configure.in, XftFontImp.cc
3*02/11/15: 10*02/11/15:
4 * Fixed antialias bug in toolbar 11 * Fixed antialias bug in toolbar
5 * Fixed bug [ 627897 ] Clicking tab leads to crashing X-Server. 12 * Fixed bug [ 627897 ] Clicking tab leads to crashing X-Server.
diff --git a/TODO b/TODO
index 6728653..0cb6084 100644
--- a/TODO
+++ b/TODO
@@ -32,8 +32,6 @@
32* Wheel-config support 32* Wheel-config support
33* Separator in the menus 33* Separator in the menus
34* Clean up in the global namespace 34* Clean up in the global namespace
35* Add "system menu" for minimized apps in the icon bar.
36 (Close, Kill, Send to, etc)
37* "Iconify group"/group commands in Windowmenu 35* "Iconify group"/group commands in Windowmenu
38* Call and navigate menus from the keyboard (bind a menu to a key 36* Call and navigate menus from the keyboard (bind a menu to a key
39 and use arrows to navigate) 37 and use arrows to navigate)
@@ -45,5 +43,6 @@
45 emacs), needed for the next wish: 43 emacs), needed for the next wish:
46* "Goto Frame" as Emacs C-x b, that show completions in the bar 44* "Goto Frame" as Emacs C-x b, that show completions in the bar
47* mouse button configure 45* mouse button configure
48 46* Check FluxboxWindow::toggleDecor
47 Needs cleaning and check functions that uses this one. Should function struct really be affected by this function.
49 48
diff --git a/util/fluxbox-generate_menu b/util/fluxbox-generate_menu
index 09a2071..80f0e5b 100755
--- a/util/fluxbox-generate_menu
+++ b/util/fluxbox-generate_menu
@@ -22,7 +22,7 @@
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23# DEALINGS IN THE SOFTWARE. 23# DEALINGS IN THE SOFTWARE.
24# 24#
25# $Id: fluxbox-generate_menu,v 1.11 2002/11/17 15:56:37 fluxgen Exp $ 25# $Id: fluxbox-generate_menu,v 1.12 2002/11/17 17:36:50 fluxgen Exp $
26 26
27[ `id -u` -eq 0 ] && PATH=/bin:/usr/bin/:/usr/local/bin:/usr/X11R6/bin 27[ `id -u` -eq 0 ] && PATH=/bin:/usr/bin/:/usr/local/bin:/usr/X11R6/bin
28 28
@@ -178,8 +178,8 @@ if [ -w ${FILENAME} ]; then
178fi 178fi
179 179
180#packagedatadir 180#packagedatadir
181if [ ! -d "${PKGDATADIR}" ]; then 181if [ ! -d "${PKGDATADIR}" -o "${PKGDATADIR}" = "" ]; then
182 if [ `uname` = "Linux" ];then 182 if [ `uname` = "Linux" ];then
183 PKGDATADIR=/usr/share 183 PKGDATADIR=/usr/share
184 else 184 else
185 PKGDATADIR=/usr/local/share 185 PKGDATADIR=/usr/local/share
@@ -187,12 +187,12 @@ if [ ! -d "${PKGDATADIR}" ]; then
187fi 187fi
188 188
189#gnome packagedatadir 189#gnome packagedatadir
190if [ ! -d "${GPKGDATADIR}" ]; then 190if [ ! -d "${GPKGDATADIR}" -o "${GPKGDATADIR}" = "" ]; then
191 GPKGDATADIR=${PKGDATADIR} 191 GPKGDATADIR=${PKGDATADIR}
192fi 192fi
193 193
194#kde packagedatadir 194#kde packagedatadir
195if [ ! -d "${KPKGDATADIR}" ]; then 195if [ ! -d "${KPKGDATADIR}" -o "${KPKGDATADIR}" = "" ]; then
196 KPKGDATADIR=${PKGDATADIR} 196 KPKGDATADIR=${PKGDATADIR}
197fi 197fi
198 198