diff options
author | wiz <wiz@pkgsrc.org> | 2006-09-03 14:27:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-09-03 14:27:59 +0000 |
commit | 08bcb52c62cccbc91f0e8931db173faa08484423 (patch) | |
tree | b6d97461c11bed701349bb0d96ac9ba3d4998d12 /wm/openbox/Makefile | |
parent | f05c2131061e7ade7cf7e735b0d016065075ef69 (diff) | |
download | pkgsrc-08bcb52c62cccbc91f0e8931db173faa08484423.tar.gz |
Update to 3.3:
3.3:
* Add a showDelay option for the dock.
* Fixed onscreen-keeping code which broke a bit in -rc2.
* Fix incorrect handling of window properties on 64 bit arches.
* Fix pixelsize being the same as size for pango, now it is correct.
* Fix drawing of icons taller than wide, eg gimp.
* Add a 'mirrorhorizontal' gradient, like horizontal but mirrored in the
center and 'splitvertical' which is like vertical but nonlinear in a fancy
way.
* Translations for de, hr and zh_TW added.
* Add initial per-app settings support.
* Fix some outstanding issues with 64-bit support.
* Add an optional delay for displaying submenus so you can move the mouse
over some entries without flashing each submenu.
* Plug some minor memleaks and fix minor bugs.
* Changed algorithm for downscaling window icons.
* New themes!
* Disable support for libstartup-notification by default, it doesn't seem
to work well.
* Allow disabling of duplicate window numbering by option titleNumber in
theme section.
* Add moverelative and resizerelative actions.
* Option middle for menus that make submenus be centered instead of aligned
by the top edge to the parent entry.
* Fix transient (ie dialog) windows being placed offscreen if the parent
is close to the edge of the screen.
3.3-rc2:
* Fixed some typos and errors in rc.xsd
* Add the noStrut option to the dock (to allow maximizing windows over it),
useful when it is not in the above layer.
* Fix transparent terminals not updating when using ToggleDecor.
* Yet more poking at the onscreen-keeping code, should now do the right
thing always.
* Add an option to hide disabled buttons instead of showing them as disabled.
* Hopefully fixed all the remaining pango issues. The new 1.10 release also
fixes shadows again.
* I think the lib linking in Makefile.am is right now, please tell me if it
isn't.
* Added a finnish translation and some minor updates to others.
* Fixed configure.ac so --enable-pango doesn't disable pango support or the
other way around, make enabled be default to get some extra testing.
3.3-rc1:
* Poked around a bit in the code that keeps windows onscreen, if you
are using xinerama, please let me know if things are better/worse/same.
* Add support for pango, disabled by default due to a bug in pango 1.8 that
breaks shadows, it works fine with 1.6.x though. Poke the pango developers
here http://bugzilla.gnome.org/show_bug.cgi?id=169622 if you want this
to be fixed.
* Made edge resist and Send/MoveToEdge not hit windows at layers below
the current one, add option to disable this behaviour.
* Fixed directional focus not getting trapped in omnipresent windows
* Fixed focus actions when bound to the mouse, normal focus cycle is always
linear and directional focus is totally disabled, it makes no sense
anyway, just move the mouse.
* Added an option for the raise/lower/raiselower/unshaderaise/shadelower
options called group that lets you bind stuff to raise/lower the whole
window group. <action name="raise"><group>yes</group></action>
* Add various new actions. I haven't updated the web docs yet, but I think
I managed to get all of them listed in rc.xsd.
* Bugs 1783, 1812, 1863, 1905, 2005, 1957 fixed.
* Some translations added. (ca, no, pl, ru, fr)
Diffstat (limited to 'wm/openbox/Makefile')
-rw-r--r-- | wm/openbox/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/wm/openbox/Makefile b/wm/openbox/Makefile index 703d09c0912..c735ece5846 100644 --- a/wm/openbox/Makefile +++ b/wm/openbox/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2006/04/13 18:23:38 jlam Exp $ +# $NetBSD: Makefile,v 1.31 2006/09/03 14:27:59 wiz Exp $ -DISTNAME= openbox-3.2 -PKGREVISION= 3 +DISTNAME= openbox-3.3 CATEGORIES= wm x11 MASTER_SITES= http://icculus.org/openbox/releases/ @@ -30,8 +29,10 @@ CONF_FILES+= ${EGDIR}/rc.xml ${PKG_SYSCONFDIR}/openbox/rc.xml .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" +.include "../../devel/pango/buildlink3.mk" .include "../../fonts/Xft2/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" -.include "../../x11/startup-notification/buildlink3.mk" +# disabled by default in 3.3 because "it doesn't seem to work well" +#.include "../../x11/startup-notification/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |