diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | TODO | 5 | ||||
-rwxr-xr-x | util/fluxbox-generate_menu | 10 |
3 files changed, 14 insertions, 8 deletions
@@ -1,5 +1,12 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.1.13: | 2 | Changes 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. |
@@ -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 | |||
178 | fi | 178 | fi |
179 | 179 | ||
180 | #packagedatadir | 180 | #packagedatadir |
181 | if [ ! -d "${PKGDATADIR}" ]; then | 181 | if [ ! -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 | |||
187 | fi | 187 | fi |
188 | 188 | ||
189 | #gnome packagedatadir | 189 | #gnome packagedatadir |
190 | if [ ! -d "${GPKGDATADIR}" ]; then | 190 | if [ ! -d "${GPKGDATADIR}" -o "${GPKGDATADIR}" = "" ]; then |
191 | GPKGDATADIR=${PKGDATADIR} | 191 | GPKGDATADIR=${PKGDATADIR} |
192 | fi | 192 | fi |
193 | 193 | ||
194 | #kde packagedatadir | 194 | #kde packagedatadir |
195 | if [ ! -d "${KPKGDATADIR}" ]; then | 195 | if [ ! -d "${KPKGDATADIR}" -o "${KPKGDATADIR}" = "" ]; then |
196 | KPKGDATADIR=${PKGDATADIR} | 196 | KPKGDATADIR=${PKGDATADIR} |
197 | fi | 197 | fi |
198 | 198 | ||