Merge lp:unity-system-compositor/0.2 into lp:unity-system-compositor/ubuntu

Proposed by Alexandros Frantzis
Status: Merged
Approved by: Alexandros Frantzis
Approved revision: 258
Merged at revision: 223
Proposed branch: lp:unity-system-compositor/0.2
Merge into: lp:unity-system-compositor/ubuntu
Diff against target: 77 lines (+16/-9)
4 files modified
CMakeLists.txt (+2/-2)
debian/changelog (+7/-0)
debian/control (+2/-2)
tests/unit-tests/test_screen_event_handler.cpp (+5/-5)
To merge this branch: bzr merge lp:unity-system-compositor/0.2
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Unity System Compositor Development Team Pending
Review via email: mp+273798@code.launchpad.net

Commit message

Release 0.2.0

Description of the change

Release 0.2.0

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
lp:unity-system-compositor/0.2 updated
258. By Alexandros Frantzis

Sync with lp:unity-system-compositor/ubuntu

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2015-09-30 11:53:54 +0000
3+++ CMakeLists.txt 2015-10-08 09:54:17 +0000
4@@ -16,8 +16,8 @@
5
6 project(UnitySystemCompositor)
7 set(USC_VERSION_MAJOR 0)
8-set(USC_VERSION_MINOR 1)
9-set(USC_VERSION_PATCH 4)
10+set(USC_VERSION_MINOR 2)
11+set(USC_VERSION_PATCH 0)
12 set(USC_VERSION "${USC_VERSION_MAJOR}.${USC_VERSION_MINOR}.${USC_VERSION_PATCH}")
13
14 cmake_minimum_required(VERSION 2.8)
15
16=== modified file 'debian/changelog'
17--- debian/changelog 2015-09-30 12:29:53 +0000
18+++ debian/changelog 2015-10-08 09:54:17 +0000
19@@ -1,3 +1,10 @@
20+unity-system-compositor (0.2.0+15.10.20151007-0ubuntu1) UNRELEASED; urgency=medium
21+
22+ * Use new versions of mir::event::make_event() overloads.
23+ * Rebuild for Mir 0.17.
24+
25+ -- Alexandros Frantzis <alexandros.frantzis@canonical.com> Wed, 07 Oct 2015 17:04:19 +0300
26+
27 unity-system-compositor (0.1.4+15.10.20150930.1-0ubuntu1) wily; urgency=medium
28
29 [ Alexandros Frantzis ]
30
31=== modified file 'debian/control'
32--- debian/control 2015-07-27 10:29:16 +0000
33+++ debian/control 2015-10-08 09:54:17 +0000
34@@ -13,8 +13,8 @@
35 libdbus-1-dev,
36 libglib2.0-dev,
37 libgles2-mesa-dev,
38- libmirclient-dev (>= 0.13.0),
39- libmirserver-dev (>= 0.13.0),
40+ libmirclient-dev (>= 0.16.0),
41+ libmirserver-dev (>= 0.16.0),
42 libprotobuf-dev,
43 pkg-config,
44 python:any (>= 2.7),
45
46=== modified file 'tests/unit-tests/test_screen_event_handler.cpp'
47--- tests/unit-tests/test_screen_event_handler.cpp 2015-09-22 16:07:03 +0000
48+++ tests/unit-tests/test_screen_event_handler.cpp 2015-10-08 09:54:17 +0000
49@@ -77,23 +77,23 @@
50 static const int32_t POWER_KEY_CODE = 26;
51 mir::EventUPtr power_key_down_event = mir::events::make_event(
52 MirInputDeviceId{1}, std::chrono::nanoseconds(0),
53- mir_keyboard_action_down,
54+ 0, mir_keyboard_action_down,
55 POWER_KEY_CODE, 0, mir_input_event_modifier_none);
56
57 mir::EventUPtr power_key_up_event = mir::events::make_event(
58 MirInputDeviceId{1}, std::chrono::nanoseconds(0),
59- mir_keyboard_action_up,
60+ 0, mir_keyboard_action_up,
61 POWER_KEY_CODE, 0, mir_input_event_modifier_none);
62
63 mir::EventUPtr touch_event = mir::events::make_event(
64 MirInputDeviceId{1}, std::chrono::nanoseconds(0),
65- mir_input_event_modifier_none);
66+ 0, mir_input_event_modifier_none);
67
68 mir::EventUPtr pointer_event = mir::events::make_event(
69 MirInputDeviceId{1}, std::chrono::nanoseconds(0),
70- mir_input_event_modifier_none,
71+ 0, mir_input_event_modifier_none,
72 mir_pointer_action_motion,
73- {}, 0.0f, 0.0f, 0.0f, 0.0f);
74+ {}, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f);
75
76 AdvanceableTimer timer;
77 std::chrono::milliseconds const power_key_ignore_timeout{5000};

Subscribers

People subscribed via source and target branches