summaryrefslogtreecommitdiff
path: root/README.in
Commit message (Collapse)AuthorAgeFilesLines
* Release Clutter 1.23.41.23.4Emmanuele Bassi2015-07-221-0/+22
|
* docs: Update all the links in the READMEEmmanuele Bassi2015-07-101-11/+9
| | | | We've been shipping with outdated links for a long while.
* Drop the UProf dependencyEmmanuele Bassi2015-03-031-12/+0
| | | | | | | | | | | | | Nobody has been compiling Clutter with profiling enabled in a long time. UProf itself hasn't been updated in 5 years, and it still depends on deprecated components like dbus-glib, with no port to GDBus in sight. The profiling code was moderately useful in the past, but these days it's probably better to profile Cogl than Clutter itself; timing information can be extracted by the timestamp on each diagnostic message that is now available by default in the CLUTTER_NOTE macro, and we can add ad hoc counters where needed.
* docs: Note that the GDK backend is the new defaultEmmanuele Bassi2015-03-031-0/+8
| | | | Update the release notes with this piece of information.
* docs: Mention ClutterRequestMode in the release notesEmmanuele Bassi2014-12-151-0/+7
|
* Release Clutter 1.19.6 (snapshot)1.19.6Emmanuele Bassi2014-07-241-0/+9
|
* evdev: Add a conditional define guard to expose APIRui Matos2014-02-271-0/+6
| | | | | | | | The evdev backend has always been excluded from Clutter's API stability guarantee though in an informal way. This commit makes it explicit by forcing users to define CLUTTER_ENABLE_COMPOSITOR_API. https://bugzilla.gnome.org/show_bug.cgi?id=725102
* evdev: Port evdev input backend to libinputJonas Ådahl2014-02-271-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of having its own evdev input device processing implementation, make clutter's evdev backend use libinput to do input device processing for it. Two GObject parameters of ClutterInputDeviceEvdev (sysfs-path and device-path) are removed as they are not used any more. Before ClutterDeviceManagerEvdev had one virtual core keyboard and one virtual core pointer device. These are now instead separated into seats, which all have one virtual core keyboard and pointer device respectively. The 'global' core keyboard and pointer device are the core keyboard and pointer device of the first seat that is created. A ClutterInputDeviceEvdev can, as before, both represent a real physical device or a virtual device, but is now instead created either via _clutter_input_device_evdev_new() for real devices, and _clutter_input_device_new_virtual() for virtual devices. XKB state and button state is moved to the seat structure and is thus separated per seat. Seats are not a concept exposed outside of clutter's evdev backend. Signed-off-by: Jonas Ådahl <jadahl@gmail.com> https://bugzilla.gnome.org/show_bug.cgi?id=720566
* Release Clutter 1.17.21.17.2Emmanuele Bassi2014-01-231-0/+19
|
* docs: Update the test-related documentationEmmanuele Bassi2014-01-201-2/+2
| | | | | The test suite layout and usage have been changed, so the documentation needs to be updated to reflect the change.
* device-manager-evdev: Stop using deprecated libevdev APIRui Matos2013-11-211-1/+1
| | | | | | | Fixes compiler warnings with libevdev >= 0.4 and makes use of a new function to set the clock id instead of doing the ioctl directly. https://bugzilla.gnome.org/show_bug.cgi?id=712816
* docs: Remove mentions of XFixes dependencyEmmanuele Bassi2013-11-211-1/+0
| | | | Clutter does not use nor depend on XFixes any more.
* evdev: switch to libevdev for fetching the eventsGiovanni Campagna2013-09-091-0/+5
| | | | | | | | libevdev is a library that wraps the evdev subsystem, with the ability to synchronize the state after a SYN_DROPPED event from the kernel. https://bugzilla.gnome.org/show_bug.cgi?id=706494
* docs: Mention implicit animations checks in the release notesEmmanuele Bassi2013-05-061-0/+10
| | | | Don't want anybody to be taken by surprise by this.
* x11: Ignore num lock / scroll lock for event stateJasper St. Pierre2013-01-141-0/+6
| | | | | | | | | | | | | | As x11 considers num lock and scroll lock to be modifiers, code that checks for an exact modifier combination will fail if naively done when num lock or scroll lock are turned on. Applications that want to ignore these modifiers will need to use XKB to manually mask out the modifier state. As it is very unlikely that applications will want to care about the state of num lock or scroll lock for key press/key release events, mask out the num lock and scroll lock keys automatically. https://bugzilla.gnome.org/show_bug.cgi?id=690664
* Release Clutter 1.11.81.11.8Emmanuele Bassi2012-07-161-0/+7
|
* Release Clutter 1.11.61.11.6Emmanuele Bassi2012-06-251-0/+6
|
* docs: Update the release notes for 1.12Emmanuele Bassi2012-06-111-1/+11
|
* Don't allocate size for invisible BinLayout childrenAlexander Larsson2012-06-051-0/+6
|
* docs: Update the configure switches in the READMEEmmanuele Bassi2012-05-031-3/+6
|
* docs: Mention that patches must pass the conformance testsEmmanuele Bassi2012-04-271-0/+9
| | | | | | People submitting patches should do a conformance test suite run, until we have a buildbot and a way of running the conformance tests on a headless setup.
* Update release notesEmmanuele Bassi2012-03-161-0/+6
|
* Update the release notesEmmanuele Bassi2012-03-051-0/+7
|
* docs: Update release notesEmmanuele Bassi2012-02-061-0/+11
|
* docs: Update the release notesEmmanuele Bassi2012-01-161-4/+7
|
* docs: Update the release notesEmmanuele Bassi2012-01-161-0/+11
|
* docs: Update the release notesEmmanuele Bassi2012-01-161-0/+9
|
* docs: Add the ::destroy change in the release notesEmmanuele Bassi2012-01-121-0/+6
| | | | | Given that I had to fix code inside Clutter that did not check for NULL pointers, I assume other people may experience the same issues.
* docs: Update the release notesEmmanuele Bassi2011-12-301-0/+7
|
* docs: Document the DeformEffect wrap-mode changeEmmanuele Bassi2011-11-161-0/+10
| | | | | | | | | The change from CoglVertexBuffer to CoglPrimitive led to a change of the default wrap-mode for the pipeline. Since using REPEAT can introduce artifacts when sampling outside the [ 0, 1 ] texture coordinates range, and since the default wrap mode was not documented anyway, we want to keep the change from REPEAT to CLAMP, but it's worth adding an entry in the release notes.
* Merge branch 'deprecate-default-stage'Emmanuele Bassi2011-11-141-0/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * deprecate-default-stage: evdev: do not associate device with stage evdev: don't even process events without a default stage docs: Note default stage deprecation in README docs: Remove clutter_stage_get_default() stage: Deprecate the default stage script: Do not use clutter_stage_get_default() cally/actor: Do not use the default stage as a fallback Try to mop up the default stage mess performance/*: Do not use clutter_stage_get_default() interactive/*: Do not use clutter_stage_get_default() Merge with a11y micro-bench/*: Do not use clutter_stage_get_default() accessibility/*: Do not use clutter_stage_get_default() conform/*: Do not use clutter_stage_get_default()
| * docs: Note default stage deprecation in READMEEmmanuele Bassi2011-11-101-0/+6
| | | | | | | | | | Mention the behaviour of Clutter when creating more than one stage on platforms that only support one stage instance.
* | build: Disable evdev input by defaultEmmanuele Bassi2011-11-101-2/+2
|/ | | | It's an experimental input backend, so it should be enabled explicitly.
* docs: Update the release notes in the READMEEmmanuele Bassi2011-11-101-10/+69
|
* docs: Update the README section on configure switchesEmmanuele Bassi2011-11-031-28/+23
|
* Release Clutter 1.7.6 (snapshot)1.7.6Emmanuele Bassi2011-07-261-0/+13
|
* Release Clutter 1.7.2 (snapshot)1.7.2Emmanuele Bassi2011-06-131-0/+27
|
* Remove last dependency on the GdkPixbuf APIRobert Bragg2011-05-061-4/+0
| | | | | | | | | | In test-pixmap.c instead of using the GdkPixbuf API to load the redhand.png image we now use the cairo API to load the png into a xlib surface which wraps our Pixmap. This test was the last thing that depended on the gdk API and since it's more concise to use Cairo here which is a hard dependency for Clutter this change means we avoid depending on GdkPixbuf directly.
* Removes Cogl from the repositoryRobert Bragg2011-05-061-34/+1
| | | | | | | Cogl has now been split out into a standalone project with a separate repository at git://git.gnome.org/cogl. From now on the Clutter build will now simply look for a cogl-1.0 pkg-config file to find a suitable Cogl library to link against at build time.
* Point to GNOME for filing bugsEmmanuele Bassi2011-04-121-4/+2
| | | | | The canonical bug tracker for Clutter has been moved to bugzilla.gnome.org.
* backend: remove untested fruity backendRobert Bragg2011-04-111-3/+0
| | | | | | | | | This backend hasn't been used for years now and so because it is untested code and almost certainly doesn't work any more it would be a burdon to continue trying to maintain it. Considering that we are now looking at moving OpenGL window system integration code down from Clutter backends into Cogl that will be easier if we don't have to consider this backend.
* docs: Mention the cookbook in the READMEEmmanuele Bassi2011-02-211-0/+4
| | | | In the "Resources" section, along with the API references.
* docs: Remove last mention of SDL from the READMEEmmanuele Bassi2011-02-211-2/+2
| | | | | We don't support SDL since forever, now. Just get rid of it, before it confuses somebody.
* build: Centralize X11 extensions versioningEmmanuele Bassi2011-02-191-2/+2
| | | | Similar to what we did for the base dependencies.
* docs: Update the READMEEmmanuele Bassi2011-02-151-10/+13
| | | | Fix some typos; add URLs for API references and Bugzilla.
* build: Generate READMEEmmanuele Bassi2011-02-141-0/+1058
| | | | | Use the configure script to generate the README from a template file, so that we can keep the versions of the dependencies in one place.
* 2007-06-22 Matthew Allum <mallum@openedhand.com>Matthew Allum2007-06-221-125/+0
| | | | | | | | * README: * README.in: * autogen.sh: * configure.ac: Move back to regular README naming at least for now.
* 2007-06-22 Matthew Allum <mallum@openedhand.com>Matthew Allum2007-06-221-19/+40
| | | | | | | | | | | | | | | | | * NEWS: * README.in: * TODO: Update for 0.3 release. * clutter/clutter-actor.c: Minor doc fixups * clutter/clutter-texture.c: Various minor additions for handling non RGBA data. Fix a typo breaking clutter_texture_get_pixbuf() on tiled textures. * tests/test-actors.c: Disable scaling to avoid drifting (temporary till API is fixed)
* Update README templateEmmanuele Bassi2007-06-211-7/+18
|
* 2007-06-19 Emmanuele Bassi <ebassi@openedhand.com>Emmanuele Bassi2007-06-191-1/+26
| | | | * README.in: Update release notes.