update
This commit is contained in:
parent
9a9e59a233
commit
401f95cb2e
3 changed files with 14 additions and 8 deletions
|
@ -1,5 +1,12 @@
|
||||||
(Format: Year/Month/Day)
|
(Format: Year/Month/Day)
|
||||||
Changes for 0.1.13:
|
Changes for 0.1.13:
|
||||||
|
*02/11/17:
|
||||||
|
* Fixed bug in toggleTab
|
||||||
|
Window.cc
|
||||||
|
* Fixed alignment bug in Tab
|
||||||
|
Tab.cc
|
||||||
|
* Fixed HAVE_XFT_UTF8 check (Simon)
|
||||||
|
configure.in, XftFontImp.cc
|
||||||
*02/11/15:
|
*02/11/15:
|
||||||
* Fixed antialias bug in toolbar
|
* Fixed antialias bug in toolbar
|
||||||
* Fixed bug [ 627897 ] Clicking tab leads to crashing X-Server.
|
* Fixed bug [ 627897 ] Clicking tab leads to crashing X-Server.
|
||||||
|
|
5
TODO
5
TODO
|
@ -32,8 +32,6 @@
|
||||||
* Wheel-config support
|
* Wheel-config support
|
||||||
* Separator in the menus
|
* Separator in the menus
|
||||||
* Clean up in the global namespace
|
* Clean up in the global namespace
|
||||||
* Add "system menu" for minimized apps in the icon bar.
|
|
||||||
(Close, Kill, Send to, etc)
|
|
||||||
* "Iconify group"/group commands in Windowmenu
|
* "Iconify group"/group commands in Windowmenu
|
||||||
* Call and navigate menus from the keyboard (bind a menu to a key
|
* Call and navigate menus from the keyboard (bind a menu to a key
|
||||||
and use arrows to navigate)
|
and use arrows to navigate)
|
||||||
|
@ -45,5 +43,6 @@
|
||||||
emacs), needed for the next wish:
|
emacs), needed for the next wish:
|
||||||
* "Goto Frame" as Emacs C-x b, that show completions in the bar
|
* "Goto Frame" as Emacs C-x b, that show completions in the bar
|
||||||
* mouse button configure
|
* mouse button configure
|
||||||
|
* Check FluxboxWindow::toggleDecor
|
||||||
|
Needs cleaning and check functions that uses this one. Should function struct really be affected by this function.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
# DEALINGS IN THE SOFTWARE.
|
# DEALINGS IN THE SOFTWARE.
|
||||||
#
|
#
|
||||||
# $Id: fluxbox-generate_menu,v 1.11 2002/11/17 15:56:37 fluxgen Exp $
|
# $Id: fluxbox-generate_menu,v 1.12 2002/11/17 17:36:50 fluxgen Exp $
|
||||||
|
|
||||||
[ `id -u` -eq 0 ] && PATH=/bin:/usr/bin/:/usr/local/bin:/usr/X11R6/bin
|
[ `id -u` -eq 0 ] && PATH=/bin:/usr/bin/:/usr/local/bin:/usr/X11R6/bin
|
||||||
|
|
||||||
|
@ -178,8 +178,8 @@ if [ -w ${FILENAME} ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#packagedatadir
|
#packagedatadir
|
||||||
if [ ! -d "${PKGDATADIR}" ]; then
|
if [ ! -d "${PKGDATADIR}" -o "${PKGDATADIR}" = "" ]; then
|
||||||
if [ `uname` = "Linux" ];then
|
if [ `uname` = "Linux" ];then
|
||||||
PKGDATADIR=/usr/share
|
PKGDATADIR=/usr/share
|
||||||
else
|
else
|
||||||
PKGDATADIR=/usr/local/share
|
PKGDATADIR=/usr/local/share
|
||||||
|
@ -187,12 +187,12 @@ if [ ! -d "${PKGDATADIR}" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#gnome packagedatadir
|
#gnome packagedatadir
|
||||||
if [ ! -d "${GPKGDATADIR}" ]; then
|
if [ ! -d "${GPKGDATADIR}" -o "${GPKGDATADIR}" = "" ]; then
|
||||||
GPKGDATADIR=${PKGDATADIR}
|
GPKGDATADIR=${PKGDATADIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#kde packagedatadir
|
#kde packagedatadir
|
||||||
if [ ! -d "${KPKGDATADIR}" ]; then
|
if [ ! -d "${KPKGDATADIR}" -o "${KPKGDATADIR}" = "" ]; then
|
||||||
KPKGDATADIR=${PKGDATADIR}
|
KPKGDATADIR=${PKGDATADIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue