[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

wayland: Changes to 'refs/tags/wayland-1.2.1-1'



Tag 'wayland-1.2.1-1' created by Emilio Pozuelo Monfort <pochu@debian.org> at 2013-09-08 17:51 +0000

Tagging upload of wayland 1.2.1-1 to unstable.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.14 (GNU/Linux)

iEYEABECAAYFAlIsuQsACgkQhTV17EoIsv7z+ACgtIzbNnIq0VWds8NWolYKryBf
gwIAoLTdf0S6XznLVGI44N8gRhNVdg9l
=E2sR
-----END PGP SIGNATURE-----

Changes since wayland-1.1.0-2:
Alexander Larsson (4):
      protocol: Allow output changes to be treated atomically
      protocol: Support scaled outputs and surfaces
      protocol: Use signed int for scale values
      protocol: Modes are specified in HW pixels

Ander Conselvan de Oliveira (1):
      doc: Add a small contributing guide

Bryce W. Harrington (9):
      publican: Cleanup Preface's grammar.
      publican: Drop unneeded 'of'
      publican: Fix grammar several places in Protocol docs
      client: Improve spelling and grammar in comments
      protocol: Fix typo by removing a redundant 'a'
      protocol: Add missing d to 'x an y'
      protocol: Improve grammar for set class description
      protocol: Fix pluralization of user in popup_done description
      protocol: Improve a bit of grammar for wl_surface::attach description

Daiki Ueno (2):
      build: Install wayland-scanner.mk under $(pkgdatadir).
      build: Add wayland-scanner.pc.

Emilio Pozuelo Monfort (5):
      Merge tag '1.2.1' into upstream-unstable
      Merge branch 'upstream-unstable' into debian-unstable
      New upstream stable release
      Add myself to uploaders
      Release to unstable

Jason Ekstrand (16):
      Add a "side" field and some sanity checks to wl_map.
      Add support for flags in the wl_map API and add a WL_MAP_ENTRY_LEGACY flag
      Add accessor functions for wl_resource and deprecate wl_client_add_resource
      Change WL_ZOMBIE_OBJECT from 0x2 to an actual pointer
      Remove incorrect sanity-check from wl_map_insert_at
      Update tests for wl_map changes and add a map_flags test
      server: Add aditional wl_resource accessors
      Free non-legacy resources inside wl_resource_destroy
      Add a wl_resource_instance_of function
      Change SHM wl_buffer functions to use the wl_shm_buffer structure
      Change wl_shm_buffer to use a resource pointer
      Add version information to wl_message signatures.
      Add wl_resource_create() and a version field to wl_resource
      wayland-server: Verify request versions before invoking handler
      doc: Update the ID alocation section
      doc: Add a section on interface and protocol object versioning

Jiergir Ogoerg (1):
      client: Simply wl_display_dispatch_queue_pending() and fix return value

Kristian Høgsberg (23):
      configure.ac: Bump to 1.1.90 to open master for 1.2 work
      Remove input structs
      server: Drop struct wl_surface
      protocol: Move new name event below existing requests and events and version it
      server: Add wl_resource_get_id()
      client: Add wl_display_prepare_read() API to relax thread model assumptions
      server: Make wl_object and wl_resource opaque structs
      wayland-server: Dont free resource in user data destroy callback
      wayland-server: Mark wl_client_add/new_object as deprecated
      wayland-server: Remove error event posting from wl_resource_create
      wayland-server: Remove left-over double free in unbind_resource() helper
      wayland-server: Free non-legacy wl_resource structs during wl_client_destroy
      wayland-server: Add wl_global_create/destroy()
      wayland-server: Return 0 from read_events() in case of EAGAIN
      wayland-server: Don't close display fd in fatal error handler
      Replace two remaining wl_display_add_gloavl() occurences
      Bump version to 1.1.91
      scanner: Fail more gracefully on out-of-memory
      wayland-client: Handle potential NULL-deref
      Bump version to 1.2.0
      server: Handle OOM properly when we fail to allocate a send closure
      server: Set client->error when we fail to send a closure
      Bump version to 1.2.1

Mariusz Ceier (1):
      connection: Handle empty signature and signature with just a version.

Neil Roberts (1):
      wayland-client: Treat EOF when reading the wayland socket as an error

Peng Wu (1):
      protocol: Fix documentation typo

Peter Hutterer (5):
      protocol: revert hotspot_x/y in set_cursor back to int
      scanner: support help and --help
      scanner: expand help string
      scanner: check for wayland-scanner.pc before using variables
      publican: only split chapters and top-level sections onto separate pages

Rob Bradford (6):
      protocol: Make it clear that returned "one-shot" objects are destroyed
      build: Add declaration checks to check for required syscall flags
      protocol: Add a name event to give seat name
      build: Fix warning message on syscall failures
      protocol: Add missing since attribute for name event on wl_seat
      protocol: add no_keymap format to keymap formats

Sven Joachim (5):
      Merge branch 'upstream-unstable' into debian-unstable
      New upstream release
      Update libwayland-dev.install
      Update symbols files
      Also bump shlibs

---
 Makefile.am                           |    4 
 configure.ac                          |   18 
 debian/changelog                      |   14 
 debian/control                        |    4 
 debian/libwayland-client0.symbols     |    5 
 debian/libwayland-dev.install         |    3 
 debian/libwayland-server0.symbols     |   43 -
 debian/rules                          |    4 
 doc/Contributing                      |   83 +++
 doc/Makefile.am                       |    2 
 doc/publican/publican.cfg             |    1 
 doc/publican/sources/Foreword.xml     |   13 
 doc/publican/sources/Introduction.xml |    2 
 doc/publican/sources/Protocol.xml     |   87 +++
 protocol/wayland.xml                  |  179 ++++++-
 src/Makefile.am                       |    5 
 src/connection.c                      |   66 ++
 src/data-device.c                     |  539 ----------------------
 src/event-loop.c                      |    2 
 src/scanner.c                         |   98 ++--
 src/wayland-client.c                  |  352 +++++++++++---
 src/wayland-client.h                  |    6 
 src/wayland-private.h                 |   36 +
 src/wayland-scanner-uninstalled.pc.in |    6 
 src/wayland-scanner.pc.in             |    9 
 src/wayland-server.c                  |  833 +++++++++++-----------------------
 src/wayland-server.h                  |  362 +++-----------
 src/wayland-shm.c                     |  133 ++---
 src/wayland-util.c                    |   60 ++
 src/wayland-util.h                    |   13 
 tests/client-test.c                   |    2 
 tests/connection-test.c               |    4 
 tests/display-test.c                  |    2 
 tests/event-loop-test.c               |    3 
 tests/map-test.c                      |   54 +-
 tests/os-wrappers-test.c              |    2 
 tests/queue-test.c                    |    5 
 wayland-scanner.m4                    |   13 
 wayland-scanner.m4.in                 |   16 
 39 files changed, 1395 insertions(+), 1688 deletions(-)
---


Reply to: