--- compiz-0.0.13.38.orig/debian/docs +++ compiz-0.0.13.38/debian/docs @@ -0,0 +1,2 @@ +README +TODO --- compiz-0.0.13.38.orig/debian/control +++ compiz-0.0.13.38/debian/control @@ -0,0 +1,32 @@ +Source: compiz +Section: x11 +Priority: optional +Maintainer: Quinn Storm +Build-Depends: debhelper (>= 4.0.0), intltool, autotools-dev, pkg-config, libgnome-desktop-dev, libcairo2-dev, libpng12-dev, libxdamage-dev,libxcomposite-dev, libxfixes-dev, libxrandr-dev, libice-dev, libsm-dev, libstartup-notification0-dev, libgl1-mesa-dev, libgconf2-dev, libglib2.0-dev, libgtk2.0-dev, libwnck-dev, libpango1.0-dev, gnome-control-center, libgnomeui-dev, capplets-data, x11proto-gl-dev, libgnome-window-settings-dev | capplets-data (<< 1:2.15.0) +Standards-Version: 3.7.2 + +Package: compiz +Architecture: any +Depends: compiz-core, compiz-plugins (>= 0.2) +Recommends: compiz-gnome, cgwd (>= 0.59) +Description: OpenGL composition manager - transitional package + this package depends on compiz-core and compiz-plugins, to ease + transition to the new system + +Package: compiz-core +Architecture: any +Depends: libcairo2, libpng12-0, libxdamage1, libxcomposite1, libxfixes3, libxrandr2, libice6, libsm6, libstartup-notification0, libgl1-mesa, librsvg2-2 +Conflicts: compiz-plugins (<< 0.1) +Replaces: compiz (<= 0.0.2-4ubuntu2) +Description: OpenGL composition manager - core binaries et al + compiz provides support for compositing X windows using OpenGL. This allows + clients to modify what is drawn to the screen before it happens and for this + to be hardware accelerated. + +Package: compiz-gnome +Architecture: any +Depends: libgnome-window-settings1 | capplets-data (<< 1:2.15.0), libgconf2-4, libgtk2.0-0, libwnck18, compiz-core (= ${Source-Version}) +Replaces: compiz (<= 0.0.2-4ubuntu2) +Description: Gnome window decorator and libraries for Compiz + This is a gnome window decorator that can be used with the compiz composition + and window manager. --- compiz-0.0.13.38.orig/debian/compiz.wrapper +++ compiz-0.0.13.38/debian/compiz.wrapper @@ -0,0 +1,11 @@ +#!/bin/bash + +if [ -f /usr/lib/nvidia/libGL.so.1.2.xlibmesa ]; then + LD_PRELOAD=/usr/lib/nvidia/libGL.so.1.2.xlibmesa compiz.real $@ & exit; +fi + +if [ -f /usr/lib/fglrx/libGL.so.1.2.xlibmesa ]; then + LD_PRELOAD=/usr/lib/fglrx/libGL.so.1.2.xlibmesa compiz.real $@ & exit; +fi + +compiz.real $@ & exit; --- compiz-0.0.13.38.orig/debian/rules +++ compiz-0.0.13.38/debian/rules @@ -0,0 +1,106 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + chmod a+x configure + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/compiz.sgml > compiz.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + rm -f config.guess config.sub + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/compiz. + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + mv $(CURDIR)/debian/tmp/usr/bin/compiz $(CURDIR)/debian/tmp/usr/bin/compiz.real + cp $(CURDIR)/debian/compiz.wrapper $(CURDIR)/debian/tmp/usr/bin/compiz + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installchangelogs ChangeLog -a + dh_installdocs -a + dh_installexamples -a + dh_install -a +# dh_installmenu -a +# dh_installdebconf -a +# dh_installlogrotate -a +# dh_installemacsen -a +# dh_installpam -a +# dh_installmime -a +# dh_installinit -a +# dh_installcron -a +# dh_installinfo -a + dh_installman -a + dh_link -a + dh_strip -a + dh_compress -a + dh_fixperms -a +# dh_perl -a +# dh_python -a +# dh_makeshlibs -a + dh_installdeb -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- compiz-0.0.13.38.orig/debian/changelog +++ compiz-0.0.13.38/debian/changelog @@ -0,0 +1,672 @@ +compiz (0.0.13.38-0ubuntu3) edgy; urgency=low + + * debian/control: + + Correct the Replaces for compiz on compiz-core and compiz-gnome + + -- Matthias Urlichs Tue, 29 Aug 2006 06:07:58 +0200 + +compiz (0.0.13.38-0ubuntu2) edgy; urgency=low + + * debian/control: + + Add correct Replaces for compiz on compiz-core and compiz-gnome + + -- Sebastian Dröge Sun, 27 Aug 2006 18:53:30 +0200 + +compiz (0.0.13.38-0ubuntu1) edgy; urgency=low + + [ Quinn Storm ] + * speed fix patch from forums, hope it works well, is supposed to fix to the + way it was in 13.11 + * now passes lintian! + + [ Matthew Garrett ] + * Targetted at Ubuntu repository, re-add Ubuntu logo + + -- Matthew Garrett Sat, 26 Aug 2006 04:17:16 +0100 + +compiz (0.0.13.37-0ubuntu4) dapper; urgency=low + + * only bumping minor since this is a bugfix + + -- Quinn Storm Wed, 23 Aug 2006 16:01:15 -0400 + +compiz (0.0.13.37-0ubuntu3) dapper; urgency=low + + * fix libgnome-window-settings dependancy to say libgnome-window-settings1 + + -- Quinn Storm Wed, 23 Aug 2006 04:40:42 -0400 + +compiz (0.0.13.37-0ubuntu2) dapper; urgency=low + + * packaging fix for dumbness + + -- Quinn Storm Tue, 22 Aug 2006 23:31:49 -0400 + +compiz (0.0.13.37-0ubuntu1) dapper; urgency=low + + * properly set version using debian/changelog + + -- Quinn Storm Tue, 22 Aug 2006 18:44:33 -0400 + +compiz (0.0.13.36-0ubuntu1) dapper; urgency=low + + * upstream updates - set tooltip type hint in g-w-d, writePngToFile + function, sync request for override-redirect, typo fix, useless code + removal, add CompStateCommit(enter key) + + -- Quinn Storm Tue, 22 Aug 2006 17:58:46 -0400 + +compiz (0.0.13.35-0ubuntu1) dapper; urgency=low + + * de-stupify build + + -- Quinn Storm Tue, 22 Aug 2006 01:30:30 -0400 + +compiz (0.0.13.35) dapper; urgency=low + + * updating build system to be more sensible + + -- Quinn Storm Mon, 21 Aug 2006 22:53:41 -0400 + +compiz (0.0.13-0quinn34) dapper; urgency=low + + * semi-hackish fix for window-types issues + + -- Quinn Storm Sun, 20 Aug 2006 07:03:01 -0400 + +compiz (0.0.13-0quinn33) dapper; urgency=low + + * add put plugin + * fix gnome-window-decorator (by fixing decoration plugin & changing how + cgwd works with it) + + -- Quinn Storm Sat, 19 Aug 2006 21:04:28 -0400 + +compiz (0.0.13-0quinn32) dapper; urgency=low + + * update to reflection plugin + * more updates to decoration plugin, needed for cgwd 0.56 + * change default trailfocus settings + * gl_include_inferiors patch + * fbconfig-depth patch + + -- Quinn Storm Thu, 17 Aug 2006 23:26:45 -0400 + +compiz (0.0.13-0quinn31) dapper; urgency=low + + * patch to decoration to (mostly) properly handle transform matrices + + -- Quinn Storm Sat, 12 Aug 2006 06:26:01 -0400 + +compiz (0.0.13-0quinn30) dapper; urgency=low + + * added latest blur, reflection + * patched blur & reflection to not crash + * added the SampleMap.png to the dist + * made it default in reflection + + -- Quinn Storm Fri, 11 Aug 2006 18:45:04 -0400 + +compiz (0.0.13-0quinn29) dapper; urgency=low + + * build system update + * move to librsvg + + -- Quinn Storm Tue, 8 Aug 2006 01:25:53 -0400 + +compiz (0.0.13-0quinn28) dapper; urgency=low + + * adding Blur plugin! + * bugfixes to showdesktop + + -- Quinn Storm Sun, 6 Aug 2006 14:44:56 -0400 + +compiz (0.0.13-0quinn27) dapper; urgency=low + + * just some little patches, not even sure what all + * I know at least the desktop-slide patch + + -- Quinn Storm Thu, 3 Aug 2006 14:53:02 -0400 + +compiz (0.0.13-0quinn26) dapper; urgency=low + + * rotate-with-mousewheel-on-desktop is back. + * bs is back. + * zoom min/max/step is back + * neg is back + * raise-window is back + * thanks to moppsy, arturh85, et. al. for their quick work + + -- Quinn Storm Thu, 27 Jul 2006 17:54:50 -0400 + +compiz (0.0.13-0quinn25) dapper; urgency=low + + * added showdesktop plugin + * stripped showdesktop functionality out of scale + + -- Quinn Storm Wed, 26 Jul 2006 09:37:03 -0400 + +compiz (0.0.13-0quinn24) dapper; urgency=low + + * bugfixes to rotate and others from upstream + * thanks to upstream the following has happened, but is likely easy to fix + * -- Zoom now doesn't zoom 'out' (it just works as it used to) + * -- Snap-by-default in wobbly doesn't really work (should be easy to fix) + * -- widget, neg, and bs have been removed from the default build + * -- -- this is because these plugins use the old binding system which + * -- -- is now removed upstream. it will be easy to change them to actions + * I know this is controversial but I'm choosing to release this version + * I hope this will motivate people to work on these "bugs". + + -- Quinn Storm Tue, 25 Jul 2006 17:56:27 -0400 + +compiz (0.0.13-0quinn23) dapper; urgency=low + + * fixes to scale and move + + -- Quinn Storm Mon, 24 Jul 2006 03:12:18 -0400 + +compiz (0.0.13-0quinn22) dapper; urgency=low + + * upstream stuff + + -- Quinn Storm Fri, 21 Jul 2006 05:18:11 -0400 + +compiz (0.0.13-0quinn21) dapper; urgency=low + + * remove patched g-w-d, in favor of cgwd + * to use cgwd, install packages 'cgwd' and 'gcompizthemer' and if you like, + 'gcompizthemer-themes' (cgwd >= 0.1, gcompizthemer >= 0.13, + gcompizthemer-themes >= 0.5) + + -- Quinn Storm Fri, 21 Jul 2006 02:42:38 -0400 + +compiz (0.0.13-0quinn20) dapper; urgency=low + + * d'oh, I should really test upstream stuff more rigorously before I release + * -- that means, this build fixes the stupid mistake in the last build where + * -- gconf doesn't pick up edge options on-load + + -- Quinn Storm Wed, 19 Jul 2006 22:14:22 -0400 + +compiz (0.0.13-0quinn19) dapper; urgency=low + + * scale corners fixed, upstream move to actions for corners + * fixed stretchy buttons bug + * added in patches to g-w-d for borders/corners + + -- Quinn Storm Wed, 19 Jul 2006 22:01:42 -0400 + +compiz (0.0.13-0quinn18) dapper; urgency=low + + * all gconf bugs and crashing gconf bugs hopefully squashed + + -- Quinn Storm Tue, 18 Jul 2006 05:26:31 -0400 + +compiz (0.0.13-0quinn17) dapper; urgency=low + + * new scale algorithm from upstream + * fixed a crash + + -- Quinn Storm Tue, 18 Jul 2006 00:02:21 -0400 + +compiz (0.0.13-0quinn16) dapper; urgency=low + + * any regular button size is now supported (instead of stretching) + + -- Quinn Storm Sun, 16 Jul 2006 18:28:45 -0400 + +compiz (0.0.13-0quinn15) dapper; urgency=low + + * updated the build system slightly + * fixed themes-disabled theme inactive title bar colors + * added title-bar pixmap themes (expected support in gcompizthemer 0.11, for + now supported in gconf) + + -- Quinn Storm Sun, 16 Jul 2006 05:08:25 -0400 + +compiz (0.0.13-0quinn14) dapper; urgency=low + + * some upstream fixes (sorry, no fixes for performance or keybinding yet) + * can now theme titlebars independantly of frames (see themer 0.10) + + -- Quinn Storm Fri, 14 Jul 2006 01:38:15 -0400 + +compiz (0.0.13-0quinn13) dapper; urgency=low + + * upstream changes are back (with fix for crash on load/unload plugin) + * schemas are now installed where they belong. + * WARNING - this update may cause trouble with key/button bindings + + -- Quinn Storm Wed, 12 Jul 2006 17:07:38 -0400 + +compiz (0.0.13-0quinn12) dapper; urgency=low + + * little bugfix to theming, inactive title buttons work properly now + + -- Quinn Storm Sat, 8 Jul 2006 22:15:39 -0400 + +compiz (0.0.13-0quinn11) dapper; urgency=low + + * lots of changes to enable more theming goodness (see gcompizthemer 0.7 as + well) + + -- Quinn Storm Sat, 8 Jul 2006 02:49:52 -0400 + +compiz (0.0.13-0quinn10) dapper; urgency=low + + * removed the upstream changes that were in quinn9 + + -- Quinn Storm Thu, 6 Jul 2006 20:50:58 -0400 + +compiz (0.0.13-0quinn9) dapper; urgency=low + + * upstream changes...a whoooole lot of them + * something's slightly wrong with the stretch-texture resize now...maybe + someone can look at it? it doesn't work smoothly anymore + * added auto-apply option + + -- Quinn Storm Tue, 4 Jul 2006 22:04:44 -0400 + +compiz (0.0.13-0quinn8) dapper; urgency=low + + * some patches to make it work better with theming, needed for new themer + app + + -- Quinn Storm Mon, 3 Jul 2006 20:10:33 -0400 + +compiz (0.0.13-0quinn7) dapper; urgency=low + + * added patch to configure 'window frame halo' color + * fully describe all decor options + * fixed skydome to 'remember' current rotation, re-enabled skydome anim + during unfolded cube + + -- Quinn Storm Sun, 2 Jul 2006 19:07:49 -0400 + +compiz (0.0.13-0quinn6) dapper; urgency=low + + * somewhat customizable decorations...settings in decoration plugin + + -- Quinn Storm Sat, 1 Jul 2006 07:34:26 -0400 + +compiz (0.0.13-0quinn5) dapper; urgency=low + + * added texture-stretching resize option, it works pretty well. + * options to turn off 'new' switcher behaviour + * fix to 'new' switcher behaviour, rotate-to now doesn't clobber stacking + * fix for raiseWindow binding + + -- Quinn Storm Mon, 26 Jun 2006 22:10:58 -0400 + +compiz (0.0.13-0quinn4) dapper; urgency=low + + * zoom dbus bindings + * little patch for wobbly and move bugs + * upstream changes, probably fixes docker border & others + * cube bottom caps fix + * wobbly xinerama snapping fix + * move-to-viewport fix! + * new 'organic' layout method (currently only for scale-current-screen, some + bugs with multihead) + * removed dock & miniwin from default build + * patch for switcher, can optionally remove window list window + + -- Quinn Storm Sun, 25 Jun 2006 02:47:07 -0400 + +compiz (0.0.13-0quinn3) dapper; urgency=low + + * more fixes to neg + * iXce's great zoom-before-rotate patch + * fix shade keyboard binding + * dbus patch to add rotateUp and rotateDown + * partly fixed cube caps (top fixed, bottom still needs work) + * fix wheelings min&max in rotate + * upstream updates + + -- Quinn Storm Wed, 14 Jun 2006 10:28:09 -0400 + +compiz (0.0.13-0quinn2) dapper; urgency=low + + * fix bottom images on cube + * upstream shading fixes + * l10n beginnings from upstream + * added a toggle for sync-during-resize (sync_window) + + -- Quinn Storm Fri, 9 Jun 2006 22:50:29 -0400 + +compiz (0.0.13-0quinn1) dapper; urgency=low + + * new dock (6b) + * rotate/cube patches + * bugfixes, updates from CVS, perhaps icons work on x86_64 now? + * added possible fix for invisible windows becoming visible with widget + * many fixes from cvs + * reverted aiglx patch for copySubBuffer + * fixed wheeling patch + * upstream version bump + * moppsy's neg plugin + * added current release of dbus stuff + * added change to version string, quinn compiz's will now end in -quinnX + * windowshade from CVS + + -- Quinn Storm Thu, 8 Jun 2006 00:09:13 -0400 + +compiz (0.0.11-0ubuntu2) dapper; urgency=high + + * added urgent fix to xinerama patch, no longer segfaults on non-xinerama + setups + + -- Quinn Storm Wed, 24 May 2006 05:30:04 -0400 + +compiz (0.0.11-0ubuntu1) dapper; urgency=low + + * wobbly patch to customize edge friction + * widget plugin, still highly alpha code + * yet another version of dock + * dock 0.16 + * scale patch for xinerama + * fixed CVS scale arrow keys to actually work + * TONS of bugfixes from CVS + * added xinerama-fixes patch from forums + + -- Quinn Storm Tue, 23 May 2006 07:37:43 -0400 + +compiz (0.0.10-0ubuntu14) dapper; urgency=low + + * fix bug with things like deskbar menu window reappearing in wrong place + * more wobbly fun from moppsy + * more cvs syncing + * un-patched a 'bugfix' from cvs that made things like the panel appear in + the wrong place + * patch to wobbly to allow snapping at head edges (iXce) + * added option to wobbly to reverse default behaviour (snapping on unless + you push the key) + * helped place out a bit, it was causing another bug with windows appearing + pushed out of viewport. + + -- Quinn Storm Sat, 13 May 2006 18:14:49 -0400 + +compiz (0.0.10-0ubuntu13) dapper; urgency=low + + * iXce's xinerama patches to compiz! + * fix for wobbly sliding bug + * resync with CVS, bunch of bugfixes + * wobbly now can shiver on focus once more + * made trailfocus and desaturate-dead-windows play nice together + * fixed another wobbly bug. + * transset plugin deprecated & removed + * state plugin now handles what it was used for + * state plugin can now put windows on a given viewport based on + any of its allowable criteria (now including wm_class) + + -- Quinn Storm Thu, 11 May 2006 22:59:43 -0400 + +compiz (0.0.10-0ubuntu12) dapper; urgency=low + + * added some preliminary trying at a WM_HINTS URGENT handler, using fade + * please play around with this and fix it up more! (and add other similar + things!) + * also added center patch to place, to allow center on hotkey + * fix slight bug in switcher w/ show-desktop mode + + -- Quinn Storm Wed, 10 May 2006 05:24:16 -0400 + +compiz (0.0.10-0ubuntu11) dapper; urgency=low + + * wobbly patch to add bell_spring_k, bell_friction + * possible fix to minimize-slowdown, but probably not + * ICON_SIZE in switcher now configurable + * icon placement also configurable + * bugfix to wobbly to make it use (according to arturh) + grab_friction/springk + + -- Quinn Storm Tue, 9 May 2006 15:53:31 -0400 + +compiz (0.0.10-0ubuntu10) dapper; urgency=low + + * added switcher all-desktops option + * added prerm script to wipe compiz schemas from gconf + * (for those upgrading to this version, you may want to + apt-get --reinstall install compiz-gnome) + * really just a bugfix release for the switcher thing and to add the + unschema-ing + + -- Quinn Storm Mon, 8 May 2006 22:20:40 -0400 + +compiz (0.0.10-0ubuntu9) dapper; urgency=low + + * visual bell effects from CVS + * switcher icons improvement from CVS + * fix for water coming on for no apparent reason (from CVS) + + -- Quinn Storm Sun, 7 May 2006 22:27:07 -0400 + +compiz (0.0.10-0ubuntu8) dapper; urgency=low + + * resync with CVS + * add latest aiglx patches + * colored dropshadows + * bugfix in scale + * internal - decided to keep writing to this changelog from now on whenever + an incremental change between released versions happens + * updated dock plugin + + -- Quinn Storm Thu, 4 May 2006 22:26:25 -0400 + +compiz (0.0.10-0ubuntu7) dapper; urgency=low + + * sync with CVS + * note that this requires latest xgl, mesa, and if compiling, glproto + * probably some bugfixes + + -- Quinn Storm Wed, 3 May 2006 19:17:18 -0400 + +compiz (0.0.10-0ubuntu6) dapper; urgency=low + + * ugh, jutst now saw a bugfix in CVS for window stacking + * should be in. + + -- Quinn Storm Mon, 1 May 2006 17:28:29 -0400 + +compiz (0.0.10-0ubuntu5) dapper; urgency=low + + * added dock plugin + * fixed dock & miniwin not to use tons of cpu + * fixed switcher show-minimized to really work right + + -- Quinn Storm Mon, 1 May 2006 17:03:52 -0400 + +compiz (0.0.10-0ubuntu4) dapper; urgency=low + + * update to latest CVS + * wow, wonderful effects + + -- Quinn Storm Sun, 30 Apr 2006 14:00:29 -0400 + +compiz (0.0.10-0ubuntu3) dapper; urgency=low + + * fixed resize.c, boy do I feel like an idiot. + + -- Quinn Storm Sat, 29 Apr 2006 16:27:05 -0400 + +compiz (0.0.10-0ubuntu2) dapper; urgency=low + + * some bugfixes from CVS + * state plugin + * bs plugin + * individual spring_k/friction settings for wobbly + + -- Quinn Storm Sat, 29 Apr 2006 15:30:46 -0400 + +compiz (0.0.10-0ubuntu1) dapper; urgency=low + + * version bump from CVS + * many additions and fixes to scale from artur + * other plugins have gotten some polish + * switcher+fade bug is now pretty much history. + + -- Quinn Storm Thu, 27 Apr 2006 22:40:34 -0400 + +compiz (0.0.9-0ubuntu4) dapper; urgency=low + + * resync with latest CVS + * artur's great cube additions + * configurable shadows from CVS + + -- Quinn Storm Mon, 24 Apr 2006 13:30:05 -0400 + +compiz (0.0.9-0ubuntu3) dapper; urgency=low + + * resync with latest CVS + * bugfixes. mostly bugfixes. + + -- Quinn Storm Wed, 19 Apr 2006 01:59:25 -0400 + +compiz (0.0.9-0ubuntu2) dapper; urgency=low + + * many un-patches + * lots of bugfixes + * this version SHOULD install schemas properly. + * THIS VERSION REQUIRES NEW PATCHED MESA! + + -- Quinn Storm Wed, 12 Apr 2006 17:01:41 -0400 + +compiz (0.0.9-0ubuntu1) dapper; urgency=low + + * version bump from CVS + * added CVS updates to tons of files + * reverted move.c edgeflip patch as rotate now contains a better + implementation of same + * patched scale.c to also have corner for only-current + + -- Quinn Storm Fri, 7 Apr 2006 16:56:10 -0400 + +compiz (0.0.8-0ubuntu1) dapper; urgency=low + + * version bump from CVS + * fixed minimize animation glitch + * added CVS fixes to water.c + + -- Quinn Storm Mon, 3 Apr 2006 21:11:11 -0400 + +compiz (0.0.7-0ubuntu14) dapper; urgency=low + + * bugfixes here and there + * sync with latest cvs + * added miniwin, currently at ddave's version 0.0.11. + * things look pretty good right now + + -- Quinn Storm Mon, 3 Apr 2006 01:12:53 -0400 + +compiz (0.0.7-0ubuntu13) dapper; urgency=low + + * sync with cvs + * minimized windows instead of having window textures are painted as their + icons (in switcher) + * all windows in switcher now have icons painted + * probably more things I've forgotten, the code has been a few days now. + + -- Quinn Storm Thu, 30 Mar 2006 13:49:56 -0500 + +compiz (0.0.7-0ubuntu12) dapper; urgency=low + + * updated to latest cvs + * bunch of bugfixes + * including bugfixes from patch to show-desktop + * new plugin "water" from cvs. (not sure what it does, doesn't do anything + here) + + -- Quinn Storm Wed, 29 Mar 2006 08:14:55 -0500 + +compiz (0.0.7-0ubuntu11) dapper; urgency=low + + * patches found on web by forum people have been incorporated + * these provide proper show desktop support in gnome + * they also provide show-minimized-windows-in-switcher + * they also provide a "fix" for the texture-size "bug", though it may be + more problematic than its worth, it'll need testing + * they also provide the beginnings of a theme architecture, though its very + basic now, just two options, normal and "plain" (I'm actually using "plain") + + -- Quinn Storm Mon, 27 Mar 2006 08:23:08 -0500 + +compiz (0.0.7-0ubuntu10) dapper; urgency=low + + * less major release, removed opaquefocus (unneeded with trailfocus really) + * modified trailfocus to #1 not change translucency on windows that have it + externally set, and #2 have an exclusion list by WM_CLASS + * added a toggle to cube to turn off drawing the "caps" (to see skydome on + 'in' mode) + * added a toggle to rotate to invert the X axis + + -- Quinn Storm Mon, 27 Mar 2006 04:19:47 -0500 + +compiz (0.0.7-0ubuntu9) dapper; urgency=medium + + * fixed bug in opaquefocus that was causing ghost windows + * modified opaquefocus and move translucency to not change transparency on + windows that have it set externally. + * added in the new move code. + + -- Quinn Storm Sun, 26 Mar 2006 09:39:39 -0500 + +compiz (0.0.7-0ubuntu8) dapper; urgency=low + + * reverted desktop behaviour, should play nicer with pagers, sorry wallpaper + lovers. + * added trailfocus + * added toggle to make windows disappear/appear from center instead of mouse + * made opaquefocus not hate flash/etc. + * added option to scale to use WM_CLASS instead of WM_CLIENT_LEADER + + -- Quinn Storm Sun, 26 Mar 2006 02:15:15 -0500 + +compiz (0.0.7-0ubuntu7) dapper; urgency=low + + * preliminary version of the edgeflip code, added some code to set + _NET_CURRENT_DESKTOP on flip so that per-desktop background changers wor + right, and also fixed the bug that was causing crash-on-load. + + -- Quinn Storm Sat, 25 Mar 2006 07:25:03 -0500 + +compiz (0.0.7-0ubuntu6) dapper; urgency=high + + * damnit, let a segfault slip through! + + -- Quinn Storm Fri, 24 Mar 2006 12:39:21 -0500 + +compiz (0.0.7-0ubuntu5) dapper; urgency=low + + * added only-current-app exposé feature (default key F11) + + -- Quinn Storm Fri, 24 Mar 2006 11:38:40 -0500 + +compiz (0.0.7-0ubuntu4) dapper; urgency=low + + * fixed up opaquefocus and move to restore/use the _NET_WM_WINDOW_OPACITY + transparency if there + * added a "reset transparency" option to the right-click menu in g-w-d to + clear the _NET_WM_WINDOW_OPACITY + * altered the "fake icon" size in minimize so that tooltips/menus zoom + in/out more appropriately. + + -- Quinn Storm Wed, 22 Mar 2006 22:00:51 -0500 + +compiz (0.0.7-0ubuntu3) dapper; urgency=low + + * enhanced minimize plugin to handle destroyed windows properly, causing the + effect to work even when fade isn't in the plugin list. + + -- Quinn Storm Wed, 22 Mar 2006 18:06:19 -0500 + +compiz (0.0.7-0ubuntu2) dapper; urgency=low + + * latest bugfixes and enhancements from cvs + * added new versions of opaquefocus, move, transset (NEW), minimize, + gnome-window-decorator (now supports many more window actions), and I hope + I'm not forgetting anything. + * realized the 0.0.7 should be the current version number. + + -- Quinn Storm Wed, 22 Mar 2006 06:57:42 -0500 + --- compiz-0.0.13.38.orig/debian/compat +++ compiz-0.0.13.38/debian/compat @@ -0,0 +1 @@ +4 --- compiz-0.0.13.38.orig/debian/compiz-core.install +++ compiz-0.0.13.38/debian/compiz-core.install @@ -0,0 +1,6 @@ +debian/tmp/usr/bin/compiz* +debian/tmp/usr/include/compiz/*.h +debian/tmp/usr/lib/pkgconfig/compiz* +debian/tmp/usr/share/compiz/* +debian/tmp/usr/share/man/man1/compiz.1 +debian/tmp/usr/share/man/man1/compiz.real.1 --- compiz-0.0.13.38.orig/debian/compiz-gnome.install +++ compiz-0.0.13.38/debian/compiz-gnome.install @@ -0,0 +1,4 @@ +debian/tmp/usr/bin/gnome-window-decorator +debian/tmp/usr/share/gnome/wm-properties/* +debian/tmp/usr/lib/window-manager-settings/*.so +debian/tmp/usr/share/man/man1/gnome-window-decorator.1 --- compiz-0.0.13.38.orig/debian/copyright +++ compiz-0.0.13.38/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Matthew Garrett on +Mon, 13 Feb 2006 00:35:45 +0000. + +It was downloaded from cvs.freedesktop.org/app/compiz + +Copyright Holder: David Reveman + +License: + +This software is available under the terms of the GNU General Public License +version 2 or later. On Debian systems, the complete text of the GNU General +Public License can be found in the file '/usr/share/common-licenses/GPL' + +Alternatively, this software is available under the terms of the MIT/X11 +License: + +Copyright © 2005 Novell, Inc. + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without +fee, provided that the above copyright notice appear in all copies +and that both that copyright notice and this permission notice +appear in supporting documentation, and that the name of +Novell, Inc. not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Novell, Inc. makes no representations about the suitability of this +software for any purpose. It is provided "as is" without express or +implied warranty. + +NOVELL, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN +NO EVENT SHALL NOVELL, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT OR +CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, +NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.% --- compiz-0.0.13.38.orig/debian/.cvsignore +++ compiz-0.0.13.38/debian/.cvsignore @@ -0,0 +1,4 @@ +tmp +compiz +compiz-kde +compiz-gnome