gnome-shell branch master, updated. 1fe32e30f5b0e6acc06fbdefba21a8f295fa3459
- From: otaylor src gnome org
- To: svn-commits-list gnome org
- Subject: gnome-shell branch master, updated. 1fe32e30f5b0e6acc06fbdefba21a8f295fa3459
- Date: Mon, 23 Feb 2009 14:56:53 -0500 (EST)
The branch, master has been updated
via 1fe32e30f5b0e6acc06fbdefba21a8f295fa3459 (commit)
via 0f7abf96a76c3072433f635ea465aeaae1b782b4 (commit)
via 6719c00f8a6a06755d919ac80a8f03540c642a31 (commit)
via f90523288d1f4abf40664e851bf595bb42b7ca8a (commit)
via 902c29aa0c4694bc5713ad3be17e61beb9868e09 (commit)
via d61401429e186dd8706f36f9fc05e13cffda7dcd (commit)
from 333fa611daf80ad1ebea0074cf1c59333a1ef971 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1fe32e30f5b0e6acc06fbdefba21a8f295fa3459
Author: Owen W. Taylor <otaylor redhat com>
Date: Mon Feb 23 14:43:57 2009 -0500
Improve font appearance
- Force off text mipmapping - it isn't useful to us and causes
problems with old (pre-GEM) Intel drivers.
- Set Pango font options explicitly to enable font hinting.
commit 0f7abf96a76c3072433f635ea465aeaae1b782b4
Author: Owen W. Taylor <otaylor redhat com>
Date: Mon Feb 23 14:42:00 2009 -0500
Port to Clutter-0.9
tools/build/gnome-shell.modules: Point at master branch of Clutter (0.9)
and make gobject-introspection a dep of Clutter.
configure.ac src/Makefile.am: Use Clutter-0.9
js/ui/button.js js/ui/genericDisplay.js js/ui/overlay.js js/ui/panel.js
js/ui/runDialog.js js/ui/workspaces.js src/shell-status-menu.c:
Use ClutterText instead of ClutterLabel and ClutterEntry
js/ui/workspaces.js js/ui/genericDisplay.js: Use ClutterClone instead
of ClutterCloneTexture
src/shell-global.[ch]: Add Shell.get_event_key_symbol() to workaround
unaccessibility of clutter_key_event_symbol() to use.
js/runDialog.js js/overlay.js: Use Shell.get_event_key_symbol() as
appropriate.
commit 6719c00f8a6a06755d919ac80a8f03540c642a31
Author: Owen W. Taylor <otaylor redhat com>
Date: Thu Feb 19 14:43:13 2009 -0500
When centering, round to integer positions
Positioning actors at non-integer positions produces bad looking
text. Therefore, do centering as x + round((a-b)/2) rather than
x + (a-b)/2. (This does mean that centering will be less accurate
if an actor is scaled up by a lot, but it's pretty reasonable
to assume that scaling only occurs during an effect and static
displays are unscaled.)
commit f90523288d1f4abf40664e851bf595bb42b7ca8a
Author: Owen W. Taylor <otaylor redhat com>
Date: Thu Feb 19 14:33:41 2009 -0500
Port BigBox to Clutter-0.9
- include only <clutter/clutter.h>
- cogl_rectangle() takes x1/y1/x2/y2 instead of x/y/width/height
- cogl_color() renamed to cogl_set_source_color4ub()
- use explicit CoglMaterial in BigRectangle to combine a texture
and a color.
- Remove defensive calls to cogl_enable(0) - cogl_enable() no
longer exists (enable flags are part of the material)
- Use ClutterCairoTexture actor (from Clutter) rather than ClutterCairo
commit 902c29aa0c4694bc5713ad3be17e61beb9868e09
Author: Owen W. Taylor <otaylor redhat com>
Date: Thu Feb 19 13:44:43 2009 -0500
Change TidyGrid to just include clutter/clutter.h
Including individual headers no longer works with Clutter-0.9.
commit d61401429e186dd8706f36f9fc05e13cffda7dcd
Author: Owen W. Taylor <otaylor redhat com>
Date: Thu Feb 19 13:42:08 2009 -0500
Remove the parts of Tidy that we aren't using
Remove TidyButton/TidyFrame and the utility classes they use.
We aren't using them and this avoids porting them to Clutter-0.9.
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 4 +-
js/ui/button.js | 4 +-
js/ui/genericDisplay.js | 30 +-
js/ui/overlay.js | 62 ++--
js/ui/panel.js | 4 +-
js/ui/runDialog.js | 23 +-
js/ui/workspaces.js | 22 +-
src/Makefile-tidy.am | 13 -
src/Makefile.am | 11 +-
src/big/box.c | 47 +--
src/big/rectangle.c | 175 ++++++----
src/big/theme-image.c | 14 +-
src/gnome-shell-plugin.c | 25 ++
src/shell-global.c | 9 +
src/shell-global.h | 2 +
src/shell-status-menu.c | 19 +-
src/tidy/tidy-actor.c | 529 --------------------------
src/tidy/tidy-actor.h | 88 -----
src/tidy/tidy-button.c | 374 ------------------
src/tidy/tidy-button.h | 70 ----
src/tidy/tidy-debug.h | 4 -
src/tidy/tidy-frame.c | 515 -------------------------
src/tidy/tidy-frame.h | 64 ----
src/tidy/tidy-grid.c | 2 -
src/tidy/tidy-grid.h | 2 +-
src/tidy/tidy-private.h | 40 --
src/tidy/tidy-stylable.c | 789 ---------------------------------------
src/tidy/tidy-stylable.h | 69 ----
src/tidy/tidy-style.c | 653 --------------------------------
src/tidy/tidy-style.h | 85 -----
src/tidy/tidy-types.h | 25 --
src/tidy/tidy-util.c | 37 --
src/tidy/tidy-util.h | 9 -
tools/build/gnome-shell.modules | 16 +-
34 files changed, 266 insertions(+), 3569 deletions(-)
delete mode 100644 src/tidy/tidy-actor.c
delete mode 100644 src/tidy/tidy-actor.h
delete mode 100644 src/tidy/tidy-button.c
delete mode 100644 src/tidy/tidy-button.h
delete mode 100644 src/tidy/tidy-debug.h
delete mode 100644 src/tidy/tidy-frame.c
delete mode 100644 src/tidy/tidy-frame.h
delete mode 100644 src/tidy/tidy-private.h
delete mode 100644 src/tidy/tidy-stylable.c
delete mode 100644 src/tidy/tidy-stylable.h
delete mode 100644 src/tidy/tidy-style.c
delete mode 100644 src/tidy/tidy-style.h
delete mode 100644 src/tidy/tidy-types.h
delete mode 100644 src/tidy/tidy-util.c
delete mode 100644 src/tidy/tidy-util.h
hooks/post-receive
--
Next generation GNOME desktop shell
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]